diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-10-31 17:31:20 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-10-31 17:31:20 -0700 |
commit | db878524df6a123e7e96d4c153f2b7f125741422 (patch) | |
tree | 653eb5749560c62820ec028069961b982474980a /emcc_to_polyfill.sh | |
parent | 3e618d9570b278ca9e94663240cf33d4f3cb22a9 (diff) | |
download | binaryen-db878524df6a123e7e96d4c153f2b7f125741422.tar.gz binaryen-db878524df6a123e7e96d4c153f2b7f125741422.tar.bz2 binaryen-db878524df6a123e7e96d4c153f2b7f125741422.zip |
polyfill fixes: more memory by default, and a type correction
Diffstat (limited to 'emcc_to_polyfill.sh')
-rwxr-xr-x | emcc_to_polyfill.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emcc_to_polyfill.sh b/emcc_to_polyfill.sh index 5b4442821..7fa54f84b 100755 --- a/emcc_to_polyfill.sh +++ b/emcc_to_polyfill.sh @@ -1,7 +1,7 @@ #!/bin/sh echo "calling emcc" -emcc $1 -o a.html --separate-asm -O2 -profiling +emcc $1 -o a.html --separate-asm -O2 -profiling -s DEMANGLE_SUPPORT=1 -s TOTAL_MEMORY=67108864 # we now have a.asm.js and a.js |