如何使用gdb进行调试?

14

我正在尝试使用

breakpoint()

在我的程序中添加断点。

b {line number}

但是我总是收到一个错误,错误信息如下:

No symbol table is loaded.  Use the "file" command.

我应该做什么?


2
这里有一份很好的GDB命令表。你会找到关于GDB的所有需要了解的内容。 - Phong
5个回答

31

这是一个针对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选项进行编译。 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)提示符下键入help以获取所有有效命令的列表和描述。


6

使用可执行文件作为参数启动gdb,这样它就知道你想调试哪个程序:

gdb ./myprogram

然后您应该能够设置断点。例如:
b myfile.cpp:25
b some_function

5
不要忘记使用调试信息编译(gcc有“-g”参数)。 - wilhelmtell

4

编译时请确保使用了-g选项。


3

您需要在运行gdb时或使用file命令时告诉gdb可执行文件的名称:

$ gdb a.out

或者

(gdb) file a.out

1

在编译程序时,您需要使用-g或-ggdb选项。

例如:gcc -ggdb file_name.c;gdb ./a.out


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接