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/platforms/emscripten/README.md

36 lines
732 B
Markdown

## Build using Emscripten
In root:
```sh
source /opt/emsdk/emsdk_env.sh --build=Release
mkdir -p build
cd build
cmake -GNinja -DEMSCRIPTEN=1 ..
ninja
```
**Note:**
3 years ago
To enable WebAssembly extensions:
```sh
3 years ago
cmake -GNinja -DEMSCRIPTEN=1 -DWASM_EXT=1 ..
```
You can convert the generated wasm to wat to see the effect:
```sh
3 years ago
wasm2wat --enable-tail-call --enable-bulk-memory wasm3.wasm > wasm3.wat
```
Running `tail-call` version will require Chrome with experimental flags:
```sh
emrun --no_browser --no_emrun_detect --port 8080 .
3 years ago
chrome --js-flags="--experimental-wasm-return-call --wasm-opt" --no-sandbox http://localhost:8080/wasm3.html
```
Or use Node.js:
```sh
node --experimental-wasm-return-call --wasm-opt ./wasm3.js
```