WALI

(โ˜… 208)

A low-level virtualization interface for Linux-based systems using WebAssembly

  • .gitignore
  • .gitmodules
  • install-deps.sh
  • LICENSE
  • Makefile
  • quick_setup.sh
  • README.md
  • runtime.Dockerfile
  • todo.md
  • wali-musl
  • wasm-micro-runtime

# Installation Guide

1. Get the code
git clone https://github.com/Wasm-Thin-Kernel-Interfaces/WALI

Downloads the entire project code from GitHub to your computer.

cd WALI

Moves into the project folder you just downloaded.

2. Python

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Python 3 On Windows, be sure to check 'Add Python to PATH' during installation.
pip install .

Installs the package published on PyPI directly โ€” no need to clone the source.

python <์‹คํ–‰ํ•  ํŒŒ์ผ๋ช…>.py # README์—์„œ ์ •ํ™•ํ•œ ์‹คํ–‰ ํŒŒ์ผ๋ช…์„ ํ™•์ธํ•˜์„ธ์š”

Runs the Python script (or module).

โœ… If it runs without errors and prints output in the terminal, it worked.

3. Make

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make iwasm

Compiles the code based on the generated build configuration to produce an executable.

make compiler SLIM=1 # SLIM only includes a minimal set of llvm bins.

Compiles the code based on the generated build configuration to produce an executable.

make libc

Compiles the code based on the generated build configuration to produce an executable.

make wamrc

Compiles the code based on the generated build configuration to produce an executable.

make -j && python3 run_tests.py

Compiles the code based on the generated build configuration to produce an executable.

โœ… If it finishes without errors, it worked. Try running the generated executable directly.

Pulled directly from this repo's README.

// repository documentation