[Mesa-dev] [PATCH] scons: Warn when using MSVS versions prior to 2012.
jfonseca at vmware.com
jfonseca at vmware.com
Fri Mar 15 08:24:22 PDT 2013
From: José Fonseca <jfonseca at vmware.com>
---
scons/gallium.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/scons/gallium.py b/scons/gallium.py
index 4d3de82..b28be5d 100755
--- a/scons/gallium.py
+++ b/scons/gallium.py
@@ -402,6 +402,8 @@ def generate(env):
'/Oi', # enable intrinsic functions
]
else:
+ if distutils.version.LooseVersion(env['MSVC_VERSION']) < distutils.version.LooseVersion('11.0'):
+ print 'scons: warning: Visual Studio versions prior to 2012 are known to produce incorrect code when optimizations are enabled ( https://bugs.freedesktop.org/show_bug.cgi?id=58718 )'
ccflags += [
'/O2', # optimize for speed
]
--
1.7.9.5
More information about the mesa-dev
mailing list