我正在尝试调试gcov代码。我编写了一个简单的C程序,它调用gcc/gcov中的__gcov_flush()方法。
在确认libgcov.a库不是用调试符号构建的之后,我已经在我的机器上安装了gcc的debuginfo包(SLES 10)。

# gcc -v
Using built-in specs.
Target: x86_64-suse-linux
Configured with: ../configure --enable-threads=posix --prefix=/usr --with-local-prefix=/usr/local --infodir=/usr/share/info --mandir=/usr/share/man --libdir=/usr/lib64 --libexecdir=/usr/lib64 --enable-languages=c,c++,objc,fortran,obj-c++,java,ada --enable-checking=release --with-gxx-include-dir=/usr/include/c++/4.1.2 --enable-ssp --disable-libssp --disable-libgcj --with-slibdir=/lib64 --with-system-zlib --enable-shared --enable-__cxa_atexit --enable-libstdcxx-allocator=new --program-suffix= --enable-version-specific-runtime-libs --without-system-libunwind --with-cpu=generic --host=x86_64-suse-linux
Thread model: posix
gcc version 4.1.2 20070115 (SUSE Linux)


# rpm -qi gcc-debuginfo-4.1.2_20070115-0.29.6.x86_64
Name        : gcc-debuginfo                Relocations: (not relocatable)
Version     : 4.1.2_20070115                    Vendor: SUSE LINUX Products GmbH, Nuernberg, Germany
Release     : 0.29.6                        Build Date: Sat Sep  5 03:04:50 2009
Install Date: Thu Apr 24 05:25:32 2014      Build Host: bingen
Group       : Development/Debug             Source RPM: gcc-4.1.2_20070115-0.29.6.src.rpm
Size        : 251823743                        License: GPL v2 or later
Signature   : DSA/SHA1, Sat Sep  5 03:06:59 2009, Key ID a84edae89c800aca
Packager    : http://bugs.opensuse.org
URL         : http://gcc.gnu.org/
Summary     : Debug information for package gcc
Description :
This package provides debug information for package gcc.
Debug information is useful when developing applications that use this
package or when debugging this package.
Distribution: SUSE Linux Enterprise 10


/usr/lib/debug/usr/bin # ls -lrt gcov.debug
-rw-r--r-- 1 root root 94216 Sep  5  2009 gcov.debug

然而,即使在安装了正确版本的debuginfo(gcov.debug)包之后,GDB仍然无法识别行号信息,它只是将控件传递到下一行而不报告行号(或进入函数)。
(gdb)s
26            i++;
(gdb)s
27            __gcov_flush();
(gdb)s
28            printf("%d",i);
(gdb)
(gdb) show debug-file-directory
The directory where separate debug symbols are searched for is "/usr/lib/debug".

为什么GDB不能识别gcov的行号信息?如果我没有为gcc/gcov安装正确版本的debuginfo包,如何确认?

最佳答案

在确认libgcov.a库不是用调试符号构建的之后,我已经安装了debuginfo包
你似乎不明白debuginfo包是如何工作的。他们无法神奇地将debuginfo添加到一个没有调试符号(或被剥离的)的存档库中。
通常的构建流程是:
使用-g构建所有内容
为所有完全链接的二进制文件(可执行文件和共享库)准备单独的debuginfo包
剥离完全链接的二进制文件(但不包括存档库)
这允许二进制文件和共享库很小,但是在安装debuginfo包之后仍然可以调试。
显然,在SLES10上,“但不是档案库”没有得到认可,而且libgcov.a也被剥离。由于单独的debuginfo包不适用于存档库,因此无法获取该信息。您唯一的选择是从源代码重建GCC。
P.S.他们为什么要脱光?
这是一个折衷方案:最终用户链接的二进制文件将更小,但libgcov.a中的代码将无法调试。
由于大多数终端用户从不调试libgcov.a,我认为这不是一个不合理的权衡。

关于linux - 尽管已安装debuginfo,但GDB没有显示行号信息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23269498/

10-10 17:48