如何分析GDB的coredump文件。
答案 0 :(得分:0)
GDB可以帮助您入门:
$ gdb --help
This is the GNU debugger. Usage:
gdb [options] [executable-file [core-file or process-id]]
gdb [options] --args executable-file [inferior-arguments ...]
[snip extended docs]
所以,你会像这样调用它:
gdb myprog core
然后GDB将以通常的方式启动,但状态就好像你已经停在断点处。然后,您可以使用“打印”,“检查”,“列表”,“回溯”,“向上”,“向下”等来调查导致崩溃的原因。
实际上,您可以使用除“继续”,“步骤”,“下一步”或任何其他需要实际运行程序的GDB命令。