static analysis of C/C++ code
Go to file
Daniel Marjamäki 071aefbb58 1.41: Set version in files 2010-03-07 16:25:37 +01:00
cli 1.41: Set version in files 2010-03-07 16:25:37 +01:00
gui Apply patch #1408 (gui build fails with Qt-4.4.3: QLocale) 2010-02-28 13:03:34 +02:00
htdocs webpage: removed main.html and top.html 2009-11-08 19:26:59 +01:00
htmlreport cppcheck-htmlreport now takes a parameter for source code encoding to support non ascii characters. 2010-01-14 09:47:38 +01:00
lib 1.41: Set version in files 2010-03-07 16:25:37 +01:00
man CMake - build htmlhelp manual in Cygwin. 2010-02-01 23:42:29 +02:00
test Simplify enum: Fixed segmentation fault if code ends with enum type id 2010-03-07 13:01:56 +01:00
tools Add VS project file for building dmake. 2010-03-04 21:09:37 +02:00
win_installer 1.41: Set version in files 2010-03-07 16:25:37 +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 updated Changelog 2010-01-17 13:54:55 +01:00
Makefile Makefile: Readded old Makefile again 2010-02-23 18:38:18 +01:00
all.pro Renamed top-level cppcheck.pro to all.pro 2009-10-28 20:50:11 +01:00
build.bat Add "all" target for build.bat. 2010-01-09 13:54:56 +02:00
cppcheck.cbp Improved updateClassList(), but not yet took it into use. 2010-01-29 23:22:18 +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 Updated version to 1.40 2010-01-17 13:52:28 +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: removed cmake/scons 2010-02-23 18:26:09 +01: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 C++ Builder: updated the testrunner project file - added the lib/executionpath.cpp 2009-12-22 21:23:55 +01: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" but it was later changed to "cppcheck".


Compiling

    Any C++ compiler should work.

    To build the GUI, you need Qt. The command line tool doesn't have any dependencies.

    There are multiple compilation choices:
      * qmake - cross platform build tool - but only the GUI can be built
      * Visual Studio - Windows
      * 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.


    gnu make
    ========
            make


    g++ (for experts)
    =================
        If you just want to build Cppcheck then you can use this command:
            g++ -o cppcheck -Ilib cli/*.cpp lib/*.cpp


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