diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-27 17:52:02 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-27 17:52:02 -0800 |
commit | c1c1cb75334c109db21694adc6a85777c433b671 (patch) | |
tree | 3aca33d9163f06234470a2117e8f3eb7a05ae585 /emcc | |
parent | eb7c2b26f500609683e412c828a9d9a1c5c61374 (diff) |
fix some safeHeap errors with the new exceptions code; fixes #2068
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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'); |