当前位置: 技术问答>linux和unix
为什么我在linux中输入gdb调试可执行文件没有用呢?(图)
来源: 互联网 发布时间:2017-04-15
本文导语: 在命令行中输入gdb test后提示: No symbol table is loaded . Use the "file" command. | 少了参数当然不行。应该这样: #gcc -g hello.c -o hello #gdb hello | 编译时有加-g选项么?
在命令行中输入gdb test后提示:
No symbol table is loaded . Use the "file" command.
|
少了参数当然不行。应该这样:
#gcc -g hello.c -o hello
#gdb hello
#gcc -g hello.c -o hello
#gdb hello
|
编译时有加-g选项么?