gdb - 为远程目标生成核心文件?

发布于 2024-12-18 15:38:49 字数 194 浏览 1 评论 0原文

我正在使用适用于 ARM 的 Codesourcery 版本的 gdb(即 arm-none-eabi-gdb)进行调试,并尝试生成核心文件以供以后检查。 OpenOCD 是我的 GDB 目标。当我运行“gcore”或“generate-core-file”时,所有 gdb 都会告诉我“无法创建 corefile”。有什么建议吗?一般来说,是否可以对远程目标进行核心转储?

I'm debugging with the Codesourcery version of gdb for ARM (i.e. arm-none-eabi-gdb) and attempting to generate a corefile for later inspection. OpenOCD is my GDB target. All gdb tells me when I run 'gcore' or 'generate-core-file' is "Can't create corefile". Any suggestions? In general is it possible to do a core dump with a remote target?

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

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

发布评论

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

评论(1

何处潇湘 2024-12-25 15:38:49

这似乎还不可能,但 GDB 邮件列表上有一些有希望的讨论
此处此处 org/ml/gdb-patches/2011-12/msg00012.html" rel="noreferrer">此处。作为替代方案,您也许可以尝试以下方法?

dump memory filename.bin start_addr end_addr
restore filename.bin binary start_addr

在其中适当填写 start_addr 和 end_addr 。您必须手动保存寄存器。

It doesn't seem possible yet, but there is some promising discussion on the GDB mailing list
here and here. As an alternative maybe you could try the following?

dump memory filename.bin start_addr end_addr
restore filename.bin binary start_addr

where you fill in start_addr and end_addr appropriately. You'd have to save registers by hand.

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