gdb调试出现:gbd No symbol table is loaded. Use the “file“ command.
最近在linux调试gdb时出现:gbd No symbol table is loaded. Use the "file" command.这是因为在编译c/c++文件时,没有加入 -g 调试信息,类似于 gcc -g helloworld.c -o helloworld.c 这样。解决办法如下:1. gcc -g helloworld.c -o helloworld.c (C文件添加调试信息)
·
最近在linux调试gdb时出现:gbd No symbol table is loaded. Use the "file" command.
这是因为在编译c/c++文件时,没有加入 -g 调试信息,
类似于 gcc -g helloworld.c -o helloworld.c 这样。
解决办法如下:
1. gcc -g helloworld.c -o helloworld.c (C文件添加调试信息)。
2 .gdb helloworld (gdb调试)。
gdb -q helloworld(gdb调试,可以省略版本信息,页面更加简洁,推荐)。
3. 输入gdb命令 如 list 或 l(具体的调试命令)。
注:c++ 调试时把gcc 换成 g++即可。
更多推荐
已为社区贡献1条内容
所有评论(0)