4

我也在尝试,

http://www.linuxforums.org/forum/suse-linux/135465-gcov-g.html

来自链接的代码,

#include <iostream>

using namespace std;

void one(void);
void two(void);
void __gcov_flush(void);

int main(void)
{
  int i;

  while(true)
  {
        __gcov_flush();
        cout <<  "Enter a number(1-2), 0 to exit " << endl;
        cin >> i;

        if ( i == 1 )
           one();
        else if ( i == 2 )
           two();
        else if ( i == 0 )
           break;
        else
          continue;
  }
  return 0;
}

void one(void)
{ cout << "One is called" << endl; }

void two(void)
{ cout << "Two is called" << endl; }

但对我来说,它也给了,

test.cpp:(.text+0x1d9): undefined reference to `__gcov_flush()'
collect2: ld returned 1 exit status

尝试了以下方法,

g++ -fprofile-arcs test.cpp
g++ -fprofile-arcs -g test.cpp
g++ -fprofile-arcs -ftest-coverage -g test.cpp
g++ -fprofile-arcs -ftest-coverage -g test.cpp -lgcov

我还尝试了上面链接中提到的“-lgcov”和“extern void __gcov_flush(void)”。我目前在 Ubuntu12.04 和 g++ 4.6

所以,我想知道是否有解决方案或 gcov_flush 不再起作用。

4

2 回答 2

13
void __gcov_flush();

由于代码被编译为 C++,这声明了该名称的C++函数的存在。C++ 函数会受到名称修改的影响,因此在 (C) 链接库中找不到 (C++) 符号,并且链接器(理所当然地)抱怨它。

如果您声明该函数,请将其声明为具有C链接的函数:

extern "C" void __gcov_flush();

这应该可以解决问题。


请注意Paweł Bylica 的推荐 -__gcov_flush()已在 GCC 11 中删除,您应该使用__gcov_dump().

于 2013-10-29T12:19:58.933 回答
4

我修复了更改设置的问题。

测试项目 --> 构建设置

仪器程序流程 =

于 2014-03-06T12:36:31.090 回答