新客网WWW.XKER.COM:致力做中国最专业的网络学院!
学院: 操作系统 - 网络应用 - 服务器 - 网络安全 - 工具软件 - 办公软件 - Web开发 - 数据库 - 网页设计 - 图形图像 - 媒体动画 - 硬件学堂 - 存储频道 - QQ专区
您的位置:首页 > 网络学院 > 操作系统 > Linux教程 > 正文:如何运用Gdb对ARM板上的程序进行远程调试

如何运用Gdb对ARM板上的程序进行远程调试

新客网 XKER.COM 2007-09-04 来源: kit 收藏本文

在arm板上运行 gdbserver

[root@51Board usb]# ./gdbserver 192.168.0.29:1234 arm0702_8.out

Process arm0702_8.out created; pid = 228

从服务器中等待一个请求

这个是对qte程序的调试,先运行程序再调试进程号。在PC机上程序名称一样的。

// ./gdbserver 192.168.0.29:1234 --attach 545

说明:

这里的192.168.0.29是上位PC机的IP(这个应该于ARM板上的IP在一个网段内)

1234这里规定的端口号,等下要用到的,当然这个也可以用其他的端口号

Arm0702_8.out

 

上位PC机运行 arm-linux-gdb 调试程序

[root@zieckey collieryMainSrc02]# arm-linux-gdb arm0702_8.out

GNU gdb 5.3

Copyright 2002 Free Software Foundation, Inc.

GDB is free software, covered by the GNU General Public License, and you are

welcome to change it and/or distribute copies of it under certain conditions.

Type "show copying" to see the conditions.

There is absolutely no warranty for GDB. Type "show warranty" for details.

This GDB was configured as "--host=i686-pc-linux-gnu --target=arm-linux"...

(gdb)

上位PC机连接到ARM板

[root@zieckey collieryMainSrc02]# arm-linux-gdb arm0702_8.out

GNU gdb 5.3

Copyright 2002 Free Software Foundation, Inc.

GDB is free software, covered by the GNU General Public License, and you are

welcome to change it and/or distribute copies of it under certain conditions.

Type "show copying" to see the conditions.

There is absolutely no warranty for GDB. Type "show warranty" for details.

This GDB was configured as "--host=i686-pc-linux-gnu --target=arm-linux"...

(gdb) target remote 192.168.0.50:1234

Remote debugging using 192.168.0.50:1234

0x40001550 in ?? ()

这时ARM板上的信息应该是这样的:

[root@51Board usb]# ./gdbserver 192.168.0.29:1234 arm0702_8.out

Process arm0702_8.out created; pid = 228

Remote debugging from host 192.168.0.29

现在就已经建立其了PC机通ARM板山的连接了。

那么我们就可以像调试本地程序一样调试ARM板上程序。

例如:

(gdb) list

19 //#include "cmaininterfacewidget.h"

20 //#include "headers.h"

21

22 #include "cwidgetmanager.h"

23 #define _DEBUG_

24 #define _DEBUGCDatabase_

25

26 int main( int argc, char ** argv )

27 {

28 QApplication app( argc, argv );

(gdb) break 28

Breakpoint 1 at 0xf25c: file main.cpp, line 28.

 

(gdb) target remote 192.168.0.50:1234

Remote debugging using 192.168.0.50:1234

0x4011dc30 in ?? ()

Error while mapping shared library sections:

/usr/qpe/lib/libts-0.0.so.0: 没有那个文件或目录.

Error while mapping shared library sections:

/usr/qpe/lib/libqwt.so.4: 没有那个文件或目录.

Error while mapping shared library sections:

/usr/qpe/lib/libsqlite3.so.0: 没有那个文件或目录.

Error while mapping shared library sections:

/usr/qpe/lib/libsqlitedataset.so.0: 没有那个文件或目录.

Error while mapping shared library sections:

/usr/qpe/lib/libqte.so.2: 没有那个文件或目录.

Error while mapping shared library sections:

/lib/libstdc++.so.5: 没有那个文件或目录.

Error while mapping shared library sections:

/usr/qpe/lib/variance.so: 没有那个文件或目录.

Error while mapping shared library sections:

/usr/qpe/lib/dejitter.so: 没有那个文件或目录.

Error while mapping shared library sections:

/usr/qpe/lib/linear.so: 没有那个文件或目录.

Error while reading shared library symbols:

/usr/qpe/lib/libts-0.0.so.0: 没有那个文件或目录.

Error while reading shared library symbols:

/usr/qpe/lib/libqwt.so.4: 没有那个文件或目录.

Error while reading shared library symbols:

/usr/qpe/lib/libsqlite3.so.0: 没有那个文件或目录.

Error while reading shared library symbols:

/usr/qpe/lib/libsqlitedataset.so.0: 没有那个文件或目录.

Error while reading shared library symbols:

/usr/qpe/lib/libqte.so.2: 没有那个文件或目录.

Error while reading shared library symbols:

/lib/libstdc++.so.5: 没有那个文件或目录.

Error while reading shared library symbols:

/usr/qpe/lib/variance.so: 没有那个文件或目录.

Error while reading shared library symbols:

/usr/qpe/lib/dejitter.so: 没有那个文件或目录.

Error while reading shared library symbols:

/usr/qpe/lib/linear.so: 没有那个文件或目录.

(gdb) quit

上面的那些错误是因为在ARM上指定路径有的库文件在PC上没有而引起的。

收藏】 【评论】 【推荐】 【投稿】 【打印】 【关闭
发表评论
要记得去论坛讨论,点击注册新会员匿名评论
评论内容:不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
阅读排行
随机推荐
实用信息推荐