warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available. 原因 在网络上查询,了解到可能有两种原因导致此问题 libthread_db-1.0.so和libpthread.so的版本不匹配。 libpthread.so 被stripped。 因为libthread_db-1.0.so和libpthread.so都来源于glibc库,...
但是还是报出: warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available 看网上提供的方法: 1.确认程序使用哪种线程库,例如pthread. ---是pthread 2.确认系统中是否存在相应的libthread_db库文件 ---存在 3.如果存在的话,将 其路径添加到LD_LIBRARY...
warning: File "/lib64/libthread_db-1.0.so" auto-loading has been declined by your `auto-load safe-path' set to "/usr/share/gdb/auto-load:/usr/lib/debug:/usr/bin/mono-gdb.py". warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be av...
目前这个方案只是理论上行的通,实践上存在一个问题,gdb虽然可以正常起来运行,不过加入core file的时候会出现gdb crash, 看warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available. 应该是gdb运行依赖于libthread_db,而我们现在没有,或者版本不匹配 所以我...
warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.As it indicates, I am unable to navigate threads. I am ssh'ing to the card directly and running the gdb built for MPSS 3.2.1. ldd on the executable shows that I am...
so...done. warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available. 0x0000ffffa437f2e0 in __GI_epoll_pwait (epfd=<optimized out>, events=0xffffe988a940, maxevents=16, timeout=-1, set=0x0) at ../sysdeps/unix/sysv/linux/...
warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available. Loaded symbols for /opt/compiler/gcc-4.8.2/lib64/libpthread-2.18.so Reading symbols from /opt/compiler/gcc-4.8.2/lib64/libdl-2.18.so...(no debugging symbols found)...done. ...
看warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available. 应该是gdb运行依赖于libthread_db,而我们现在没有,或者版本不匹配 所以我们现在调试多线程的进程是不可以的
warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available. Breakpoint 1, GLWindow::createWindow (this=0x7fffffffe4a0) at /home/jd/Documents/rendtest/GLWindow.cpp:21 21if (!Window) {...
(gdb) show auto-load libthread-db Auto-loading of inferior specific libthread_db is on. /lib/libthread_db.so.1软链接指向/lib/libthread_db-1.0.so 如果缺少该库,报错如下: warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available. ...