我想使用覆盖率进行静态分析,我需要它用于c ++。由于我的项目使用Android NDK,因此我将编译器配置为:
cov-configure –comptype gcc –compiler ~/android-ndk-r8e/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86_64/bin/arm-linux-androideabi-gcc-4.6
然后我跑了cov-build –dir coverity ndk-build –j8 NDK_DEBUG=1
一切都在建立,但我有一个警告
*[*WARNING] No files were emitted. This may be due to a problem with your configuration
or because no files were actually compiled by your build command.
Please make sure you have configured the compilers actually used in the compilation.**
所以我忽略了警告并运行了
cov-analyze –dir coverity –all
**Coverity Static Analysis for C/C++ version 6.6.1 on Linux 2.6.38-8-server x86_64
Internal version numbers: d614fc01a4 p-eureka-push-15003.308
Looking for translation units
Error: no matching translation units.**
我的编译器配置正确吗?有人为之前的Android NDK配置了编译器吗?
答案 0 :(得分:6)
你表示编译器是 〜/ android-ndk-r8e / toolchains / arm-linux-androideabi-4.6 / prebuilt / linux-x86_64 / bin / arm-linux-androideabi-gcc -4.6 强>
确保这是命令中的正确完整路径(可能替换'〜'?), arm-linux-androideabi-gcc-4.6 正是如此用于编译。
我遇到了同样的问题,因为Coverity期望使用GCC,但我的构建使用了cc!
然后我设置:
~/coverity-current/bin/cov-configure --compiler /usr/bin/cc --comptype gcc
显示:
[WARNING] A template configuration is recommended for this compiler.
Add "--template" to your command line, or use one of the
template configuration shortcut command lines below:
cov-configure --gcc # GNU C/C++ compiler (gcc/g++)
cov-configure --msvc # Microsoft C/C++ compiler (cl)
cov-configure --java # Sun Java compiler (javac)
You must remove the specific configuration before re-running with "--template".
* Configuring /usr/bin/cc as a C compiler
[WARNING] Config gcc-config-2 already exists for cc gcc gcc-4.8 as gcc and will be reused.
* Configuring /usr/bin/cc as a C++ compiler
[WARNING] Config g++-config-2 already exists for cc gcc gcc-4.8 as g++ and will be reused.
Generated coverity_config.xml at location /home/default/cov-analysis-linux64-X.X.X/config/coverity_config.xml
Successfully generated configuration for the compilers: cc gcc gcc-4.8
cov-build命令是:
../../coverity-current/bin/cov-build --dir ~/build_cov/myapp/cov-log-all-output make -C ~/build_cov/myapp
结果:
../../coverity-current/bin/cov-build --dir ~/build_cov/myapp/cov-log-all-output make -C ~/build_cov/myapp
[...]
76 C/C++ compilation units (100%) are ready for analysis
The cov-build utility completed successfully.
你在cov-log-all-output / c / emit / pcname /
中有一个更大的emit-db文件答案 1 :(得分:4)
您应该为NDK配置正确的编译器:
cov-configure --comptype gcc -compiler arm-linux-androideabi-gcc --template
答案 2 :(得分:1)
在coverity / build-log.txt中,您应该看到构建期间执行的所有命令(查找“EXECUTING:”)。仔细检查编译器命令是否与您指定为cov-configure的编译器匹配。您可以配置多个编译器,配置通用gcc(“cov-configure --gcc”)可能很有用。
请记住,如果您的ndk-build实际上没有构建任何内容,那么cov-build将提供类似的消息。换句话说,消息并不总是表明存在问题 - 构建可能已完成,并且实际上并未编译任何文件。
答案 3 :(得分:0)
所以我只是面对同样的问题并解决了它。 在我的情况下make文件是问题,即使编译器配置正确,我得到以下警告:
没有发出任何文件。这可能是由于您的配置有问题 或者因为构建命令实际上没有编译任何文件。 请确保您已配置编译中实际使用的编译器。
make file包含一些目标,而不是我想要使用的目标。所以,如果你不确定makefile中定义的所有目标,只需删除它们并编译你需要的任何东西,并且知道..请与其他人讨论剩下的目标。