Linux-GDB动态调试
It has been 775 days since the last update, the content of the article may be outdated.
1.在自己写的程序需要用GDB的时候
需要用-g 来编译
plaintext
1 | gcc test.c -g -o test |
2.
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Safety-Blog!
1.在自己写的程序需要用GDB的时候
需要用-g 来编译
1 | gcc test.c -g -o test |
2.