static analysis of C/C++ code
Go to file
Daniel Marjamäki 7c2c1445ed Restructuring: Doxyfile updated 2009-10-26 17:57:28 +01:00
cli restructuring the folder structure 2009-10-25 21:20:42 +01:00
gui Refactoring: Make Cppcheck::version() static 2009-10-25 22:06:58 +02:00
htdocs a simple build script for building devinfo.html 2009-10-10 22:43:42 +02:00
lib restructuring the folder structure 2009-10-25 21:20:42 +01:00
man Fixed typo in man page 2009-10-25 15:54:13 +02:00
test refactoring the folder structure 2009-10-25 12:49:06 +01:00
tools refactoring the folder structure 2009-10-25 12:49:06 +01:00
win_installer updated version to 1.38 2009-10-25 08:41:27 +01:00
.gitignore Added top-level 'check' target. 2009-09-04 22:59:25 +04:00
AUTHORS Fix ticket #325 (Replace developer names in source files with AUTHORS file) 2009-05-30 08:48:12 +03:00
COPYING Licensing: Using the GPL 3 license 2008-10-26 07:55:15 +00:00
Changelog Changelog: updated the Changelog 2009-10-25 08:45:24 +01:00
Makefile Refactoring: Updated Makefile 2009-10-25 21:25:07 +01:00
build.bat Add simple batch file to build cppcheck projects in Windows. 2009-07-14 18:47:38 +03:00
cppcheck.cbp codeblocks project file updated 2009-10-25 22:28:43 +02:00
cppcheck.cbproj Borland C++: Updated the project file 2009-10-10 22:10:33 +02:00
cppcheck.sln changed mode of visual studio files 2009-04-10 11:11:07 +02:00
cppcheck.vcproj Update Visual Studio project files. 2009-07-13 18:53:43 +03:00
createrelease updated version to 1.38 2009-10-25 08:41:27 +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 Fix #814 (Improvements for readme.txt) 2009-10-12 21:36:38 +03:00
readme_gui.txt Upate QT framework's URL to readme. 2009-09-06 10:57:21 +03:00
runastyle refactoring the folder structure 2009-10-25 12:49:06 +01:00
runastyle.bat refactoring the folder structure 2009-10-25 12:49:06 +01:00
testrunner.cbproj Borland C++ Builder: Fixed compilation and testrunner problems 2009-08-13 22:13:52 +02:00
testrunner.sln changed mode of visual studio files 2009-04-10 11:11:07 +02:00
testrunner.vcproj Replaced UNIT_TESTING ifdef with _MSC_VER 2009-09-23 22:16:46 +02:00
using_gcov.txt doc: how to use gcov 2009-01-20 21:01:11 +00:00
webreport.sh script for creating web content 2009-10-11 18:22:28 +02:00

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