如果缺少单独的debuginfos,请使用:debuginfo-install glibc-2.17-157.el7_3.1.x86_64

时间:2017-05-15 14:57:22

标签: debugging gdb redhat yum

我知道这个问题已在另一个帖子中得到解答,但我尝试了其他主题中给出的所有解决方案,包括 -

搜索包裹, 试图安装包, 安装yum-utils 和debuginfo-install glibc

最后,我甚至在/etc/yum.repos.d下的redhat.repo中设置了enabled = 1和gpgcheck = 0,还有什么办法让我摆脱这个错误?

我要做的是,使用共享对象库调试程序(使用gdb)。程序和.so文件都在同一台服务器(Redhat Maipo)上编译,我仍然看到这个错误。我不能单步执行代码 - 或两者无关?

1 个答案:

答案 0 :(得分:3)

  

我仍然看到这个错误。

这不是错误。

  

我不能逐步完成代码 - 或两者无关?

您想要介绍哪些代码?

缺少 getReservationData() { if ( this.props.reservationListStatus === "Previous Reservations" ) { this.setState({ dataSource: ds.cloneWithRows(reservationData.previous) }) } else { this.setState({ dataSource: ds.cloneWithRows(reservationData.current) }) } console.log(this.state) } 只会阻止您单步执行GLIBC。如果您试图单步执行的代码是您自己编译的代码(您的问题所暗示的正是您正在尝试的代码),那么安装它将无济于事。