是否可以使 gcc/gcov 将覆盖率统计信息输出到源文件夹以外的位置?
将 gcc 与 -fprofile-arcs 和 -ftest-coverage 一起使用时,当生成的可执行文件终止时,它会尝试在与用于编译可执行文件的 .o 文件相同的位置创建 .gcda 输出文件。当我在与我构建的机器不同的机器上运行时,这很不方便 - 有什么方法可以改变这种行为吗?
When using gcc with -fprofile-arcs and -ftest-coverage, when the resulting executable terminates, it tries to create .gcda output files in the same location as the .o files used to compile the executable. This is inconvenient when I'm running on a different machine than the one I built on -- is there any way to change this behaviour?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用环境变量
GCOV_PREFIX
。在文档的“交叉分析”部分下提到了这一点,其中-fprofile-arcs
的文档中提到了它本身。You can use the environment variable
GCOV_PREFIX
. It's mentionned in the doc under a "cross-profiling" section, which itself is referred to in the documentation for-fprofile-arcs
.