如何使用gdb调试?

Laz*_*zer 12 c gdb

我试图在我的程序中添加一个断点

b {line number}
Run Code Online (Sandbox Code Playgroud)

但我总是得到一个错误,上面写着:

No symbol table is loaded.  Use the "file" command.
Run Code Online (Sandbox Code Playgroud)

我该怎么办?

Vij*_*hew 26

这是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;
}
Run Code Online (Sandbox Code Playgroud)

使用-g选项编译:

gcc -g3 -o test test.c
Run Code Online (Sandbox Code Playgroud)

将可执行文件(现在包含调试符号)加载到gdb中:

gdb --annotate=3 test.exe 
Run Code Online (Sandbox Code Playgroud)

现在你应该发现自己在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) 
Run Code Online (Sandbox Code Playgroud)

简而言之,您只需使用以下命令即可开始使用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.
Run Code Online (Sandbox Code Playgroud)

在(gdb)提示符下键入help以获取所有有效命令的列表和描述.


sth*_*sth 6

以可执行文件作为参数启动gdb,以便它知道要调试哪个程序:

gdb ./myprogram
Run Code Online (Sandbox Code Playgroud)

然后你应该能够设置断点.例如:

b myfile.cpp:25
b some_function
Run Code Online (Sandbox Code Playgroud)

  • 并且不要忘记使用调试信息进行编译(gcc具有"-g"参数). (5认同)