diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-02-21 10:10:49 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-02-21 10:10:49 -0800 |
commit | 025dea98e497bc2c3e9167850c4ecae9a65785cf (patch) | |
tree | 9505cb685b74966d9378d151fff1b092cd6398b6 /emscripten.py | |
parent | 09a848a0771550c95df8b3566efdfde5e80803a9 (diff) |
turn fastcomp on by default, disabling can be done with EMCC_FAST_COMPILER=0 in the env
Diffstat (limited to 'emscripten.py')
-rwxr-xr-x | emscripten.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emscripten.py b/emscripten.py index 59a0666c..6b49a3cc 100755 --- a/emscripten.py +++ b/emscripten.py @@ -1257,7 +1257,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') == '1': +if os.environ.get('EMCC_FAST_COMPILER') != '0': emscript = emscript_fast def main(args, compiler_engine, cache, jcache, relooper, temp_files, DEBUG, DEBUG_CACHE): |