gcov:0%执行行错误

时间:2015-08-02 17:30:33

标签: trace gcov

这是我第一次处理“gcov”,所以我试图一步一步地处理它。我正在关注Wikipedia页面,因此我创建了一个简单的c文件,如下所示:

#include <stdio.h>

int
main (void)
{
int i;

for (i = 1; i < 10; i++)
{
  if (i % 3 == 0)
    printf ("%d is divisible by 3\n", i);
  if (i % 11 == 0)
    printf ("%d is divisible by 11\n", i);
}

return 0;
}

然后我编译了文件:

gcc -Wall -fprofile-arcs -ftest-coverage test.c

然后我打字:

gcov test.c

基于维基百科页面,我应该得到类似的内容:

88.89% of 9 source lines executed in file test.c
Creating test.c.gcov

然而,我得到的是:

File 'test.c'
Lines executed:0.00% of 7
test.c:creating 'test.c.gcov'

我不知道问题出在哪里。我正在使用mac 10.10.4。当我输入

gcc --version 

我明白了:

Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-  include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn)
Target: x86_64-apple-darwin14.4.0
Thread model: posix

当我输入

gcov --version

我明白了:

LLVM (http://llvm.org/):
LLVM version 3.6.0svn from Apple Clang 6.1.0 (build 602.0.53)
Optimized build.
Default target: x86_64-apple-darwin14.4.0
Host CPU: x86-64

我想要的实际上是一个跟踪程序执行的工具,即行执行的顺序。我想我可以通过使用“gcov”来实现这一目标。

有什么想法?

1 个答案:

答案 0 :(得分:1)

你必须在调用gcov.c之前执行a.out,如在维基百科页面中提到的那样:)