GDB 总结

好的参考:https://linux.cn/article-4302-1.html

http://darkdust.net/files/GDB%20Cheat%20Sheet.pdf


1)加 '-g' 了吗?

首先请确保在编译时加上了'-g'

如果出现找不到*.cpp文件等错误,一般是没有正确添加 -g 选项。


2)调试子进程:

set follow-fork-mode child


https://sourceware.org/gdb/onlinedocs/gdb/Forks.html


3)添加文件搜索路径:

directories some_dir/


4)GDB GUI:

install kdbg:

sudo apt-get install kdbg


你可能感兴趣的:(GDB 总结)