如何让 yum 也安装调试符号?
yum install libevent-devel
如何让它也安装调试符号?
yum install libevent-devel
How to make it also install debug symbols??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
yum install libevent-devel
如何让它也安装调试符号?
yum install libevent-devel
How to make it also install debug symbols??
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
有一个帮助程序脚本 debuginfo-install 可以找到适当的包,但您仍然需要向其提供(基本)包名称。
注意:
dnf
(取代了yum
)具有相同的帮助程序脚本(在dnf-plugins-core
中);最新 Fedora 上的 gdb(至少)会在为您加载时枚举整个列表。There's a helper script debuginfo-install that will find the appropriate packages, but you still need to feed it the (base) package name(s).
Note:
dnf
(which replacedyum
) has the same helper script (indnf-plugins-core
); andgdb
on recent Fedoras (at least) will enumerate the entire listing when it's loaded for you.如果您提到knotify给您一条消息说您没有调试符号,那么您需要做的就是安装适当的app-debuginfo包。
我通常使用 yumex,但您可以按照以下方式进行老式操作:
您可能还必须手动搜索堆栈跟踪以查找任何具有 (??) 的行
,然后手动查找并安装 debuginfo 包
希望有帮助!
If you refer to the knotify giving you a message that you do not have debug symbols, then all you need to do is install the appropriate app-debuginfo package.
I typically use yumex, but you can do it oldschool as follows:
You might also have to manually search the stack trace for any lines that have (??)
and then manually find and install the debuginfo packages
Hope that helps!