Saving core file in gdb

前端 未结 2 753
清歌不尽
清歌不尽 2021-01-30 02:54

Is it possible to save/dump core file using gdb? Sometimes I want to save file to analyze it later.

相关标签:
2条回答
  • 2021-01-30 03:24

    Issue the 'generate-core-file' command in gdb.

    (gdb) help generate-core-file
    Save a core file with the current state of the debugged process.
    Argument is optional filename.  Default filename is 'core.<process_id>'.
    (gdb) break main
    Breakpoint 1 at 0x400e0b: file utils/udec.c, line 36.
    (gdb) r
    Starting program: /home/nos/build/utils/udec
    
    Breakpoint 1, main (argc=1, argv=0x7fffffffe9a8) at utils/udec.c:36
    36              int fileargc = 1;
    (gdb) generate-core-file
    Saved corefile core.7336
    
    0 讨论(0)
  • 2021-01-30 03:41

    You can also use gcore <pid> to produce cores.

    0 讨论(0)
提交回复
热议问题