如何使用 gdb 进行调试?
Posted
技术标签:
【中文标题】如何使用 gdb 进行调试?【英文标题】:How to debug using gdb? 【发布时间】:2011-01-05 09:03:00 【问题描述】:我正在尝试在我的程序中添加断点
b line number
但我总是收到一条错误消息:
No symbol table is loaded. Use the "file" command.
我该怎么办?
【问题讨论】:
yolinux.com/TUTORIALS/GDB-Commands.html 这是一个很好的 gdb 命令表。您将找到您需要了解的有关 gdb 的所有信息。 【参考方案1】:这是 gdb 的快速入门教程:
/* test.c */
/* Sample program to debug. */
#include <stdio.h>
#include <stdlib.h>
int
main (int argc, char **argv)
if (argc != 3)
return 1;
int a = atoi (argv[1]);
int b = atoi (argv[2]);
int c = a + b;
printf ("%d\n", c);
return 0;
使用-g3
option 编译。 g3
包含额外信息,例如程序中存在的所有宏定义。
gcc -g3 -o test test.c
将现在包含调试符号的可执行文件加载到 gdb 中:
gdb --annotate=3 test.exe
现在您应该会在 gdb 提示符下找到自己。在那里你可以向 gdb 发出命令。 假设您想在第 11 行放置一个断点并逐步执行,打印局部变量的值 - 以下命令序列将帮助您执行此操作:
(gdb) break test.c:11
Breakpoint 1 at 0x401329: file test.c, line 11.
(gdb) set args 10 20
(gdb) run
Starting program: c:\Documents and Settings\VMathew\Desktop/test.exe 10 20
[New thread 3824.0x8e8]
Breakpoint 1, main (argc=3, argv=0x3d5a90) at test.c:11
(gdb) n
(gdb) print a
$1 = 10
(gdb) n
(gdb) print b
$2 = 20
(gdb) n
(gdb) print c
$3 = 30
(gdb) c
Continuing.
30
Program exited normally.
(gdb)
简而言之,以下命令就是您开始使用 gdb 所需的全部内容:
break file:lineno - sets a breakpoint in the file at lineno.
set args - sets the command line arguments.
run - executes the debugged program with the given command line arguments.
next (n) and step (s) - step program and step program until it
reaches a different source line, respectively.
print - prints a local variable
bt - print backtrace of all stack frames
c - continue execution.
在 (gdb) 提示符下键入帮助以获取所有有效命令的列表和说明。
【讨论】:
【参考方案2】:以可执行文件作为参数启动gdb,让它知道你要调试哪个程序:
gdb ./myprogram
那么你应该可以设置断点了。例如:
b myfile.cpp:25
b some_function
【讨论】:
别忘了带调试信息编译(gcc有“-g”参数)。【参考方案3】:确保在编译时使用了 -g 选项。
【讨论】:
【参考方案4】:您需要在运行 gdb 或使用 file 命令时告诉 gdb 可执行文件的名称:
$ gdb a.out
或
(gdb) file a.out
【讨论】:
【参考方案5】:您需要在程序编译时使用 -g 或 -ggdb 选项。
例如,gcc -ggdb file_name.c ; gdb ./a.out
【讨论】:
以上是关于如何使用 gdb 进行调试?的主要内容,如果未能解决你的问题,请参考以下文章