--append= |
This allows you to provide information about functions by providing an implementation for them. |
--check-config | Check cppcheck configuration. The normal code analysis is disabled by this flag. |
-D |
By default Cppcheck checks all configurations. Use -D to limit the checking to a particular configuration. Example: '-DDEBUG=1 -D__cplusplus'. |
-U |
By default Cppcheck checks all configurations. Use -U to explicitly hide certain #ifdef Example: '-UDEBUG' |
--enable= |
Enable additional checks. The available ids are: * all Enable all checks * style Enable all coding style checks. All messages with the severities 'style', 'performance' and 'portability' are enabled. * performance Enable performance messages * portability Enable portability messages * information Enable information messages * unusedFunction Check for unused functions * missingInclude Warn if there are missing includes. For detailed information, use '--check-config'. Several ids can be given if you separate them with commas. See also --std |
--error-exitcode= |
If errors are found, integer [n] is returned instead of the default '0'. '1' is returned if arguments are not valid or if no input files are provided. Note that your operating system can modify this value, e.g. '256' can become '0'. |
--errorlist | Print a list of all the error messages in XML format. |
--exitcode-suppressions= |
Used when certain messages should be displayed but should not cause a non-zero exitcode. |
--file-list= |
Specify the files to check in a text file. Add one filename per line. When file is '-,' the file list will be read from standard input. |
-f, --force | Force checking of all configurations in files. If used together with '--max-ifdefs=', the last option is the one that is effective. |
-h, --help | Print this help. |
-I |
Give path to search for include files. Give several -I parameters to give several paths. First given path is searched for contained header files first. If paths are relative to source files, this is not needed. |
--includes-file= |
Specify directory paths to search for included header files in a text file. Add one include path per line. First given path is searched for contained header files first. If paths are relative to source files, this is not needed. |
-i |
Give a source file or source file directory to exclude from the check. This applies only to source files so header files included by source files are not matched. Directory name is matched to all parts of the path. |
--inline-suppr | Enable inline suppressions. Use them by placing one or more comments, like: '// cppcheck-suppress warningId' on the lines before the warning to suppress. |
-j |
Start [jobs] threads to do the checking simultaneously. |
--max-configs= |
Maximum number of configurations to check in a file before skipping it. Default is '12'. If used together with '--force', the last option is the one that is effective. |
--platform= |
Specifies platform specific types and sizes. The available platforms are: * unix32 32 bit unix variant * unix64 64 bit unix variant * win32A 32 bit Windows ASCII character encoding * win32W 32 bit Windows UNICODE character encoding * win64 64 bit Windows |
-q, --quiet | Only print error messages. |
-rp, --relative-paths -rp= |
Use relative paths in output. When given, |
--report-progress | Report progress messages while checking a file. |
--rule= |
Match regular expression. |
--rule-file= |
Use given rule file. For more information, see: https://sourceforge.net/projects/cppcheck/files/Articles/ |
-s, --style | Deprecated, please use '--enable=style' instead |
--std= |
Enable some standard related checks. The available options are: * posix Checks related to POSIX-specific functionality * c99 C99 standard related checks * c++11 C++11 standard related checks Example to enable more than one checks: 'cppcheck --std=c99 --std=posix file.cpp' |
--suppress= |
Suppress warnings that match [error id]:[filename]:[line] The [filename] and [line] are optional. If [error id] is a wildcard '*', all error ids match. |
--suppressions-list= |
Suppress warnings listed in the file. Each suppression is in the same format as |
--template=' |
Format the error messages. E.g. '{file}:{line},{severity},{id},{message}' or '{file}({line}):({severity}) {message}' Pre-defined templates: gcc, vs, edit. |
-v, --verbose | Output more detailed error information. |
--version | Print out version number. |
--xml | Write results in xml format to error stream (stderr). |
--xml-version= |
Select the XML file version. Currently versions 1 and 2 are available. The default version is 1. |
Check if there is 64-bit portability issues:
A pointer to a variable is only valid as long as the variable is in scope. Check:
Check for invalid usage of Boost:
out of bounds checking
Check the code for each class.
Checking exception safety
Match assignments and conditions:
Not taking the address to allocated memory
If the constructor allocate memory then the destructor must deallocate it.
Is there any allocated memory when a function goes out of scope
Don't forget to deallocate struct members
Warn if any of these non reentrant functions are used:
Null pointers
Warn if any of these obsolete functions are used:
Other checks
Check for invalid usage of STL:
Uninitialized variables
Check for functions that are never called
UnusedVar checks
Warn if using postfix operators ++ or -- rather than prefix operator