码迷,mamicode.com
首页 > 系统相关 > 详细

linux下如何远程调试busybox?

时间:2020-02-19 19:20:11      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:linux   server   静态链接   优化   ESS   com   str   上启   ant   

1. 交叉编译busybox

    1.1 使能选项CONFIG_STATI(静态链接)
    1.2 使能选项CONFIG_DEBUG(编译时加入调试信息)
    1.3 使能选项CONFIG_DEBUG_PESSIMIZE(禁止优化)

2. 在目标机上启动代理gdbserver
    $ gdbserver :<port> busybox_unstripped hwclock (如 $gdbserver :2222 busybox_unstripped hwclock)

3. 在宿主机上启动your-cross-gdb
    $ your-cross-gdb busybox_unstripped
    (gdb) target remote <ip>:<port>
    (gdb) b hwclock_main
    (gdb) c

linux下如何远程调试busybox?

标签:linux   server   静态链接   优化   ESS   com   str   上启   ant   

原文地址:https://www.cnblogs.com/dakewei/p/12332483.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!