scons: Add an analyze option.
authorJosé Fonseca <jfonseca@vmware.com>
Mon, 14 Apr 2014 13:31:02 +0000 (14:31 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Wed, 16 Apr 2014 10:44:21 +0000 (11:44 +0100)
For Clang static code analyzer, the scan-build script will produce more
comprehensive output.  Nevertheless you can invoke it as

  CC=clang CXX=clang++ scons analyze=1

For MSVC this is the best way to use its static code analysis.  Simply
invoke as

  scons analyze=1

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

index 22c1725715764042e44a5f5534d4297e03507bda..d6e621545b1d87a50baadcd0c3986e96f5336aee 100644 (file)
--- a/common.py
+++ b/common.py
@@ -91,6 +91,7 @@ def AddOptions(opts):
        opts.Add(EnumOption('platform', 'target platform', host_platform,
                                                                                         allowed_values=('cygwin', 'darwin', 'freebsd', 'haiku', 'linux', 'sunos', 'windows')))
        opts.Add(BoolOption('embedded', 'embedded build', 'no'))
+       opts.Add(BoolOption('analyze', 'enable static code analysis where available', 'no'))
        opts.Add('toolchain', 'compiler toolchain', default_toolchain)
        opts.Add(BoolOption('gles', 'EXPERIMENTAL: enable OpenGL ES support', 'no'))
        opts.Add(BoolOption('llvm', 'use LLVM', default_llvm))
index 42e8f7c54767c77b82259833afc2d4a1ea738a85..e873c658ad0270f0fc9c0bc9789dd64bbd16a1f9 100755 (executable)
@@ -467,6 +467,18 @@ def generate(env):
             env.Append(CCFLAGS = ['/MT'])
             env.Append(SHCCFLAGS = ['/LD'])
     
+    # Static code analysis
+    if env['analyze']:
+        if env['msvc']:
+            # http://msdn.microsoft.com/en-us/library/ms173498.aspx
+            env.Append(CCFLAGS = [
+                '/analyze',
+                #'/analyze:log', '${TARGET.base}.xml',
+            ])
+        if env['clang']:
+            # scan-build will produce more comprehensive output
+            env.Append(CCFLAGS = ['--analyze'])
+
     # Assembler options
     if gcc_compat:
         if env['machine'] == 'x86':