projects
/
profile
/
ivi
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fc20efe
)
scons: Use '-Werror=' option on GCC 4.2.x and greater.
author
Vinson Lee
<vlee@vmware.com>
Wed, 27 Jan 2010 06:56:58 +0000
(22:56 -0800)
committer
Vinson Lee
<vlee@vmware.com>
Wed, 27 Jan 2010 06:56:58 +0000
(22:56 -0800)
The existing code only checked for GCC 4.2.x and 4.3.x.
scons/gallium.py
patch
|
blob
|
history
diff --git
a/scons/gallium.py
b/scons/gallium.py
index
5aa0b7b
..
c88af96
100644
(file)
--- 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',
]