4

我为 arm 编译了 gdbserver 7.6:

cd /gdb-7.6-src/gdb/gdbserver
./configure --target=arm-linux --host=arm-linux
make CC=/path/to/cross-compiler-gcc

然后我为 arm 编译了 gdb 7.6:

cd /gdb-7.6-src/
./configure --target=arm-linux --prefix=/opt/gdb-arm/install/
make && make install

我编译了我的简单应用程序:

/path/to/cross-compiler-gcc hello.c -g -o hello

我在板上复制了 gdbserver 和交叉编译的应用程序。从我的电脑(x86-pc-linux)我运行:

gdb hello
(gdb) set target-async on
(gdb) tvariable $c
(gdb) actions
>teval $c=$c+1
>end
(gdb) break main
(gdb) target remote <ipaddr>:<port>
[Thread 1585] #1 stopped.
0x40000800 in ?? ()
Cannot access memory at address 0x0
(gdb) continue &
(gdb) tstart
Target does not support this command.
(gdb) tstatus
Target does not support this command.

在tstart命令之前,行为是“正常的” :我可以根据需要调试应用程序,但无法开始跟踪应用程序。

问题是:gdbserver 支持 arm 的跟踪点还是仅支持 x86/amd_64?

4

1 回答 1

0

我正在搜索相同的东西,我在 GDB 在线文档 webdocs 中找到的内容现在不支持任何 Archs。

检查更多信息: https ://sourceware.org/gdb/onlinedocs/gdb/Tracepoints.html

报价:

此功能在远程存根中实现;但是,在撰写本文时,与 GDB 一起分发的存根均不支持跟踪点

于 2014-06-09T14:58:25.320 回答