From 3b8bb7b449dae6c16df0fa45e6567ec3d6b05dcc Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Tue, 8 Feb 2011 10:26:17 +0000 Subject: scons: Restrict whole program optimization to release builds. It just takes forever, so it is inadequate for continuous testings (i.e., checked and profile build types). --- scons/gallium.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'scons') diff --git a/scons/gallium.py b/scons/gallium.py index df060f01a3..c4144273a5 100644 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -402,13 +402,19 @@ def generate(env): '/Od', # disable optimizations '/Oi', # enable intrinsic functions '/Oy-', # disable frame pointer omission - '/GL-', # disable whole program optimization ] else: ccflags += [ '/O2', # optimize for speed + ] + if env['build'] == 'release': + ccflags += [ '/GL', # enable whole program optimization ] + else: + ccflags += [ + '/GL-', # disable whole program optimization + ] ccflags += [ '/fp:fast', # fast floating point '/W3', # warning level @@ -498,7 +504,7 @@ def generate(env): else: env['_LIBFLAGS'] = '-Wl,--start-group ' + env['_LIBFLAGS'] + ' -Wl,--end-group' if msvc: - if env['build'] != 'debug': + if env['build'] == 'release': # enable Link-time Code Generation linkflags += ['/LTCG'] env.Append(ARFLAGS = ['/LTCG']) -- cgit v1.2.3