Minor update: Updated the readme and checkproj files.
This commit is contained in:
parent
e816bff240
commit
d3f30c0a6e
|
@ -0,0 +1,13 @@
|
||||||
|
|
||||||
|
REM Sample DOS shellscript
|
||||||
|
REM cppcheck all *.cpp files in the subdirectory 'proj'
|
||||||
|
|
||||||
|
@ECHO OFF
|
||||||
|
|
||||||
|
date /t > report.txt
|
||||||
|
time /t >> report.txt
|
||||||
|
|
||||||
|
FOR %%s IN (proj\*.cpp) DO (
|
||||||
|
cppcheck proj\%%s
|
||||||
|
)
|
||||||
|
|
38
readme.txt
38
readme.txt
|
@ -1,43 +1,57 @@
|
||||||
|
|
||||||
|
|
||||||
=========
|
=========
|
||||||
C++ check
|
C++ check
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Compiling
|
Compiling
|
||||||
|
|
||||||
Any C++ compiler should work.
|
Any C++ compiler should work.
|
||||||
There are no dependencies.
|
There are no dependencies.
|
||||||
|
|
||||||
Linux:
|
The Makefile works under Linux.
|
||||||
g++ -o cppcheck main.cpp
|
To make it work under Windows, change "g++" to "gxx".
|
||||||
|
|
||||||
Windows:
|
I haven't been able to test it on other platforms.
|
||||||
gxx -o cppcheck main.cpp
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Usage
|
Usage
|
||||||
|
|
||||||
The syntax is:
|
The syntax is:
|
||||||
cppcheck [-w] filename.cpp
|
cppcheck [--all] [--style] filename.cpp
|
||||||
|
|
||||||
The error messages will be printed to stderr.
|
The error messages will be printed to stderr.
|
||||||
|
|
||||||
If you specify '-w', additional warning
|
|
||||||
messages will be printed.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Recommendations
|
Recommendations
|
||||||
|
|
||||||
Create a shell script that checks all files.
|
Create a shell script that checks all files.
|
||||||
|
See "checkproj.bat" for an example of how it can be done under Windows.
|
||||||
|
|
||||||
|
When the "--all" flag is given you may get a lot of error messages.
|
||||||
|
|
||||||
|
To dump the messages to a textfile you can use a command like this:
|
||||||
|
cppcheck --all filename.cpp 2> messages.txt
|
||||||
|
|
||||||
|
If you want to filter the messages you could use:
|
||||||
|
* grep to filter out specific types of messages
|
||||||
|
* diff to compare old messages with new messages. There are even GUIs for
|
||||||
|
this.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Suggestions
|
||||||
|
|
||||||
|
I'd like to get suggestions about new checks.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Author
|
Author
|
||||||
|
|
||||||
Daniel Marjamäki
|
Daniel Marjamäki (danielm77@spray.se)
|
||||||
A 29 year old from sweden who works in
|
|
||||||
Stockholm as a programmer (developing
|
|
||||||
a RAD tool for control systems that
|
|
||||||
control hydraulics).
|
|
||||||
|
|
Loading…
Reference in New Issue