在gdb调试时segmentation fault问题时,遇到下面的了问题:
Program received signal SIGABRT, Aborted.
0x00007ffff73eb925
in raise (sig=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:64
64 return
INLINE_SYSCALL (tgkill, 3, pid, selftid, sig);
Missing separate debuginfos,
use: debuginfo-install libgcc-4.4.7-3.el6.x86_64
1、 修改文件/etc/yum.repos.d/CentOS-Debuginfo.repo中的enabled参数,将其值修改为1,如:vi /etc/yum.repos.d/CentOS-Debuginfo.repo
2、 使用命令:
yum install nss-softokn-debuginfo --nogpgcheck
3、 使用命令:
debuginfo-install glibc
如果出现下面的问题:
-bash: debuginfo-install: command not found
则先安装yum-utils,使用命令:
yum install yum-utils
类似的,安装gcc-debuginfo.x86_64 0:4.4.7-4.el6
使用命令:
debuginfo-install gcc 即可,或者把完整的包名输入进去也行。
转自http://houjixin.blog.163.com/blog/static/35628410201311241916314/
CentOS环境下,gdb调试中出现:Missing separate debuginfos, use: debuginfo-install.....的问题,布布扣,bubuko.com
CentOS环境下,gdb调试中出现:Missing separate debuginfos, use: debuginfo-install.....的问题
原文地址:http://www.cnblogs.com/aboutblank/p/3709082.html