yum cannot install required debug info

General support questions
Post Reply
wizard_2015
Posts: 1
Joined: 2015/08/27 04:11:03

yum cannot install required debug info

Post by wizard_2015 » 2015/08/27 04:19:58

Using CentOS 6.7
I am attempting to debug some application and gdb gives me hints that some debug infos are missing, for example:

Code: Select all

Missing separate debuginfo for /lib64/libpthread.so.0                                                                                                                       
Try: yum --enablerepo='*-debug*' install /usr/lib/debug/.build-id/a3/5053d76a6b7bd91d2ee58cc024d8ef697ce977
I already have debug repos configured in the /etc/yum.repos.d and already was using debuginfo-install to install some debug infos.

However attempt to install the debug info as suggested above by the gdb have not succeeded:

Code: Select all

[root@localhost investigation]# yum --enablerepo='*-debug*' install /usr/lib/debug/.build-id/a3/5053d76a6b7bd91d2ee58cc024d8ef697ce977
Loaded plugins: auto-update-debuginfo, fastestmirror, refresh-packagekit, security
Setting up Install Process
Loading mirror speeds from cached hostfile
 * base: mirror.besthosting.ua
 * epel: epel.besthosting.ua
 * epel-debuginfo: epel.besthosting.ua
 * epel-testing-debuginfo: epel.besthosting.ua
 * extras: mirror.besthosting.ua
 * updates: mirror.besthosting.ua
No package /usr/lib/debug/.build-id/a3/5053d76a6b7bd91d2ee58cc024d8ef697ce977 available.
Error: Nothing to do
Seems like it is missing from repository.
Is there any way to install that particular debug info?

Post Reply