gdb调试工具使用方法.doc

  1. 1、本文档共18页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
gdb调试工具使用方法

一个调试示例? 源程序:tst.c 代码:? 1 #include? 2 int func(int n)? 4 {? 5? ? ? int sum=0,i;? 6? ? ? for(i=0; i? 7? ? ? {? 8? ? ? ? ? sum+=i;? 9? ? ? }? 10? ? return sum;? 11 }? 12? 13? 14 main()? 15 {? 16? ? ? int i;? 17? ? ? long result = 0;? 18? ? ? for(i=1; i =100; i++)? 19? ? ? {? 20? ? ? ? ? ? result += i;? 21? ? ? }? 22? 23? ? ? printf(result[1-100] = %d? , result );? 24? ? ? printf(result[1-250] = %d? , func(250) );? 25 }? 编译生成执行文件:(Linux下)? hchen/test cc -g tst.c -o tst? 使用GDB调试:? 代码:? hchen/test gdb tst ---------- 启动GDB? GNU gdb 5.1.1? 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 i386-suse-linux...? (gdb) l -------------------- l命令相当于list,从第一行开始例出原码。? 1 #include? 2? 3 int func(int n)? 4 {? 5 int sum=0,i;? 6 for(i=0; i? 7 {? 8 sum+=i;? 9 }? 10 return sum;? (gdb) -------------------- 直接回车表示,重复上一次命令? 11 }? 12? 13? 14 main()? 15 {? 16 int i;? 17 long result = 0;? 18 for(i=1; i =100; i++)? 19 {? 20 result += i;? (gdb) break 16 -------------------- 设置断点,在源程序第16行处。? Breakpoint 1 at 0x8048496: file tst.c, line 16.? (gdb) break func -------------------- 设置断点,在函数func()入口处。? Breakpoint 2 at 0x8048456: file tst.c, line 5.? (gdb) info break -------------------- 查看断点信息。? Num Type Disp Enb Address What? 1 breakpoint keep y 0in main at tst.c:16? 2 breakpoint keep y 0in func at tst.c:5? (gdb) r --------------------- 运行程序,run命令简写? Starting program: /home/hchen/test/tst? Breakpoint 1, main () at tst.c:17 ---------- 在断点处停住。? 17 long result = 0;? (gdb) n --------------------- 单条语句执行,next命令简写。? 18 for(i=1; i =100; i++)? (gdb) n? 20 result += i;? (gdb) n? 18 for(i=1; i =100; i++)? (gdb) n? 20 result += i;? (gdb) c --------------------- 继续运行程序,continue命令简写。? Continuing.?

文档评论(0)

juhui05 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档