summaryrefslogtreecommitdiff
path: root/scons
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-01-26 22:56:58 -0800
committerVinson Lee <vlee@vmware.com>2010-01-26 22:56:58 -0800
commit7d29afb3a29642e6e13fb30948f7c87434057102 (patch)
treea403be2e2838796d048ac73fba2b2f25e0ec4dae /scons
parentfc20efe8e511bb9ec15c3d70e28b348ddaa4ad37 (diff)
scons: Use '-Werror=' option on GCC 4.2.x and greater.
The existing code only checked for GCC 4.2.x and 4.3.x.
Diffstat (limited to 'scons')
-rw-r--r--scons/gallium.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scons/gallium.py b/scons/gallium.py
index 5aa0b7bddd0..c88af96898b 100644
--- a/scons/gallium.py
+++ b/scons/gallium.py
@@ -30,6 +30,7 @@ Frontend-tool for Gallium3D architecture.
#
+import distutils.version
import os
import os.path
import re
@@ -276,7 +277,7 @@ def generate(env):
'-Wmissing-prototypes',
'-std=gnu99',
]
- if env['CCVERSION'].startswith('4.2.') or env['CCVERSION'].startswith('4.3.'):
+ if distutils.version.LooseVersion(env['CCVERSION']) >= distutils.version.LooseVersion('4.2'):
ccflags += [
'-Werror=pointer-arith',
]