diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-11-01 11:19:01 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-11-01 11:19:01 -0800 |
commit | 04fb140a62205772b1b2347e17a38e0edd958ab8 (patch) | |
tree | 0b62f379f33ebc5b53b4072ea35b63afd1b03e71 | |
parent | 34203ee327de86071c4f35f2a237f3ea671e312c (diff) | |
download | binaryen-04fb140a62205772b1b2347e17a38e0edd958ab8.tar.gz binaryen-04fb140a62205772b1b2347e17a38e0edd958ab8.tar.bz2 binaryen-04fb140a62205772b1b2347e17a38e0edd958ab8.zip |
do not optimize in emcc_to_polyfill by default
-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 fd2dd7791..ac01b1638 100755 --- a/emcc_to_polyfill.sh +++ b/emcc_to_polyfill.sh @@ -3,7 +3,7 @@ set -e echo "calling emcc" -emcc -o a.html --separate-asm -O3 -profiling -s DEMANGLE_SUPPORT=1 -s TOTAL_MEMORY=67108864 $@ +emcc -o a.html --separate-asm -profiling -s TOTAL_MEMORY=67108864 $@ # we now have a.asm.js and a.js |