This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug gcov-profile/51807] Fail to generate .gcno file when use libtool to compile la library
- From: "beanflowersh at gmail dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Tue, 10 Jan 2012 07:10:13 +0000
- Subject: [Bug gcov-profile/51807] Fail to generate .gcno file when use libtool to compile la library
- Auto-submitted: auto-generated
- References: <bug-51807-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51807
--- Comment #1 from lei <beanflowersh at gmail dot com> 2012-01-10 07:10:13 UTC ---
(In reply to comment #0)
> 1.The project need to use libtool to compile la files.
> 2.Add LIBS+=" -lgcov" in configure
> 3.configure CFLAGS="-g -Wall -Werror -Wno-unknown-pragmas -fprofile-arcs
> -ftest-coverage" \
> CXXFLAGS="-g -Wall -Werror -Wno-unknown-pragmas -fprofile-arcs
> -ftest-coverage" \
> --enable-unit-tests \
> --enable-libcurl \
> --disable-shared \
> --enable-developer-mode \
>
> 4.make
> 5.Check the la related cpp files ant gcov didn't generate .gcno file.
>
> Is there any work around to resolve this issue? or if it needs to add
> additional parameter.
E.g.:
The frame of my project as below:
Dir1: 1.cpp 2.cpp 3.cpp
After compiled(add -fprofile-arcs -ftest-coverage), the files in the Dir1 as
below:
1.cpp 1.o 1.gcno
2.cpp 2.o 2.lo
3.cpp 3.o 3.lo
.libc/***.a ***.la
But there isn't the gcno files to be generated for 2.cpp and 3.cpp and I cannot
get the code coverage data for 2.cpp and 3.cpp.