static analysis of C/C++ code
Go to file
Kimmo Varis df64a15f2d Merge branch 'master' of github.com:danmar/cppcheck 2010-01-06 01:40:52 +02:00
cli CMake - add header files to CLI project and VS project. 2010-01-03 21:13:30 +02:00
gui Fixed #1226 (GUI: project include file relative path search problem) 2010-01-06 01:40:26 +02:00
htdocs webpage: removed main.html and top.html 2009-11-08 19:26:59 +01:00
htmlreport cppcheck doesn't always report a filename for an error. 2009-12-15 13:28:26 +01:00
lib Added more validating code to tokenizer. Currently commented out. 2010-01-06 01:32:05 +02:00
man htmlreport: added brief information in the manual 2009-12-25 18:56:14 +01:00
test Fixed #1224 (segmentation fault of cppcheck) 2010-01-05 21:55:33 +01:00
tools Added 'make man' to Makefile 2009-11-22 16:43:55 +02:00
win_installer version 1.39 2009-12-06 13:34:51 +01:00
.gitignore
AUTHORS
CMakeLists.txt CMake - Include test project when creating VS IDE project. 2010-01-05 22:11:48 +02:00
COPYING
Changelog Updated Changelog 2009-12-06 14:40:08 +01:00
Makefile Added TestLocalLeaks 2009-12-14 20:30:31 +01:00
all.pro Renamed top-level cppcheck.pro to all.pro 2009-10-28 20:50:11 +01:00
build.bat
cppcheck.cbp Add execution parameters to codeblocks project file: p.cpp --debug 2009-11-19 00:49:26 +02:00
cppcheck.cbproj C++ Builder: updated project file 2009-12-18 18:20:33 +01:00
cppcheck.sln Visual C++: removed 'gui' target from the cppcheck solution 2009-11-07 07:08:30 +01:00
createrelease version 1.39 2009-12-06 13:34:51 +01:00
doxyfile Restructuring: Doxyfile updated 2009-10-26 17:57:28 +01:00
generate_coverage_report Restructuring: Generate coverage report 2009-10-26 17:56:56 +01:00
readme.txt
readme_gui.txt
runastyle
runastyle.bat
testrunner.cbproj C++ Builder: updated the testrunner project file - added the lib/executionpath.cpp 2009-12-22 21:23:55 +01:00
webreport.sh

readme.txt

=========
Cppcheck
=========


About

  The original name of this program is "C++check".
  The name was changed to "cppcheck".


Compiling

  Any C++ compiler should work.

  The Makefile works under Linux.
  To make it work under Windows with DJGPP, change "g++" to "gxx".

  To build cppcheck with qmake, run these commands:
  
   Generate Makefile (use 'debug' instead of 'release' if doing developer build)
   (If you are using Mac OS, you need to add "-spec macx-g++" to the command):
     qmake -config release
    
   Build command-line tool, GUI and autotests:
     make

   To build command-line tool only:
     make sub-src 
    
   To build and run autotests:
     make check

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

Usage

  Run the cppcheck program without parameters and a help text will be shown.


Recommendations

  When the "--all" flag is given you may get a lot of error messages.


Webpage

  http://www.sf.net/projects/cppcheck