diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-03-11 10:07:48 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-03-11 10:07:48 -0700 |
commit | f69f770f7c9c9e1fff85b2ba0b89b512a5ab56ed (patch) | |
tree | 968133c89cc7d601033d07f7ee20bf683b71fecc | |
parent | 065c4cd1556d959d11a9d5ef50fdc92bbea05439 (diff) |
improve CHECK_HEAP_ALIGN message
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1187,7 +1187,7 @@ try: shared.Settings.ASM_JS = 1 if opt_level > 0 else 2 try: assert shared.Settings.UNALIGNED_MEMORY == 0, 'forced unaligned memory not supported in fastcomp' - assert shared.Settings.CHECK_HEAP_ALIGN == 0, 'check heap align not supported in fastcomp yet' + assert shared.Settings.CHECK_HEAP_ALIGN == 0, 'check heap align not supported in fastcomp - use SAFE_HEAP instead' assert shared.Settings.SAFE_DYNCALLS == 0, 'safe dyncalls not supported in fastcomp' assert shared.Settings.ASM_HEAP_LOG == 0, 'asm heap log not supported in fastcomp' assert shared.Settings.LABEL_DEBUG == 0, 'label debug not supported in fastcomp' |