gdb 使用 发表于 2020-10-16 更新于 2023-03-24 参考资料 A collection of gdb tips](https://github.com/hanxinle/100-gdb-tips)) A collection of gcc tips 常用命令 补充用法1 设置运行参数.1set args <your args> c会运行到程序结束,finish 跳出 step over(快捷键 s) 进入的函数. 2 vim 编辑代码终端中输入 export EDITOR=vim 后在 gdb 中输入 edit 即可在 vim 中打开文件.