mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
scons: check for existance of 'MSVC_VERSION' in env
Evidently, MSVC_VERSION isn't always defined so check for it before checking the MSVC version. Suggested by Jose.
This commit is contained in:
parent
10393038f8
commit
3804d67723
1 changed files with 1 additions and 1 deletions
|
|
@ -402,7 +402,7 @@ def generate(env):
|
|||
'/Oi', # enable intrinsic functions
|
||||
]
|
||||
else:
|
||||
if distutils.version.LooseVersion(env['MSVC_VERSION']) < distutils.version.LooseVersion('11.0'):
|
||||
if 'MSVC_VERSION' in env and 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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue