当前位置: 首页 > 工具软件 > Qtc_CppCheck > 使用案例 >

Ubuntu下cppcheck的安装和使用

卫高谊
2023-12-01

一、cppcheck的安装

# DESTDIR 安装到的目的路径
# FILESDIR 实际安装路径为`DESTDIR+FILESDIR`,注意这两个路径末尾斜杠都要去掉
make -j8 FILESDIR=/usr/share/cppcheck DESTDIR= MATCHCOMPILER=yes
sudo make install FILESDIR=/usr/share/cppcheck DESTDIR= MATCHCOMPILER=yes

二、cppcheck的使用
简述:cppcheck 是一种 C/C++ 代码缺陷静态检查工具。不同于 C/C++ 编译器及很多其它分析工具,它不检查代码中的语法错误。Cppcheck 只检查编译器检查不出来的 bug 类型,其目的是检查代码中真正的错误。

部分操作介绍,如需更多操作说明,请使用cppcheck --help进行查看

1、检查某一个c/c++文件

cppcheck file.c

2、检查文件夹中的所有文件

cppcheck path

cppcheck将递归检查path文件夹下所有源文件

3、启用消息

默认情况下,只显示错误消息,可以通过–enable命令启用更多检查

启用警告消息:

cppcheck --enable=warning file.c

启用性能消息:

cppcheck --enable=performance file.c

启用信息消息:

cppcheck --enable=information file.c

由于历史原因 --enable=style 可以启用警告、性能、可移植性和样式信息。当使用旧 XML 格式时,这些都由 style 表示:

cppcheck --enable=style file.c

启用警告和性能消息:

cppcheck --enable=warning,performance file.c

启用unusedFunction检查

cppcheck --enable=unusedFunction file.c

启用所有消息:

cppcheck --enable=all

4、将检查结果保存到文件中

cppcheck file.c 2> result.txt

5、多线程检查

cppcheck -j 4 path

多线程检查时,不会对ubusedFunction进行检查

6、CMake项目cppcheck检查的使用

首先,在CMakeList.txt同目录下,通过cmake生成项目的compile_commands.json文件

cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON

然后即可使用cppcheck对该项目进行检查

cppcheck --project=compile_commands.json

可通过重定向将检查结果导入到文件中

7、屏蔽某种错误

屏蔽syntax error: 命令行参数 --suppress=syntaxError

cppcheck --suppress=memleak:src/file1.cpp src/

8、使用suppressions.txt 统一屏蔽,--suppressions-list=suppressions.txt

示例:

noExplicitConstructor // suppress all noExplicitConstructor errors in all files

   

// suppress memleak and exceptNew errors in the file src/file1.cpp

memleak:src/file1.cpp

exceptNew:src/file1.cpp

格式:

[error id]:[filename]:[line]

[error id]:[filename2]

[error id]

三、常见错误修改
(1)隐式构造问题

示例: (style) Class 'Slice' has a constructor with 1 argument that is not explicit.

解决方法:在Slice构造函数前加上explicit,使其必须显示构造,当然这种有时并非必须显示构造

(2)变量未初始化问题

示例:(warning) Member variable 'TableFileCreationInfo::file_size' is not initialized in the constructor.

解决方法:在构造函数中加入变量初始值

(3)变量/函数未使用问题

示例:(style) Unused variable: output

示例:(style) The function 'rocksmt_wal_iter_status' is never used.

解决方法:考虑后期是否还需要,不需要的及时删除,需要的保留

(4)raw loop问题

示例:(style) Consider using std::fill algorithm instead of a raw loop. [useStlAlgorithm]

示例:(style) Consider using std::transform algorithm instead of a raw loop. [useStlAlgorithm]

解决办法:将循环便利替换为STL标准库算法函数

(5)引用传递问题

示例:(performance) Function parameter 'f' should be passed by reference.

解决办法:在声明function时,能用引用传递的尽量使用引用传递,尽量避免值传递

(6)const参数问题

示例:(performance) Function parameter 's' should be passed by const reference. [passedByValue]

解决办法:形参s前加上const,在函数中未被修改的变量,尽量声明为const

 类似资料: