Update instructions

extensions
Volodymyr Shymanskyy 5 years ago
parent bcabd6bf70
commit a1064a4b6a

@ -1,5 +1,7 @@
## Build using Emscripten ## Build using Emscripten
In root:
```sh ```sh
source /opt/emsdk/emsdk_env.sh --build=Release source /opt/emsdk/emsdk_env.sh --build=Release
mkdir -p build mkdir -p build
@ -8,15 +10,26 @@ cmake -GNinja -DEMSCRIPTEN=1 ..
ninja ninja
``` ```
**Note:** the build uses tail-call WebAssembly extension. **Note:**
To enable `tail-call` WebAssembly extension:
```sh
cmake -GNinja -DEMSCRIPTEN=1 -DWASM_TCO=1 ..
```
You can convert the generated wasm to wat: You can convert the generated wasm to wat to see the effect:
```sh ```sh
wasm2wat --enable-tail-call wasm3.wasm > wasm3.wat wasm2wat --enable-tail-call wasm3.wasm > wasm3.wat
``` ```
Running `tail-call` version will require Chrome with experimental flags:
```sh ```sh
emrun --no_browser --no_emrun_detect --port 8080 . emrun --no_browser --no_emrun_detect --port 8080 .
chromium-browser --js-flags="--experimental-wasm-return-call --wasm-opt --wasm-no-bounds-checks --wasm-no-stack-checks" http://localhost:8080/wasm3.html chrome --js-flags="--experimental-wasm-return-call --wasm-opt --wasm-no-bounds-checks --wasm-no-stack-checks" http://localhost:8080/wasm3.html
```
Or use Node.js:
```sh
node --experimental-wasm-return-call --wasm-opt ./wasm3.js
``` ```

Loading…
Cancel
Save