diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-28 16:19:03 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-28 16:19:03 -0800 |
commit | 80bda6efdf40c0fcf823b9708c9a6e29b25ae19d (patch) | |
tree | 39aa5b81d45b41c1f13201cfc362baf133794649 | |
parent | d98aa6d1562202ed00453ed71a4b8825abd34204 (diff) |
fix fastcomp detection; fixes #2072
-rwxr-xr-x | emscripten.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emscripten.py b/emscripten.py index 725f573f..ce929858 100755 --- a/emscripten.py +++ b/emscripten.py @@ -1204,7 +1204,7 @@ Runtime.stackRestore = function(top) { asm['stackRestore'](top) }; if DEBUG: logging.debug(' emscript: final python processing took %s seconds' % (time.time() - t)) -if os.environ.get('EMCC_FAST_COMPILER'): +if os.environ.get('EMCC_FAST_COMPILER') == '1': emscript = emscript_fast def main(args, compiler_engine, cache, jcache, relooper, temp_files, DEBUG, DEBUG_CACHE): |