scons: Adjust the warnings for VS.
authorJosé Fonseca <jfonseca@vmware.com>
Thu, 1 May 2014 14:40:43 +0000 (15:40 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Fri, 2 May 2014 21:04:46 +0000 (22:04 +0100)
Silence insignificant warnings so significant warnings have a chance to
stand out.

The only abundant warning that's not silenced here is "C4018:
signed/unsigned mismatch", as it could hide security issues, so it's better
to actually fix the code.

Reviewed-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
scons/gallium.py

index d13d0e67b83e2a92b7aefd512b988aedfd49e242..ca317b0cfdc2bf840355ee4e3dd7c0f119ff0a7a 100755 (executable)
@@ -455,7 +455,9 @@ def generate(env):
             ]
         ccflags += [
             '/W3', # warning level
-            #'/Wp64', # enable 64 bit porting warnings
+            '/wd4244', # conversion from 'type1' to 'type2', possible loss of data
+            '/wd4305', # truncation from 'type1' to 'type2'
+            '/wd4800', # forcing value to bool 'true' or 'false' (performance warning)
             '/wd4996', # disable deprecated POSIX name warnings
         ]
         if env['machine'] == 'x86':