summaryrefslogtreecommitdiff
path: root/emcc
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-01-27 17:52:02 -0800
committerAlon Zakai <alonzakai@gmail.com>2014-01-27 17:52:02 -0800
commitc1c1cb75334c109db21694adc6a85777c433b671 (patch)
tree3aca33d9163f06234470a2117e8f3eb7a05ae585 /emcc
parenteb7c2b26f500609683e412c828a9d9a1c5c61374 (diff)
fix some safeHeap errors with the new exceptions code; fixes #2068
Diffstat (limited to 'emcc')
-rwxr-xr-xemcc2
1 files changed, 1 insertions, 1 deletions
diff --git a/emcc b/emcc
index 6191d1f5..ece1e4c5 100755
--- a/emcc
+++ b/emcc
@@ -1222,7 +1222,7 @@ try:
assert not shared.Settings.PGO, 'cannot run PGO in ASM_JS mode'
if shared.Settings.SAFE_HEAP and not js_opts:
- logging.warning('asm.js+SAFE_HEAP requires js opts to be run (-O1 or above by default)')
+ logging.warning('asm.js+SAFE_HEAP requires js opts to be run to be fully effective (-O2 or above by default)')
if shared.Settings.ALLOW_MEMORY_GROWTH:
logging.error('Cannot enable ALLOW_MEMORY_GROWTH with asm.js, build with -s ASM_JS=0 if you need a growable heap');