Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1136374
  • 博文数量: 276
  • 博客积分: 8317
  • 博客等级: 少将
  • 技术积分: 2329
  • 用 户 组: 普通用户
  • 注册时间: 2006-09-12 08:17
个人简介

http://ads.buzzcity.net/adpage.php?partnerid=40096

文章分类

全部博文(276)

文章存档

2013年(1)

2012年(38)

2011年(102)

2010年(85)

2009年(45)

2008年(5)

分类: LINUX

2010-03-12 21:58:58

在Android系统的emulator里,可以有两种方式来使用Gdb调试:直接利用Gdb调试和使用GdbServer进行调试。

1. 直接用本地Gdb进行调试

1> 从下面的链接中下载Android调试包,它是用Android的toolchain编译好的二进制文件:

     

2> 解压调试包,然后把gdb上传到你的emulator 中,当然如果你有真机,也可以这样调试:

   $adb push gdb /data

3> 利用adb连接到emulator

   $adb shell

   运行gdb,

   # /data/gdb

会出现下面的信息:

dlopen failed on 'libthread_db.so.1' - libthread_db.so.1: cannot open shared object file: No such file or directory
GDB will not be able to debug pthreads.

GNU gdb 6.7
Copyright (C) 2007 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "--host=arm-none-linux-gnueabi --target=".
(gdb)

4> 然后你就可以像以前用gdb那样对程序进行调试了。


2. 利用Gdb Server进行调试:

1> android源代码里面已经包含了gdbserver的二进制文件。放在prebuilt/android-arm/gdbserver/下面。如果手头上没有android源代码,可以从下面的链接中下载针对Android的Gdb Server

   

2> 把下载的Gdb Server安装到你的emulator 中

    1)、 启动emulator

    2)、下载Gdb Server到你的emulator

    打开一个终端,运行:

    $ adb shell
    #cd data
    在另外一个终端里运行:
    $ adb push gdbserver /data

    这样通过Android自己的adb,把gdbserver 下载到emulator 中了。
3> 运行gdbserver :

     # /data/gdbserver 10.0.2.2:1234 [args...] 需要调试的程序

4> 回到另一终端,映射端口:

       $telnet localhost 5554

       telnet到emulator 中,运行下面的命令:

      redir add tcp:1234:1234

5> 在第三个终端中运行 gdb:

       $gdb test

       test 是你要调试的程序,然后在gdb命令行运行:

       (gdb) target remote localhost:1234

       然后你就可以像以前用gdb那样进行程序调试了。


阅读(1269) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~