diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-04-17 17:53:04 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-04-17 17:53:04 +0700 |
commit | 0d1d8a114cc4e73438c04bf4070f30852b1a1961 (patch) | |
tree | 2bd0676a6bca10f14e4adc2a4c3aa611864135bb /tools | |
parent | 054ea0065886ebc8bff8132c5d81182f847bbb8e (diff) |
Remove unnecessary undefine of __CYGWIN__.
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 f59ac9c5..a53c0a7b 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -401,7 +401,7 @@ except: # Force a simple, standard target as much as possible: target 32-bit linux, and disable various flags that hint at other platforms COMPILER_OPTS = COMPILER_OPTS + ['-m32', '-U__i386__', '-U__i386', '-Ui386', '-U__SSE__', '-U__SSE_MATH__', '-U__SSE2__', '-U__SSE2_MATH__', '-U__MMX__', - '-DEMSCRIPTEN', '-U__STRICT_ANSI__', '-U__CYGWIN__', + '-DEMSCRIPTEN', '-U__STRICT_ANSI__', '-target', 'i386-pc-linux-gnu', '-D__IEEE_LITTLE_ENDIAN', '-fno-math-errno'] USE_EMSDK = not os.environ.get('EMMAKEN_NO_SDK') |