static analysis of C/C++ code
Go to file
Daniel Marjamäki aa9281515d Clang import: Handle LinkageSpecDecl 2020-11-24 19:34:37 +01:00
.github/workflows run addon pytest scripts in github action because something fails on travis 2020-11-24 07:48:30 +01:00
addons Fixed #9993 (false positive: misra-c2012-9.2) (#2908) 2020-11-18 10:50:35 +01:00
cfg windows.cfg: Added support for more constants from winnt.h 2020-11-23 14:05:10 +01:00
cli Add find_package(tinyxml2) to CMake builds (#2691) 2020-11-22 08:57:07 +01:00
cmake Add find_package(tinyxml2) to CMake builds (#2691) 2020-11-22 08:57:07 +01:00
cve-test-suite
democlient rename externals/tinyxml to externals/tinyxml2 2020-11-16 09:11:53 +01:00
externals removed the *_sanitized targets used by fuzz-client from CMake - if you need this to be sanitized use CMAKE_CXX_FLAGS / fixed linking of fuzz-client (#2914) 2020-11-21 07:44:22 +01:00
gui GUI: Tweak 'check unused templates' option text a bit 2020-11-23 20:25:19 +01:00
htmlreport travis: Test htmlreport with python2 and python3 (#2862) 2020-11-04 21:03:46 +01:00
lib Clang import: Handle LinkageSpecDecl 2020-11-24 19:34:37 +01:00
man set version 2.2.99 2020-10-03 13:54:17 +02:00
oss-fuzz removed the *_sanitized targets used by fuzz-client from CMake - if you need this to be sanitized use CMAKE_CXX_FLAGS / fixed linking of fuzz-client (#2914) 2020-11-21 07:44:22 +01:00
platforms Running astyle [ci skip] 2020-11-21 00:02:44 +01:00
rules
samples
snap
test Clang import: better handling of CXXMethodDecl in getSpelling 2020-11-24 19:20:30 +01:00
tools rename externals/tinyxml to externals/tinyxml2 2020-11-16 09:11:53 +01:00
win_installer cppcheck.wxs: Use underscore instead of dash (#2915) 2020-11-21 07:38:32 +01:00
.astylerc
.clang-tidy fixes for Clang and clang-tidy 10 (#2588) 2020-04-04 11:44:59 +02:00
.codacy.yml
.gitignore .gitignore: added gui/.qmake.stash 2020-09-13 20:58:08 +02:00
.mailmap
.travis.yml run addon pytest scripts in github action because something fails on travis 2020-11-24 07:48:30 +01:00
.travis_llvmcheck_suppressions
.travis_suppressions
AUTHORS AUTHORS: Added kskjerve and Springvar 2020-11-16 17:33:32 +01:00
CMakeLists.txt Add find_package(tinyxml2) to CMake builds (#2691) 2020-11-22 08:57:07 +01:00
COPYING
Makefile Run dmake again 2020-11-16 09:14:31 +01:00
appveyor.yml Enable building of Qt online-help in gui.pro (#2851) 2020-10-18 08:07:27 +02:00
benchmarks.txt
build-pcre.txt
console_common.pri
cppcheck-errors.rng Rename 'cppcheckID' to 'hash' 2020-07-21 11:27:03 +02:00
cppcheck.cppcheck
cppcheck.sln
createrelease 2.2: Update versions 2020-10-03 10:47:35 +02:00
doxyfile
generate_coverage_report rename externals/tinyxml to externals/tinyxml2 2020-11-16 09:11:53 +01:00
naming.json
philosophy.md
pylintrc_travis
readme.md rename externals/tinyxml to externals/tinyxml2 2020-11-16 09:11:53 +01:00
readme.txt rename externals/tinyxml to externals/tinyxml2 2020-11-16 09:11:53 +01:00
readmeja.md rename externals/tinyxml to externals/tinyxml2 2020-11-16 09:11:53 +01:00
requirements.txt Update pcre version since the link is broken (#2089) 2019-08-15 20:48:10 +02:00
runastyle
runastyle.bat
webreport.sh

readme.md

Cppcheck

GitHub Actions Linux Build Status Windows Build Status OSS-Fuzz Coverity Scan Build Status License
Github Action Status Linux Build Status Windows Build Status OSS-Fuzz Coverity Scan Build Status License

About the name

The original name of this program was "C++check", but it was later changed to "Cppcheck".

Despite the name, Cppcheck is designed for both C and C++.

Manual

A manual is available online.

Donate CPU

Cppcheck is a hobby project with limited resources. You can help us by donating CPU (1 core or as many as you like). It is simple:

  1. Download (and extract) Cppcheck source code.
  2. Run script: python cppcheck/tools/donate-cpu.py.

The script will analyse debian source code and upload the results to a cppcheck server. We need these results both to improve Cppcheck and to detect regressions.

You can stop the script whenever you like with Ctrl C.

Compiling

Any C++11 compiler should work. For compilers with partial C++11 support it may work. If your compiler has the C++11 features that are available in Visual Studio 2013 / GCC 4.6 then it will work.

To build the GUI, you need Qt.

When building the command line tool, PCRE is optional. It is used if you build with rules.

There are multiple compilation choices:

  • qmake - cross platform build tool
  • cmake - cross platform build tool
  • Windows: Visual Studio (VS 2013 and above)
  • Windows: Qt Creator + mingw
  • gnu make
  • g++ 4.6 (or later)
  • clang++

cmake

Example, compiling Cppcheck with cmake:

mkdir build
cd build
cmake ..
cmake --build .

If you want to compile the GUI you can use the flag. -DBUILD_GUI=ON

For rules support (requires pcre) use the flag. -DHAVE_RULES=ON

For release builds it is recommended that you use: -DUSE_MATCHCOMPILER=ON

Using cmake you can generate project files for Visual Studio,XCode,etc.

qmake

You can use the gui/gui.pro file to build the GUI.

cd gui
qmake
make

Visual Studio

Use the cppcheck.sln file. The file is configured for Visual Studio 2019, but the platform toolset can be changed easily to older or newer versions. The solution contains platform targets for both x86 and x64.

To compile with rules, select "Release-PCRE" or "Debug-PCRE" configuration. pcre.lib (pcre64.lib for x64 builds) and pcre.h are expected to be in /externals then. A current version of PCRE for Visual Studio can be obtained using vcpkg.

Qt Creator + MinGW

The PCRE dll is needed to build the CLI. It can be downloaded here: http://software-download.name/pcre-library-windows/

GNU make

Simple, unoptimized build (no dependencies):

make

The recommended release build is:

make MATCHCOMPILER=yes FILESDIR=/usr/share/cppcheck HAVE_RULES=yes CXXFLAGS="-O2 -DNDEBUG -Wall -Wno-sign-compare -Wno-unused-function"

Flags:

  1. MATCHCOMPILER=yes Python is used to optimise cppcheck. The Token::Match patterns are converted into C++ code at compile time.

  2. FILESDIR=/usr/share/cppcheck Specify folder where cppcheck files are installed (addons, cfg, platform)

  3. HAVE_RULES=yes Enable rules (PCRE is required if this is used)

  4. CXXFLAGS="-O2 -DNDEBUG -Wall -Wno-sign-compare -Wno-unused-function" Enables most compiler optimizations, disables cppcheck-internal debugging code and enables basic compiler warnings.

g++ (for experts)

If you just want to build Cppcheck without dependencies then you can use this command:

g++ -o cppcheck -std=c++11 -Iexternals -Iexternals/simplecpp -Iexternals/tinyxml2 -Ilib cli/*.cpp lib/*.cpp externals/simplecpp/simplecpp.cpp externals/tinyxml2/*.cpp

If you want to use --rule and --rule-file then dependencies are needed:

g++ -o cppcheck -std=c++11 -lpcre -DHAVE_RULES -Ilib -Iexternals -Iexternals/simplecpp -Iexternals/tinyxml2 cli/*.cpp lib/*.cpp externals/simplecpp/simplecpp.cpp externals/tinyxml2/*.cpp

MinGW

mingw32-make LDFLAGS=-lshlwapi

Other Compiler/IDE

  1. Create an empty project file / makefile.
  2. Add all cpp files in the cppcheck cli and lib folders to the project file / makefile.
  3. Add all cpp files in the externals folders to the project file / makefile.
  4. Compile.

Cross compiling Win32 (CLI) version of Cppcheck in Linux

sudo apt-get install mingw32
make CXX=i586-mingw32msvc-g++ LDFLAGS="-lshlwapi" RDYNAMIC=""
mv cppcheck cppcheck.exe

Packages

You can install Cppcheck with yum/apt/brew/etc.

The official rpms are built with these files: https://src.fedoraproject.org/rpms/cppcheck/tree/master

Webpage

http://cppcheck.sourceforge.net/