[Mesa-dev] [PATCH 7/8] scons: Disable MSVC warnings about inconsistent function annotation.

Jose Fonseca jfonseca at vmware.com
Tue Mar 24 14:16:43 PDT 2015


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.
---
 scons/gallium.py | 1 +
 1 file changed, 1 insertion(+)

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
-- 
2.1.0



More information about the mesa-dev mailing list