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