I've got a project built with SCons and I'm trying to use the Clang Static Analyzer to analyze the code. However, when running
scan-build scons
SCons seems to ignore the settings introduced by scan-build. How can I make this work?
|
I've got a project built with SCons and I'm trying to use the Clang Static Analyzer to analyze the code. However, when running
SCons seems to ignore the settings introduced by
| ||||
|
feedback
|
|
The way
SCons normally cleans out the environment before running a build (this is a feature). In order to make the above environment variables take effect, do something like this in
| |||
|
feedback
|