1

我使用 openSUSE 作为我的操作系统和 gdb 7.5。我想用 gdb 和断点调试我的程序。但是当我下一个断点,然后运行我的程序时,gdb 会通知我如下:

Error in re-setting breakpoint 1: malformed linespec error: unexpected string, ".cpp"

在我所有的程序中都是一样的。此外,当运行到断点时,程序根本不会停止。谁能告诉我出了什么问题?

我下载了最新的gdb并安装它,以前的消息消失了,但是当运行gdb时它告诉我:

warning: Could not load shared library symbols for linux-gate.so.1. Do you need "set solib-search-path" or "set sysroot"?

如何解决这个问题?

4

2 回答 2

1

我使用“b + linenumber”

这定义了一个相对于当前行的断点,参见 als Specifying a Location。使用下面您评论中的代码,以下内容将起作用:

$ gdb ./main
(gdb) b +5
Breakpoint 1 at 0x40139c: file main.cpp, line 6.
(gdb) run
[New Thread 1528.0x1930]

Breakpoint 1, main () at main.cpp:5
5           while(scanf("%d%d",&a,&b)!=EOF)

除非有充分的理由指定相对行号,否则我建议您使用绝对行号或函数名称:

(gdb) b main
Breakpoint 1 at 0x401395: file main.cpp, line 3.
(gdb) b main.cpp:6
Breakpoint 1 at 0x40139c: file main.cpp, line 6.
于 2013-01-23T14:02:25.027 回答
0

gdb 7.5 中有一个已知错误,当​​源文件名以十进制数字开头时,调试器无法解析 linespec。有关详细信息,请参阅此消息

尝试重命名文件并从您的分发存储库更新 gdb。如果错误仍然存​​在,请向您的发行版维护人员提交错误。

查看提交给 bugzilla的错误报告中的示例会话。gdb

(gdb) b 3
Breakpoint 1 at 0x4004c3: file 2.c, line 3.
(gdb) r
Starting program: /home/teawater/tmp/a.out 
Error in re-setting breakpoint 1: malformed linespec error: unexpected string, ".c"
Error in re-setting breakpoint 1: malformed linespec error: unexpected string, ".c"
Error in re-setting breakpoint 1: malformed linespec error: unexpected string, ".c"
Error in re-setting breakpoint 1: malformed linespec error: unexpected string, ".c"
于 2013-01-23T15:10:45.450 回答