From 222d7841e939d13bf29148c0cba5c7513050fa1e Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Thu, 7 May 2009 08:00:42 +0100 Subject: scons: mingw is broken with -O1 and higher --- scons/gallium.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'scons/gallium.py') diff --git a/scons/gallium.py b/scons/gallium.py index 696ddd025ff..c7e74d7e599 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']: -- cgit v1.2.3