static analysis of C/C++ code
Go to file
Daniel Marjamäki 0c479b8c9f TestClass: Added a testcase where a array member variable is initialized through strcpy 2009-08-24 17:15:29 +02:00
gui Don't force debug builds in qmake project files. 2009-08-17 18:12:53 +03:00
man
src Fix ticket #613 (array members variables are not checked in constructor) 2009-08-23 22:54:41 +03:00
test TestClass: Added a testcase where a array member variable is initialized through strcpy 2009-08-24 17:15:29 +02:00
tools
win_installer Installer: update readme for latest changes. 2009-08-18 21:32:00 +03:00
.gitignore .gitignore: added src/Makefile generated by qmake. 2009-08-16 18:27:44 +07:00
AUTHORS
COPYING
Changelog Update version number to 1.35 2009-08-16 16:57:16 +03:00
Makefile generated the Makefile 2009-08-16 21:17:02 +02:00
build.bat Add simple batch file to build cppcheck projects in Windows. 2009-07-14 18:47:38 +03:00
cppcheck.cbp Initial work for class and member function/variable list in tokenizer. 2009-08-12 23:50:03 +03:00
cppcheck.cbproj Borland C++ Builder: Fixed compilation problems when compiling cppcheck 2009-08-14 12:28:41 +02:00
cppcheck.geany doc: changed the doxygen comments for the mainpage 2009-07-16 15:32:07 +02:00
cppcheck.sln
cppcheck.vcproj Update Visual Studio project files. 2009-07-13 18:53:43 +03:00
createrelease List Windows resource file as file to update. 2009-08-18 21:49:00 +03:00
doxyfile
readme.txt Don't force debug builds in qmake project files. 2009-08-17 18:12:53 +03:00
runastyle
runastyle.bat
testrunner.cbproj Borland C++ Builder: Fixed compilation and testrunner problems 2009-08-13 22:13:52 +02:00
testrunner.sln
testrunner.vcproj Update Visual Studio project files. 2009-07-13 18:53:43 +03:00
using_gcov.txt

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 the commands:
  cd src
  qmake -config release (or '-config debug' if doing developer build)
  make

  To compile the GUI one needs Qt development libraries and issue the following commands:
  cd gui
  qmake -config release (or '-config debug' if doing developer build)
  lrelease gui.pro
  make

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