diff options
Diffstat (limited to 'emcc_to_wasm.js.sh')
-rwxr-xr-x | emcc_to_wasm.js.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emcc_to_wasm.js.sh b/emcc_to_wasm.js.sh index 528871746..c4c3a4bf3 100755 --- a/emcc_to_wasm.js.sh +++ b/emcc_to_wasm.js.sh @@ -3,7 +3,7 @@ set -e echo "calling emcc" -emcc -o a.html --separate-asm -profiling -s TOTAL_MEMORY=67108864 -s GLOBAL_BASE=1024 $@ +emcc -o a.html --separate-asm -profiling -s TOTAL_MEMORY=67108864 -s GLOBAL_BASE=1024 -s ALIASING_FUNCTION_POINTERS=0 $@ # we now have a.asm.js and a.js |