Tells a source code analyzer to process include files and source files when issuing diagnostic messages.
Windows: Diagnostics > Analyze Include Files
Linux: Compilation Diagnostics > Analyze Include Files
Mac OS X: Diagnostics > Analyze Include Files
OFF |
The compiler issues certain diagnostic messages by default. If the static security analysis is enabled, include files are not analyzed by default. |
This option tells the static security analyzer to process include files and source files when issuing diagnostic messages. Normally, when static security analysis diagnostics are enabled, only source files are analyzed.
To use this option, you must also specify -diag-enable sc (Linux) or /Qdiag-enable:sc (Windows) to enable the static security analysis diagnostics.
Linux and Mac OS X: -diag-enable sv-include (this is a deprecated option)
Windows: /Qdiag-enable:sv-include (this is a deprecated option)
The following example shows how to cause include files to be analyzed as well as source files:
-diag-enable sc -diag-enable sc-include ! Linux systems
/Qdiag-enable:sc /Qdiag-enable:sc-include ! Windows systems
In the above example, the first compiler option enables static security analysis messages. The second compiler option causes include files referred to by the source file to be analyzed.
Copyright © 1996-2010, Intel Corporation. All rights reserved.