github 检查代码质量_cppcheck: 一个用于c++代码检测的库 https://github.com/danmar/cppcheck.git...

Cppcheck

GitHub Actions

Linux Build Status

Windows Build Status

OSS-Fuzz

Coverity Scan Build Status

License

About the name

The original name of this program was "C++check", but it was later changed to "Cppcheck".

Despite the name, Cppcheck is designed for both C and C++.

Manual

A manual is available online.

Donate CPU

Cppcheck is a hobby project with limited resources. You can help us by donating CPU (1 core or as many as you like). It is simple:

Download (and extract) Cppcheck source code

Run script: python cppcheck/tools/donate-cpu.py

The script will analyse debian source code and upload the results to a cppcheck server. We need these results both to improve Cppcheck and to detect regressions.

You can stop the script whenever you like with Ctrl C.

Compiling

Any C++11 compiler should work. For compilers with partial C++11 support it may work. If your compiler has the C++11 features that are available in Visual Studio 2013 / GCC 4.6 then it will work.

To build the GUI, you need Qt.

When building the command line tool, PCRE is optional. It is used if you build with rules.

There are multiple compilation choices:

qmake - cross platform build tool

cmake - cross platform build tool

Windows: Visual Studio (VS 2013 and above)

Windows: Qt Creator + mingw

gnu make

g++ 4.6 (or later)

clang++

cmake

Example, compiling Cppcheck with cmake:

mkdirbuild

cdbuild

cmake ..

cmake --build .

If you want to compile the GUI you can use the flag

-DBUILD_GUI=ON

For rules support (requires pcre) use the flag

-DHAVE_RULES=ON

For release builds it is recommended that you use:

-DUSE_MATCHCOMPILER=ON

qmake

You can use the gui/gui.pro file to build the GUI.

cdgui

qmake

make

Visual Studio

Use the cppcheck.sln file. The file is configured for Visual Studio 2019, but the platform toolset can be changed easily to older or newer versions. The solution contains platform targets for both x86 and x64.

To compile with rules, select "Release-PCRE" or "Debug-PCRE" configuration. pcre.lib (pcre64.lib for x64 builds) and pcre.h are expected to be in /externals then. A current version of PCRE for Visual Studio can be obtained using vcpkg.

Qt Creator + MinGW

The PCRE dll is needed to build the CLI. It can be downloaded here:

http://software-download.name/pcre-library-windows/

GNU make

Simple, unoptimized build (no dependencies):

make

The recommended release build is:

make MATCHCOMPILER=yesFILESDIR=/usr/share/cppcheck HAVE_RULES=yesCXXFLAGS="-O2 -DNDEBUG -Wall -Wno-sign-compare -Wno-unused-function"

Flags:

MATCHCOMPILER=yes

Python is used to optimise cppcheck. The Token::Match patterns are converted into C++ code at compile time.

FILESDIR=/usr/share/cppcheck

Specify folder where cppcheck files are installed (addons, cfg, platform)

HAVE_RULES=yes

Enable rules (PCRE is required if this is used)

CXXFLAGS="-O2 -DNDEBUG -Wall -Wno-sign-compare -Wno-unused-function"

Enables most compiler optimizations, disables cppcheck-internal debugging code and enables basic compiler warnings.

g++ (for experts)

If you just want to build Cppcheck without dependencies then you can use this command:

g++ -o cppcheck -std=c++11 -Iexternals -Iexternals/simplecpp -Iexternals/tinyxml -Ilib cli/*.cpp lib/*.cpp externals/simplecpp/simplecpp.cpp externals/tinyxml/*.cpp

If you want to use --rule and --rule-file then dependencies are needed:

g++ -o cppcheck -std=c++11 -lpcre -DHAVE_RULES -Ilib -Iexternals -Iexternals/simplecpp -Iexternals/tinyxml cli/*.cpp lib/*.cpp externals/simplecpp/simplecpp.cpp externals/tinyxml/*.cpp

MinGW

mingw32-make LDFLAGS=-lshlwapi

Other Compiler/IDE

Create an empty project file / makefile.

Add all cpp files in the cppcheck cli and lib folders to the project file / makefile.

Add all cpp files in the externals folders to the project file / makefile.

Compile.

Cross compiling Win32 (CLI) version of Cppcheck in Linux

sudoapt-get installmingw32

make CXX=i586-mingw32msvc-g++ LDFLAGS="-lshlwapi" RDYNAMIC=""

mvcppcheck cppcheck.exe

Webpage

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值