摘要:
GDBTable of Contents1 GDB 1.1 载入程序和core 1.2 断点 1.3 流程控制 1.4 查看代码 1.5 查看变量 1.6 堆栈相关 1.7 线程相关 1.8 汇编相关 1.9 插件 1 GDB1.1 载入程序和core载入程序 gdb –args ./myprogram arg1 arg2 …载入core gdb -c core.xxxx ./myprogram载入core gdb ./myprogram core.xxxxattach进程 gdb -p 1.2 断点断点到当前文件某个函数 break 断点到当前文件某行 break 断点到某个文件位置 bre 阅读全文