博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
顺藤摸瓜的解决GDB的DEBUG中出现的小问题
阅读量:5786 次
发布时间:2019-06-18

本文共 930 字,大约阅读时间需要 3 分钟。

1,在运行GDB的R指令时,报错。。。。

(gdb) r

Starting program: /root/tst

Breakpoint 1, main () at tst.c:17

17              long result=0;

Missing separate debuginfos, use: debuginfo-install glibc-2.12-1.80.el6_3.6.x86_64

2,按提示,运行debuginfo-install glibc-2.12-1.80.el6_3.6.x86_64时报错:

debuginfo-install glibc-2.12-1.80.el6_3.6.x86_64

-bash: debuginfo-install: command not found

3,网上搜索,找到有用的。

 

For this to work, you need to have the debuginfo repository defined.  For CentOS 5, put the following in /etc/yum.repos.d/CentOS-Base-debuginfo.repo:

[base-debuginfo]name=CentOS-$releasever -DebugInfobaseurl=http://debuginfo.centos.org/$releasever/$basearch/gpgcheck=0enabled=0protect=1priority=1 ~~~~~~~ debuginfo-install is part of the yum-utils package.  If you don't know what package contains a command, you can try something like yum install /usr/bin/debuginfo-install and yum will find it for you (assuming that the package you want is in /usr/bin) ~~~~~~~~ 4,问题解决

转载地址:http://cyxyx.baihongyu.com/

你可能感兴趣的文章
Exception的妙用
查看>>
基于浏览器的开源“管理+开发”工具,Pivotal MySQL*Web正式上线!
查看>>
JavaScript(五):变量的作用域
查看>>
知识图谱在互联网金融中的应用
查看>>
MySQL 到底能不能放到 Docker 里跑?
查看>>
wpf 自定义窗口,最大化时覆盖任务栏解决方案
查看>>
【docker】关于docker 中 镜像、容器的关系理解
查看>>
information_schema系列五(表,触发器,视图,存储过程和函数)
查看>>
瓜子二手车的谎言!
查看>>
Python基础:搭建开发环境(1)
查看>>
[转]使用Git Submodule管理子模块
查看>>
DICOM简介
查看>>
Scrum之 Sprint计划会议
查看>>
最小化托盘程序
查看>>
List<T> to DataTable
查看>>
[Java]Socket和ServerSocket学习笔记
查看>>
stupid soso spider
查看>>
在项目中引入领域驱动设计的经验
查看>>
MicroProfile变成了Eclipse MicroProfile
查看>>
FreeWheel业务系统微服务化过程经验分享
查看>>