summaryrefslogtreecommitdiff
path: root/scons/gallium.py
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-06-02 18:41:12 -0700
committerJosé Fonseca <jfonseca@vmware.com>2009-06-02 18:41:12 -0700
commitfc7f92478286041a018ac4e72d2ccedeea7c0eca (patch)
tree0e558be0e1e9bfd88afda337b7ad51f4ef4425c2 /scons/gallium.py
parent0f50c4fab8acfe291ddd426f331eea5eec66ba13 (diff)
scons: Less aggressive optimizations for MSVC 64bit compiler.
MSVC 64bit compiler takes forever on some of the files. Might want to revisit this again later.
Diffstat (limited to 'scons/gallium.py')
-rw-r--r--scons/gallium.py21
1 files changed, 17 insertions, 4 deletions
diff --git a/scons/gallium.py b/scons/gallium.py
index 5e596360871..0d5843603e9 100644
--- a/scons/gallium.py
+++ b/scons/gallium.py
@@ -362,11 +362,24 @@ def generate(env):
'/GL-', # disable whole program optimization
]
else:
+ if env['machine'] == 'x86_64':
+ cflags += [
+ # Same as /O2, but without global optimizations or auto-inlining
+ # http://msdn.microsoft.com/en-us/library/8f8h5cxt.aspx
+ '/Ob1', # enable inline expansion, disable auto-inlining
+ '/Oi', # enable intrinsic functions
+ '/Ot', # favors fast code
+ '/Oy', # omit frame pointer
+ '/Gs', # enable stack probes
+ '/GF', # eliminate duplicate strings
+ '/Gy', # enable function-level linking
+ ]
+ else:
+ cflags += [
+ '/O2', # optimize for speed
+ ]
cflags += [
- '/Ox', # maximum optimizations
- '/Oi', # enable intrinsic functions
- '/Ot', # favor code speed
- #'/fp:fast', # fast floating point
+ #'/fp:fast', # fast floating point
]
if env['profile']:
cflags += [