溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

gdb調(diào)試報(bào)Missing separate debuginfos

發(fā)布時(shí)間:2020-06-25 09:18:01 來(lái)源:網(wǎng)絡(luò) 閱讀:3391 作者:HF3342 欄目:軟件技術(shù)

gdb調(diào)試開(kāi)始時(shí),報(bào)錯(cuò),提示信息如下:

Detaching after fork from child process 4112.


Program exited normally.

Missing separate debuginfos, use: debuginfo-install cyrus-sasl-lib-2.1.23-15.el6_6.2.x86_64 glibc-2.12-1.149.el6_6.5.x86_64 nspr-4.10.6-1.el6_5.x86_64 nss-3.14.0.0-12.el6.x86_64 nss-softokn-freebl-3.14.3-22.el6_6.x86_64 nss-util-3.16.2.3-2.el6_6.x86_64 openldap-2.4.39-8.el6.x86_64 openssl-1.0.1e-30.el6.8.x86_64 zlib-1.2.3-29.el6.x86_64


 gdb調(diào)試報(bào)Missing separate debuginfos

yum install glibc安裝,發(fā)現(xiàn)只是安裝了一些基本庫(kù),并不包含 glibc-debuginfo,所以必須使用:

yum --nogpgcheck --enablerepo=debug install cyrus-sasl-debuginfo

yum --nogpgcheck --enablerepo=debug install glibc-debuginfo

。。。

安裝yum -y --nogpgcheck --enablerepo=debug install openssl-debuginfo

Error Downloading Packages:

  openssl-debuginfo-1.0.1e-30.el6.8.x86_64: failure: openssl-debuginfo-1.0.1e-30.el6.8.x86_64.rpm from debug: [Errno 256] No more mirrors to try


 gdb調(diào)試報(bào)Missing separate debuginfos

需要先修改“/etc/yum.repos.d/CentOS-Debuginfo.repo”文件的enable=1,即可解決這個(gè)錯(cuò)誤。

根據(jù)報(bào)錯(cuò)提示,使用yum依次安裝debug模式。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI