6

我正在运行我的应用程序的 ARM 板上运行基于 OpenEmbedded 的 Linux。我曾经运行内核 2.6.35、gdb 6.8 和 gcc 4.3。最近我将系统更新到内核 2.6.37、gdb 7.4(也尝试过 7.3)和 gcc 4.6。

现在,我的应用程序无法再被调试(在 ARM 板上),每次我尝试在 gdb 中运行它时,我都会收到错误“gdb:找不到新线程:通用错误”。该应用程序使用 pthreads 并链接 pthreads(readelf 将 libpthread.so.0 列为依赖项)。到目前为止,我发现的建议解决方案都建议链接到我已经在做的 pthread。我发现的另一个建议是使用 LD_PRELOAD=/lib/libpthread.so.0 这对我没有任何影响。

调试应用程序的 x86 版本没有问题。

编辑:为了回答第一个答案中提出的问题,我在目标(ARM)上使用 gdb,即没有跨 gdb。我也没有剥离 libpthread.so.0 (/lib/libpthread-2.9.so: ELF 32-bit LSB shared object, ARM, version 1 (SYSV), dynamiclinked (uses shared libs), for GNU/Linux 2.6. 16,未剥离)。glibc 保持在 2.9 版本,更新涉及重新编译整个 linux 映像

EDIT2:删除 /lib/libthread-db* 允许调试(随之而来的警告和显然某些功能将不起作用)

EDIT3:使用 set debug libthread-db 1 我得到:

Starting program: /home/root/app
Trying host libthread_db library: libthread_db.so.1.
Host libthread_db.so.1 resolved to: /lib/libthread_db.so.1.
td_ta_new failed: application not linked with libthread
thread_db_load_search returning 0
Trying host libthread_db library: libthread_db.so.1.
Host libthread_db.so.1 resolved to: /lib/libthread_db.so.1.
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/libthread_db.so.1".
warning: Unable to set global thread event mask: generic error
Warning: find_new_threads_once: find_new_threads_callback: cannot get thread info: generic error
Found 0 new threads in iteration 0.
Warning: find_new_threads_once: find_new_threads_callback: cannot get thread info: generic error
Found 0 new threads in iteration 1.
Warning: find_new_threads_once: find_new_threads_callback: cannot get thread info: generic error
Found 0 new threads in iteration 2.
Warning: find_new_threads_once: find_new_threads_callback: cannot get thread info: generic error
Found 0 new threads in iteration 3.
thread_db_load_search returning 1
Warning: find_new_threads_once: find_new_threads_callback: cannot get thread info: generic error
Found 0 new threads in iteration 0.
Cannot find new threads: generic error
(gdb) Write failed: Broken pipe
4

1 回答 1

8

此错误有两个常见原因:

  1. libpthread.so.0您在和之间存在不匹配libthread_db.so.1
  2. 你已经剥离libpthread.so.0

您的信息并不完全清楚:

  1. 您是否使用跨 GDB 从 x86 主机调试在 ARM 上运行的应用程序?
  2. glibc除了更新内核等之外,您是否更新(或重建)了?

如果您已剥离libpthread.so.0则不要这样做-libthread_db需要它被剥离。

如果您正在交叉调试,请确保libthread_db.so.1在主机glibc上重建以匹配目标。

更新:

不交叉调试
没有剥离 libpthread

因此,您的 GDB 中的某些内容或glibc似乎已损坏。你可以试着看看那是什么

  1. 把移除的东西放libthread_db回去,和
  2. (gdb) set debug libthread-db 1
  3. (gdb) run

更新 2:

警告:无法设置全局线程事件掩码:一般错误

这意味着 GDB 能够td_ta_set_event在 libthread_db 中查找函数并调用它,但该函数返回错误。发生这种情况的一种方法是,如果 GDB 无法__nptl_threads_eventslibpthread.so.0. 此命令产生什么:

nm /lib/libpthread.so.0 | grep __nptl_threads_events

如果该命令产生输出,例如:

000000000021c294 b __nptl_threads_events

那么我不确定还有什么失败的。您可能必须调试 GDB 本身才能弄清楚发生了什么。

另一方面,如果grep上面没有产生输出,那么这是您的工具链的问题:您必须弄清楚为什么该变量没有出现在您的 rebuilt 中libpthread.so.0

于 2012-06-01T03:54:02.123 回答