static analysis of C/C++ code
Go to file
Daniel Marjamäki 762806499f Fixed #5182 (Tokenizer::simplifyEnum: template function call as enum value) 2013-12-16 07:07:00 +01:00
Cppcheck.xcodeproj Build with GNU's STL on OS X Mavericks to workaround clang's bug #17782 2013-11-02 20:31:32 +01:00
cfg
cli AST: Always use AST 2013-12-09 18:06:19 +01:00
democlient Fix democlient compilation under MSYS. 2013-07-21 19:15:59 +02:00
externals/tinyxml
gui Reduce variable scope. 2013-11-05 08:10:44 +02:00
htdocs htdocs: update .htaccess from the latest html5 boilerplate. 2013-11-14 12:57:19 +02:00
htmlreport Merge pull request #190 from myint/clean 2013-10-27 02:41:29 -07:00
lib Fixed #5182 (Tokenizer::simplifyEnum: template function call as enum value) 2013-12-16 07:07:00 +01:00
man manual: Improved chapter about library configurations 2013-12-12 19:49:39 +01:00
rules
samples
test Fixed #5182 (Tokenizer::simplifyEnum: template function call as enum value) 2013-12-16 07:07:00 +01:00
tools daca2-report: insert spaces between 'Most recently updated' items 2013-12-15 12:33:06 +01:00
win_installer Set version to 1.63 dev 2013-10-13 09:53:56 +02:00
.gitattributes
.gitignore
.mailmap
.travis.yml
AUTHORS
COPYING
Makefile
build-pcre.txt
build.bat
console_common.pri
cppcheck.cbp Refactoring: Add new file lib/templatesimplifier.cpp 2012-01-01 22:55:05 +02:00
cppcheck.cppcheck
cppcheck.sln
cppcheck_vs2010.sln Added newline after UTF8 signature to VS solution (compatibility with some VS installations) 2012-09-05 15:59:09 +02:00
createrelease createrelease: updated instructions 2013-10-12 12:44:43 +02:00
doxyfile
generate_coverage_report
readme.md
readme.txt
readme_64-bit_Windows.txt
readme_gui.txt Fixed typos in comments, no functional changes. 2013-11-09 16:07:28 +01:00
runastyle runastyle: archive has been removed 2013-10-13 17:44:48 +02:00
runastyle.bat
webreport.sh

readme.md

Cppcheck Build Status

Donations

Donations

If you find Cppcheck useful for you, feel free to make a donation.

Donate

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.

Compiling

Any C++ compiler should work.

To build the GUI, you need Qt.

When building the command line tool, PCRE is normally used. PCRE is optional.

There are multiple compilation choices:

  • qmake - cross platform build tool
  • Windows: Visual Studio or Qt Creator or MinGW
  • gnu make
  • g++

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 rules are normally enabled.

To compile with rules (PCRE dependency):

  • the PCRE dll is needed. It can be downloaded from here.

To compile without rules (no dependencies):

  • remove the preprocessor define HAVE_RULES from the project
  • remove the pcre.lib from the project

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

To build Cppcheck with rules (PCRE dependency):

make HAVE_RULES=yes

To build Cppcheck without rules (no dependencies):

make

g++ (for experts)

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

g++ -o cppcheck -Ilib cli/*.cpp lib/*.cpp

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

g++ -o cppcheck -lpcre -DHAVE_RULES -Ilib -Iexternals cli/*.cpp lib/*.cpp externals/tinyxml/*.cpp

MinGW

make LDFLAGS=-lshlwapi

Cross compiling Win32 (CLI) version of Cppcheck in Linux

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

Webpage

http://cppcheck.sourceforge.net/