diff options
author | José Fonseca <[email protected]> | 2011-09-06 13:13:32 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2011-09-06 13:18:58 +0100 |
commit | 0646246cae023333220aebddd142670858f70e5a (patch) | |
tree | 34e6964d333a3c24fd4e490a4ae8b55427e77b4a /scons/crossmingw.py | |
parent | 1d52ddc3bba276451fdd690a5e9f430505278062 (diff) |
scons: Move MinGW flags from crossmingw.py to gallium.py
So that they are used by native MinGW compilers too.
Diffstat (limited to 'scons/crossmingw.py')
-rw-r--r-- | scons/crossmingw.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/scons/crossmingw.py b/scons/crossmingw.py index 949fc4fb1dc..893002f64a9 100644 --- a/scons/crossmingw.py +++ b/scons/crossmingw.py @@ -225,14 +225,6 @@ def generate(env): # default in recent gcc versions env.AppendUnique(CCFLAGS = ['-gstabs']) - env.AppendUnique(CPPDEFINES = [('__MSVCRT_VERSION__', '0x0700')]) - #env.AppendUnique(LIBS = ['iberty']) - env.AppendUnique(SHLINKFLAGS = ['-Wl,--enable-stdcall-fixup']) - #env.AppendUnique(SHLINKFLAGS = ['-Wl,--kill-at']) - - # Avoid depending on gcc runtime DLLs - env.AppendUnique(LINKFLAGS = ['-static-libgcc']) - env.AddMethod(compile_without_gstabs, 'compile_without_gstabs') def exists(env): |