Module: Mesa Branch: master Commit: 49ae9b08d400fc99ef5e803bcd9a9adb600b252e URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=49ae9b08d400fc99ef5e803bcd9a9adb600b252e
Author: José Fonseca <[email protected]> Date: Fri Mar 15 15:23:54 2013 +0000 scons: Warn when using MSVS versions prior to 2012. Reviewed-by: Brian Paul <[email protected]> --- scons/gallium.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) 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 ] _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
