You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wasm3/test/wasi/simple/README.md

24 lines
389 B
Markdown

## Compile
```sh
wasicc -g -O0 -Wl,--stack-first test.c -o test.wasm
wasm-opt --strip-debug -Os test.wasm -o test-opt.wasm
```
## Run
```sh
5 years ago
../../build/wasm3 test.wasm
5 years ago
$ENGINES_PATH/wasm-micro-runtime/core/iwasm/products/linux/build/iwasm test.wasm
5 years ago
$ENGINES_PATH/wac/wax test.wasm
5 years ago
$ENGINES_PATH/WAVM/Release/bin/wavm run test.wasm
5 years ago
wasmer run test.wasm
5 years ago
wasmer-js run test.wasm
```