diff options
author | Jose Fonseca <jfonseca@vmware.com> | 2015-03-18 14:18:28 +0000 |
---|---|---|
committer | Jose Fonseca <jfonseca@vmware.com> | 2015-03-18 21:51:40 +0000 |
commit | 1d30fd85dd2a240d4ccafc9a9eca55a129306cf5 (patch) | |
tree | 841ae940780baf6253ddbec6599381deb5b5f4c6 /scons | |
parent | bbac03ecca51fdbedf3c569c68322043c8e93fae (diff) |
scons: Silence MSVC warnings about overflows in constant arithmetic.
These get triggered even when using the standard C99 INFINITY/NAN
constants.
Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'scons')
-rwxr-xr-x | scons/gallium.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scons/gallium.py b/scons/gallium.py index 9d53848937..b4018e7604 100755 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -495,8 +495,10 @@ def generate(env): ccflags += [ '/W3', # warning level '/wd4018', # signed/unsigned mismatch + '/wd4056', # overflow in floating-point constant arithmetic '/wd4244', # conversion from 'type1' to 'type2', possible loss of data '/wd4305', # truncation from 'type1' to 'type2' + '/wd4756', # overflow in constant arithmetic '/wd4800', # forcing value to bool 'true' or 'false' (performance warning) '/wd4996', # disable deprecated POSIX name warnings ] |