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 /emcc | |
parent | 09a848a0771550c95df8b3566efdfde5e80803a9 (diff) |
turn fastcomp on by default, disabling can be done with EMCC_FAST_COMPILER=0 in the env
Diffstat (limited to 'emcc')
-rwxr-xr-x | emcc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1200,7 +1200,7 @@ try: logging.warning('disabling asm.js since embind is not ready for it yet') shared.Settings.ASM_JS = 0 - fastcomp = os.environ.get('EMCC_FAST_COMPILER') == '1' + fastcomp = os.environ.get('EMCC_FAST_COMPILER') != '0' if fastcomp: shared.Settings.ASM_JS = 1 if opt_level > 0 else 2 |