summaryrefslogtreecommitdiff
path: root/scons
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-05-07 08:00:42 +0100
committerKeith Whitwell <keithw@vmware.com>2009-05-08 14:57:30 +0100
commit222d7841e939d13bf29148c0cba5c7513050fa1e (patch)
tree8f571e3d0b3b482b47bba604a43b447b6d42763f /scons
parentee7982718685cd2398a895caf5e7cd90b6ee12f9 (diff)
scons: mingw is broken with -O1 and higher
Diffstat (limited to 'scons')
-rw-r--r--scons/gallium.py2
-rw-r--r--scons/generic.py2
2 files changed, 4 insertions, 0 deletions
diff --git a/scons/gallium.py b/scons/gallium.py
index 696ddd025f..c7e74d7e59 100644
--- a/scons/gallium.py
+++ b/scons/gallium.py
@@ -317,6 +317,8 @@ def generate(env):
if gcc:
if debug:
cflags += ['-O0', '-g3']
+ elif env['toolchain'] == 'crossmingw':
+ cflags += ['-O0', '-g3'] # mingw 4.2.1 optimizer is broken
else:
cflags += ['-O3', '-g3']
if env['profile']:
diff --git a/scons/generic.py b/scons/generic.py
index 03563e4c62..29ddf76d6f 100644
--- a/scons/generic.py
+++ b/scons/generic.py
@@ -398,6 +398,8 @@ def generate(env):
if gcc:
if debug:
ccflags += ['-O0', '-g3']
+ elif env['toolchain'] == 'crossmingw':
+ ccflags += ['-O0', '-g3'] # mingw 4.2.1 optimizer is broken
else:
ccflags += ['-O3', '-g0']
if env['profile']: