From: Jose Fonseca Date: Tue, 24 Mar 2015 19:50:48 +0000 (+0000) Subject: scons: Disable MSVC warnings about inconsistent function annotation. X-Git-Tag: upstream/17.1.0~19799 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28c54400af1ee04306342f67e56dc9e37933c538;p=platform%2Fupstream%2Fmesa.git scons: Disable MSVC warnings about inconsistent function annotation. Somehow, merely including any of the *intrin.h headers causes dozens of this warnings (when compiling pretty much every source file). MSVC does not always complain the same -- so it's possible we're doing something weird --, but silence these warnings in the meanwhile. Reviewed-by: Brian Paul --- diff --git a/scons/gallium.py b/scons/gallium.py index efc65e7..51b84d7 100755 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -549,6 +549,7 @@ def generate(env): env.Append(CCFLAGS = [ '/analyze', #'/analyze:log', '${TARGET.base}.xml', + '/wd28251', # Inconsistent annotation for function ]) if env['clang']: # scan-build will produce more comprehensive output