aboutsummaryrefslogtreecommitdiff
path: root/src/compiler.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-03-22 16:22:16 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-03-22 16:22:16 -0700
commita8e4801c7d38033fff760ea26a4579aa324e303e (patch)
tree01c8c9862f7a6e1b60569aa9be97fd2751be8709 /src/compiler.js
parent669c786e3554b280e31dcb7bd92931482547dae0 (diff)
parentf99012f271c056ddc171f6a4ec011ad31ad936cd (diff)
Merge branch 'incoming'
Diffstat (limited to 'src/compiler.js')
-rw-r--r--src/compiler.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler.js b/src/compiler.js
index bb72c7dd..7cf43f09 100644
--- a/src/compiler.js
+++ b/src/compiler.js
@@ -178,7 +178,7 @@ assert(!(USE_TYPED_ARRAYS === 2 && QUANTUM_SIZE !== 4), 'For USE_TYPED_ARRAYS ==
if (ASM_JS) {
assert(!ALLOW_MEMORY_GROWTH, 'Cannot grow asm.js heap');
assert((TOTAL_MEMORY&(TOTAL_MEMORY-1)) == 0, 'asm.js heap must be power of 2');
- assert(DISABLE_EXCEPTION_CATCHING == 1, 'asm.js does not support C++ exceptions yet');
+ assert(DISABLE_EXCEPTION_CATCHING == 1, 'asm.js does not support C++ exceptions yet, you must compile with -s DISABLE_EXCEPTION_CATCHING=1');
}
assert(!(!NAMED_GLOBALS && BUILD_AS_SHARED_LIB)); // shared libraries must have named globals