如何让 yum 也安装调试符号?

发布于 2024-10-29 03:03:21 字数 72 浏览 0 评论 0原文

yum install libevent-devel

如何让它也安装调试符号?

yum install libevent-devel

How to make it also install debug symbols??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不疑不惑不回忆 2024-11-05 03:03:21

有一个帮助程序脚本 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 replaced yum) has the same helper script (in dnf-plugins-core); and gdb on recent Fedoras (at least) will enumerate the entire listing when it's loaded for you.

她说她爱他 2024-11-05 03:03:21

如果您提到knotify给您一条消息说您没有调试符号,那么您需要做的就是安装适当的app-debuginfo包。

我通常使用 yumex,但您可以按照以下方式进行老式操作:

yum search app
yum install app-debuginfo

您可能还必须手动搜索堆栈跟踪以查找任何具有 (??) 的行

#6  0xb7975bdc in ?? () from /usr/lib/libkmailprivate.so.4

,然后手动查找并安装 debuginfo 包

yum provides "/usr/lib/libkmailprivate.so.4"
yum install found-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:

yum search app
yum install app-debuginfo

You might also have to manually search the stack trace for any lines that have (??)

#6  0xb7975bdc in ?? () from /usr/lib/libkmailprivate.so.4

and then manually find and install the debuginfo packages

yum provides "/usr/lib/libkmailprivate.so.4"
yum install found-debuginfo

Hope that helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文