发布时间:2013-11-25 13:59:15
这里只是一个摘要。具体的细节还需要去看manual。 1 info 用来描述你的程序的状态,比如info b就是显示出当前的程序的所有断点. 2 set 用来设置一些环境变量的值,比如set prompt $. 3 show用来描述gdb自己的状态. 编译要用-g选项. 然后用gdb +程序名,或者直接gdb后,用file + 文件名加载程序..........【阅读全文】
发布时间:2013-11-25 13:22:55
1、nm [options] file 列出file中的所有符号 [option] -c 将符号转化为用户级的名字 -s 当用于.a文件即静态库时,输出把符号名映射到定义该符号的模块或成.........【阅读全文】
发布时间:2013-11-25 12:02:23
怎么改变在Makefile中的install -s,默认调用的strip为调用交叉编译的arm-linux-strip?Makefile中:install: chatmkdir -p $(BINDIR) $(MANDIR)$(INSTALL) -s -c chat $(BINDIR)$(INSTALL) -c -m 644 chat.8 $(MANDIR)运行结果:cd chat; make installmake[1]: Entering directory `/home/pwb/workdir/pppo.........【阅读全文】
发布时间:2013-11-06 17:55:13
[root@(none) Downloads]# curl -O ftp://ftp.goffi.org/gcp/gcp-0.1.3.tar.bz2[root@(none) Downloads]# tar -xjf gcp-0.1.3.tar.bz2[root@(none) Downloads]# cd gcp-0.1.3[root@(none) gcp-0.1.3]# python setup.py installrunning installrunning bdist_eggrunning egg_infocreating gcp.egg-infowriting gcp.e.........【阅读全文】