На скрытый gcov_init ссылается DSO - PullRequest
0 голосов
/ 27 апреля 2018

Я пытаюсь запустить Sconscript, используя gcc в программе на c ++ Я использую Linux Redhat 5 код для компилятора в sconscript: -

env.Append =(CCFLAG = '-fprofile-arcs')
env.Append =(CCFLAG = '-ftest-coverage')
env.Append =(CCFLAG = '--coverage')

code for Linker in sconscript:-

env.Append =(LINKFLAG= '-fprofile-arcs')
env.Append =(LINKFLAG= 'lgcov')
env.Append =(CCFLAG = '--coverage')

During compilation i get the below error

/usr/bin/ld: TU/Exe/Release/gcc_rhel5_tao/test_SCRECORDER.exe: hidden symbol '__gcov_init' in /usr/lib/gcc/i386-redhat-linux/4.1.2/libgcov.a(_gcov.o) is referenced by DSO 
Final link failed:nonrepresentable section on output
...