Fix mixed EOL styles in readme.txt. Use LF for now.
This commit is contained in:
parent
8f4edb5e45
commit
dfe18dbb71
64
readme.txt
64
readme.txt
|
@ -1,15 +1,15 @@
|
||||||
=========
|
=========
|
||||||
Cppcheck
|
Cppcheck
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
|
||||||
About
|
About
|
||||||
|
|
||||||
The original name of this program is "C++check" but it was later changed to "cppcheck".
|
The original name of this program is "C++check" but it was later changed to "cppcheck".
|
||||||
|
|
||||||
|
|
||||||
Compiling
|
Compiling
|
||||||
|
|
||||||
Any C++ compiler should work.
|
Any C++ compiler should work.
|
||||||
|
|
||||||
To build the GUI, you need Qt. The command line tool doesn't have any dependencies.
|
To build the GUI, you need Qt. The command line tool doesn't have any dependencies.
|
||||||
|
@ -54,23 +54,23 @@ Compiling
|
||||||
g++ -o cppcheck -Ilib cli/*.cpp lib/*.cpp
|
g++ -o cppcheck -Ilib cli/*.cpp lib/*.cpp
|
||||||
|
|
||||||
|
|
||||||
Cross compiling Win32 (CLI) version of Cppcheck in Linux
|
Cross compiling Win32 (CLI) version of Cppcheck in Linux
|
||||||
|
|
||||||
sudo apt-get install mingw32
|
sudo apt-get install mingw32
|
||||||
make CXX=i586-mingw32msvc-g++ LDFLAGS="-lshlwapi"
|
make CXX=i586-mingw32msvc-g++ LDFLAGS="-lshlwapi"
|
||||||
mv cppcheck cppcheck.exe
|
mv cppcheck cppcheck.exe
|
||||||
|
|
||||||
Usage
|
Usage
|
||||||
|
|
||||||
Run the cppcheck program without parameters and a help text will be shown.
|
Run the cppcheck program without parameters and a help text will be shown.
|
||||||
|
|
||||||
|
|
||||||
Recommendations
|
Recommendations
|
||||||
|
|
||||||
When the "--all" flag is given you may get a lot of error messages.
|
When the "--all" flag is given you may get a lot of error messages.
|
||||||
|
|
||||||
|
|
||||||
Webpage
|
Webpage
|
||||||
|
|
||||||
http://www.sf.net/projects/cppcheck
|
http://www.sf.net/projects/cppcheck
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue