在 gdb 中保存核心文件
是否可以使用 gdb 保存/转储核心文件?有时我想保存文件以便稍后分析。
Is it possible to save/dump core file using gdb? Sometimes I want to save file to analyze it later.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 gdb 中发出“generate-core-file”命令。
Issue the 'generate-core-file' command in gdb.
您还可以使用
gcore
来生成核心。You can also use
gcore <pid>
to produce cores.