diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-05-03 13:14:10 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-05-03 13:14:10 -0700 |
commit | c4dddc5ff1cf5939caa5d78850d6e155df92faa6 (patch) | |
tree | 153b632abaf16bca8fe2ebf7651b73964d31ecd6 /tools | |
parent | bf6825dc530260006484db56891358bf452d4eee (diff) |
use -fno-threadsafe-statics, issue #1128
Diffstat (limited to 'tools')
-rw-r--r-- | tools/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py index 8b0a26e7..6256ae67 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -506,7 +506,7 @@ except: COMPILER_OPTS = COMPILER_OPTS + ['-m32', '-U__i386__', '-U__i386', '-Ui386', '-U__SSE__', '-U__SSE_MATH__', '-U__SSE2__', '-U__SSE2_MATH__', '-U__MMX__', '-DEMSCRIPTEN', '-D__EMSCRIPTEN__', '-U__STRICT_ANSI__', - '-D__IEEE_LITTLE_ENDIAN', '-fno-math-errno', + '-D__IEEE_LITTLE_ENDIAN', '-fno-math-errno', '-fno-threadsafe-statics', '-target', LLVM_TARGET] USE_EMSDK = not os.environ.get('EMMAKEN_NO_SDK') |