cppcheck
all
A static analysis tool for C/C++ code. Instead of syntax errors, it focuses on the types of bugs that compilers normally do not detect.
More info →Options (1)
-q, --quietbooleanRecursively check a given directory, and don't print progress messages
Example:
cppcheck {{[-q|--quiet]}} {{path/to/directory}}Examples (7)
Recursively check the current directory, showing progress on the screen and logging error messages to a file
cppcheck . 2> cppcheck.logRecursively check a given directory, and don't print progress messages
cppcheck [-q|--quiet] path/to/directoryCheck a given file, specifying which tests to perform (by default only errors are shown)
cppcheck --enable error|warning|style|performance|portability|information|all path/to/file.cppList available tests
cppcheck --errorlistCheck a given file, ignoring specific tests
cppcheck --suppress test_id1 --suppress test_id2 path/to/file.cppCheck the current directory, providing paths for include files located outside it (e.g. external libraries)
cppcheck -I include/directory_1 -I include/directory_2 .Check a Microsoft Visual Studio project (`*.vcxproj`) or solution (`*.sln`)
cppcheck --project path/to/project.slnmade by @shridhargupta | data from tldr-pages