从 glibc 源代码生成 libc6-dbg 包

Generating libc6-dbg package from glibc source code

我有一个定制的 ARM 板。它使用 buildroot 生成所有图像。我们正在使用 glibc .. 我需要在 C 库调用中进行调试。当我 运行 gdb 下的代码时,使用 "Set Verbose On" ,它从 libc6.so 中读出符号,但是当我在 C 库调用(例如 fork )上保留断点时,并且 运行 信息 locals/args,上面写着 "No symbol Info Table"。

我需要重建 GLibc 还是需要任何其他设置..

Reading symbols from /lib/ld-linux-armhf.so.3...done.
Loaded symbols for /lib/ld-linux-armhf.so.3
Reading symbols from /lib/libpthread.so.0...done.
warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.
Loaded symbols for /lib/libpthread.so.0
Reading symbols from /lib/libc.so.6...done.
Loaded symbols for /lib/libc.so.6


(gdb) bt full
#0  0x76e19af0 in fork () from /lib/libc.so.6
No symbol table info available.
#1  0x76dded80 in _IO_proc_open@@GLIBC_2.4 () from /lib/libc.so.6
No symbol table info available.
#2  0x76ddf04c in popen@@GLIBC_2.4 () from /lib/libc.so.6

我的 libc.so 有所有调试符号。以下是 readelf -S libc.so

的片段
[71] .debug_info       PROGBITS        00000000 1277e0 00106b 00      0   0  1
  [72] .debug_abbrev     PROGBITS        00000000 12884b 0003f7 00      0   0  1
  [73] .debug_line       PROGBITS        00000000 128c42 0003e2 00      0   0  1
  [74] .debug_frame      PROGBITS        00000000 129024 002a78 00      0   0  4
  [75] .debug_str        PROGBITS        00000000 12ba9c 000360 01  MS  0   0  1
  [76] .debug_loc        PROGBITS        00000000 12bdfc 00162a 00      0   0  1
  [77] .debug_ranges     PROGBITS        00000000 12d426 0000c0 00      0   0  1
  [78] .shstrtab         STRTAB          00000000 12d4e6 000528 00      0   0  1
  [79] .symtab           SYMTAB          00000000 12da10 031700 10     80 10452  4
  [80] .strtab           STRTAB          00000000 15f110 018ed1 00      0   0  1

http://lists.busybox.net/pipermail/buildroot/2012-May/053310.html

Target binaries get striped after build, thus removing debugging info. To disabled this behaviour go to "Build options" -> "strip command for binaries on target", and select "none".

除了albfan说的,你还需要启用BR2_ENABLE_DEBUG来获取调试符号。

事实上,albfan 所说的并不完全正确:您完全可以在目标中删除二进制文件(没有调试符号),并将带有调试符号的二进制文件仅保留在暂存区中。这在进行远程调试时特别有用。

自从我们在 http://free-electrons.com/doc/training/buildroot/buildroot-slides.pdf 接受 Buildroot 培训后,幻灯片 267 及后续内容。