diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-02-21 15:13:03 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-02-21 15:13:03 -0800 |
commit | 005950752c6e0c42e847b080f6d81a05e1bcb38c (patch) | |
tree | 56805f2f682e5b3932682a49603c39759a44e3ec /emcc | |
parent | 15f6d2d20bafaffe5eb559f42ff05fa296a10dcb (diff) |
RUNTIME_TYPE_INFO is not supported in fastcomp
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1219,6 +1219,7 @@ try: assert not bind, 'embind not supported in fastcomp yet' assert shared.Settings.MAX_SETJMPS == 20, 'changing MAX_SETJMPS is not supported in fastcomp yet' assert shared.Settings.INIT_HEAP == 0, 'HEAP_INIT is not supported in fastcomp (and should never be needed except for debugging)' + assert not shared.Settings.RUNTIME_TYPE_INFO, 'RUNTIME_TYPE_INFO is not supported in fastcomp' except Exception, e: logging.error('Compiler settings are incompatible with fastcomp. You can fall back to the older compiler core, although that is not recommended, see https://github.com/kripken/emscripten/wiki/LLVM-Backend') raise e |