你如何使用gdb?
我决定了解我们的 C/C+ *nix 实践者如何使用 gdb 调试器.
I decided to find out how our C/C+ *nix practitioners use the gdb debugger.
这是我通常使用的:
- b - break filename.c:line #, function, filename.cpp:function, className::Member
- n, c, s -- 下一步继续
- gdb程序名=>设置断点==>运行[参数列表](我这样做是为了在程序启动前设置断点)
- l - 列出周围的源代码.
- 附加进程ID6 休息 [地点]
- gdb programName corefile.core(检查应用崩溃的原因)
- 我有时也会在退出函数(break exit)处设置断点来检查程序堆栈
- info b 检查所有断点
- 清除[断点列表]
你如何使用它?
推荐答案
我认为最有用的 gdb 命令(除了所有已经列出的):
Most useful gdb commands in my opinion (aside from all already listed):
- 线程信息 - 关于线程的信息
- 线程N - 切换到线程N
- catch throw - 中断任何抛出的异常.当您仅在堆栈展开后发现错误时很有用.
- printf,print - 检查所有表达式,printf 接受 C 样式格式说明符
- info threads - information about threads
- thread N - switch to thread N
- catch throw - break on any thrown exception. Useful when you caught the bug only after the stack unwound.
- printf,print - examine any and all expressions, printf accepts C-style formatting specifiers
最后,如果通过慢速链接进行调试,文本 UI 可能会派上用场.要使用它,请使用 --tui
命令行开关启动 gdb.
Finally, if debugging over a slow link, the text UI might be of use. To use it, start gdb with the --tui
command-line switch.
相关文章