diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-07-06 16:18:47 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-07-06 16:18:47 -0700 |
commit | caf93e9b5602bb8bec0e3822df8a6f0210acc4f2 (patch) | |
tree | 2b9c2fba7ce6b029a3bd5c33c5981568276b3afe /tools/shared.py | |
parent | 0d84667ad3017ec951e7fbe4b47182709b9568b0 (diff) |
disable -fno-threadsafe-statics, issue #1289
Diffstat (limited to 'tools/shared.py')
-rw-r--r-- | tools/shared.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py index d35924c6..e2508fc4 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -504,7 +504,8 @@ 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', '-fno-threadsafe-statics', + '-D__IEEE_LITTLE_ENDIAN', '-fno-math-errno', + #'-fno-threadsafe-statics', # disabled due to issue 1289 '-target', LLVM_TARGET] if LLVM_TARGET == 'le32-unknown-nacl': |