免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
123下一页
最近访问板块 发新帖
查看: 13788 | 回复: 21
打印 上一主题 下一主题

[C] 请教一下各位高手,为什么用gdb调试总是退出? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-07-10 16:37 |只看该作者 |倒序浏览
20可用积分
调试过程如下:
hegreas@hegreas-desktop:~/test/bin$ ./arm-linux-gdb sidd
GNU gdb 6.1.1
Copyright 2004 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.210.92:7008
Remote debugging using 192.168.210.92:7008
0x400009d0 in ?? ()
warning: Unable to find dynamic linker breakpoint function.
GDB will be unable to debug shared library initializers
and track explicitly loaded dynamic code.
(gdb) c
Continuing.

Program received signal SIGILL, Illegal instruction.
0x00009280 in _start ()
(gdb) info stack
#0  0x00009280 in _start ()
#1  0x40003bdc in ?? ()
Cannot access memory at address 0x0
(gdb) c
Continuing.

Program terminated with signal SIGILL, Illegal instruction.
The program no longer exists.
(gdb) info stack
No stack.
(gdb)


程序是个较长的多线程程序,为什么总是刚开始就退出了,到底问题出在哪里,希望各位高手帮忙。

论坛徽章:
0
2 [报告]
发表于 2008-07-10 16:41 |只看该作者
需要我做什么补充的信息,可以说下,希望大家帮帮我

论坛徽章:
0
3 [报告]
发表于 2008-07-10 16:50 |只看该作者
问题补充:
    如果使用gdb调试器时,使用:./arm-linux-gdb    而不是    ./arm-linux-gdb sidd
    其它一切不变,则可以正常运行,但是看不到源码了,没法调试

论坛徽章:
0
4 [报告]
发表于 2008-07-10 17:05 |只看该作者
加个断点 单步调

论坛徽章:
0
5 [报告]
发表于 2008-07-10 17:59 |只看该作者
编译时加 -g  可以看到源代码

论坛徽章:
36
IT运维版块每日发帖之星
日期:2016-04-10 06:20:00IT运维版块每日发帖之星
日期:2016-04-16 06:20:0015-16赛季CBA联赛之广东
日期:2016-04-16 19:59:32IT运维版块每日发帖之星
日期:2016-04-18 06:20:00IT运维版块每日发帖之星
日期:2016-04-19 06:20:00每日论坛发贴之星
日期:2016-04-19 06:20:00IT运维版块每日发帖之星
日期:2016-04-25 06:20:00IT运维版块每日发帖之星
日期:2016-05-06 06:20:00IT运维版块每日发帖之星
日期:2016-05-08 06:20:00IT运维版块每日发帖之星
日期:2016-05-13 06:20:00IT运维版块每日发帖之星
日期:2016-05-28 06:20:00每日论坛发贴之星
日期:2016-05-28 06:20:00
6 [报告]
发表于 2008-07-10 18:04 |只看该作者
原帖由 键盘老农 于 2008-7-10 17:59 发表
编译时加 -g  可以看到源代码



要想GDB调试程序,必须加-g ,和看源代码没有关系。

论坛徽章:
0
7 [报告]
发表于 2008-07-10 19:18 |只看该作者
原帖由 Godbach 于 2008-7-10 18:04 发表



要想GDB调试程序,必须加-g ,和看源代码没有关系。


加g是将代码的符号表 行号等信息写到可执行文件中
这样才可能进行源码级调试
调试完以后重编译或者strip --strip-debug

另外lz可以直接查看尸体

论坛徽章:
0
8 [报告]
发表于 2008-07-10 19:41 |只看该作者
1) 加断点,不然continue就到结尾了
2)可以N ,单步执行。

论坛徽章:
0
9 [报告]
发表于 2008-07-10 20:28 |只看该作者
1 有可能是栈崩溃
一次我把一Linux下写的程序拿VC6下边编译,由于声明在静态段的数组太大了,程序连main函数都不能进入
2 内存越界,比如你在main里调用函数A,调用函数A的时候会把main函数的地址入栈,在A里边你数组访问越界了,正好把栈上放main函数地址的那块儿写为0x0了,当A函数执行完毕,main函数出栈的时候出栈的地址是0x0,于是你的程序就跑到地址0x0去执行了
你的程序应当是上述两种情况之一

论坛徽章:
0
10 [报告]
发表于 2008-07-11 09:28 |只看该作者
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.210.92:7008
Remote debugging using 192.168.210.92:7008
0x400009d0 in ?? ()
warning: Unable to find dynamic linker breakpoint function.
GDB will be unable to debug shared library initializers
and track explicitly loaded dynamic code.
(gdb) b 1184
Breakpoint 1 at 0xaddc: file main.c, line 1184.
(gdb) c
Continuing.

Program received signal SIGILL, Illegal instruction.
0x00009280 in _start ()
(gdb)


程序从一开始的入口处就出现SIGILL信号了,“_start”应该是可执行程序的入口吧?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP