gcov 不生成覆盖率文件

发布于 2024-09-12 14:10:00 字数 147 浏览 10 评论 0原文

我正在 32 位机器上使用 -fprofile-arcs -ftest-coverage 标志交叉编译我的可执行文件以进行覆盖。我在 64 位目标机器上运行生成的可执行文件。

当我运行可执行文件时,它不会生成 .bb .bbg 和 .da 文件。可能是什么原因呢。

I am cross compiliing my executable for coverage using -fprofile-arcs -ftest-coverage flags on a 32 bit machine . And the resulting executable I am running it on target machine which is 64-bit.

When I run the executable it does not generate .bb .bbg and .da files. What can be the reason for it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

山色无中 2024-09-19 14:10:00

最可能的原因是数据文件是在与编译相同的目录中生成的,该目录可能无法在执行测试的目标平台上访问或写入。

在最近的 gcc 版本中,环境变量 GCOV_PREFIX 和 GCOV_PREFIX_STRIP 可用于覆盖默认目录。

Most probable reason is that the data files are generated in the same directory as the compile which may not be accessible on, or not writable from, the target platform where the test is executed.

With decently recent gcc version, environment variables GCOV_PREFIX and GCOV_PREFIX_STRIP can be used to override the default directory.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文