增加 GDBServer 的使用.
Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
parent
2531fa3e6f
commit
699fc65ff2
|
@ -0,0 +1,22 @@
|
|||
# GDBServer 的使用
|
||||
|
||||
GDBServer 用于与 GDB 配合工作,以实现远程调试。在 Host 上开发的程序,运行于 Target/Remote 端,因此 GDBServer 也运行于 Target/Remote 端进行监听,GDB 运行于 Host 端实现远程调试。
|
||||
|
||||
## Target/Remote 端
|
||||
|
||||
gdbserver 的使用非常简单,只要在某个端口上开启监听就可以:
|
||||
|
||||
```bash
|
||||
gdbserver [listen ip]:<listen port> <program>
|
||||
```
|
||||
|
||||
## Host 端
|
||||
|
||||
Host 端需要先连接 Target/Remote:
|
||||
|
||||
```bash
|
||||
gdb
|
||||
(gdb) target remote [remote ip]:<remote port>
|
||||
```
|
||||
|
||||
之后就可以像在本地调试那样使用 GDB 了。
|
Loading…
Reference in New Issue