我也在尝试,
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 不再起作用。