调试 valgrind 生成的核心
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这对我来说效果很好:
这就是你应该如何使用 vgcore。
如果您的程序在崩溃之前损坏了堆栈,那么显然您不会从 vgcore 获得良好的堆栈跟踪。您可能想用导致崩溃的实际 Valgrind 报告来扩展您的问题。
This works fine for me:
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.