static analysis of C/C++ code
Go to file
Daniel Marjamäki 5d5e347418 AST: better handling of 'sizeof(void*)' 2013-12-25 22:08:53 +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 Refactoring: Replaced CheckOther::checkCCTypeFunctions with configuration 2013-12-23 19:58:33 +01:00
cli Fixed #5252 (Improve check: use Library to validate function arguments in invalidFunctionUsage) 2013-12-23 10:06:45 +01:00
democlient
externals/tinyxml Updated tinyxml 2013-10-27 11:52:44 +01:00
gui Update Spanish GUI translation file with Qt Linguist 2013-12-25 17:38:55 -03: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 AST: better handling of 'sizeof(void*)' 2013-12-25 22:08:53 +01:00
man manual: document <formatstring> and <valid> 2013-12-23 19:12:06 +01:00
rules
samples
test AST: better handling of 'sizeof(void*)' 2013-12-25 22:08:53 +01:00
tools daca2-report: insert spaces between 'Most recently updated' items 2013-12-15 12:33:06 +01:00
win_installer
.gitattributes
.gitignore Improve daca2-report.py. 2013-11-10 17:35:31 +02:00
.mailmap
.travis.yml
AUTHORS
COPYING
Makefile Library: Added simple testing 2013-10-27 17:10:43 +01:00
build-pcre.txt
build.bat
console_common.pri
cppcheck.cbp
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
doxyfile
generate_coverage_report
readme.md
readme.txt readme: updated build instructions 2013-11-04 17:51:49 +01:00
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/