coverity8 不支持 clang(不是 clangcc)

clang(not clangcc) is not supported by coverity8

我正在使用 coverity 来分析我的代码。 但是当我配置cov时,出现错误。

> cov-configure --config
> /home/opt/coverity/Coverity/cov-admin/cov-conf/config/coverity_config_armcc.xml
> --comptype clang --compiler ****** --template

出现错误:

Unknown compiler type clang
The only supported compiler types are:
******

所以我怀疑coverity是否支持clang编译器,或者我做错了什么。

覆盖率版本为8

BRs.

Coverity 8 绝对支持 Clang。问题是您正在使用 --comptype clang - Clang 的 comptype 是 --comptype clangcc(注意额外的 cc)。

如果您有疑问,cov-configure --list-compiler-types 和文档一样是一个很好的起点。

请注意,只要您的 Clang 二进制文件具有默认名称,cov-configure --clang 就应该是您所需要的。否则,我强烈建议您在 cov-configure 命令行上也使用 --template,因为 Clang 的 CIT 实现大量使用 "required" 参数,您不太可能成功捕获你的构建没有使用 --template.