调试 valgrind 生成的核心

发布于 2024-08-15 07:42:25 字数 175 浏览 7 评论 0原文

Valgrind 生成了一个 vgcore.NNNN 文件——如何使用 GDB 调试核心?我是否需要使用原始可执行文件并提供核心,还是有其他方法可以做到这一点?

使用 valgrind 作为 root 可执行文件似乎不起作用,并且直接在 GDB 中使用在 valgrind 下运行的可执行文件与核心似乎会产生错误的回溯。

Valgrind produced a vgcore.NNNN file -- how do I debug the core using GDB? Do I need to use the original executable and supply the core, or is there some other way to do it?

Using valgrind as the root executable doesn't seem to work, and using the executable that was being run under valgrind directly in GDB with the core seems to produce bad backtraces.

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

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

发布评论

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

评论(1

老子叫无熙 2024-08-22 07:42:25

这对我来说效果很好:

gdb ./a.out vgcore.21650

这就是你应该如何使用 vgcore。

如果您的程序在崩溃之前损坏了堆栈,那么显然您不会从 vgcore 获得良好的堆栈跟踪。您可能想用导致崩溃的实际 Valgrind 报告来扩展您的问题。

This works fine for me:

gdb ./a.out vgcore.21650

and that's how you are supposed to use the vgcore.

If your program corrupted stack before crashing, then obviously you wouldn't get good stack traces from vgcore. You might want to expand your question with actual Valgrind report that led to the crash.

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