预览加载中,请您耐心等待几秒...
1/10
2/10
3/10
4/10
5/10
6/10
7/10
8/10
9/10
10/10

亲,该文档总共13页,到这已经超出免费预览范围,如果喜欢就直接下载吧~

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

GDBManual151 15.1Commandstospecifyfiles指定文件的命令 Youmaywanttospecifyexecutableandcoredumpfilenames.Theusualwaytodothisisatstart-uptime,usingtheargumentstoGDB'sstart-upcommands(seesectionGettingInandOutofGDB). 你可以指定可执行文件和coredump文件的名称。通常的做法是在启动的时候,传递参数给启动GDB的命令(请看段“进入与退出GDB”) OccasionallyitisnecessarytochangetoadifferentfileduringaGDBsession.OryoumayrunGDBandforgettospecifyafileyouwanttouse.Oryouaredebuggingaremotetargetviagdbserver(seesectionfile).InthesesituationstheGDBcommandstospecifynewfilesareuseful. 有时候需要在GDB的会话过程中改变为一个不同的文件。或者你可能在运行GDB后,忘记指定你想要的文件。或者你是在通过gdbserver调试一个远程目标(请看段“文件”)。在这些情况下,用于指定新文件的GDB命令就变得很有用了。 filefilename Usefilenameastheprogramtobedebugged.Itisreadforitssymbolsandforthecontentsofpurememory.Itisalsotheprogramexecutedwhenyouusetheruncommand.IfyoudonotspecifyadirectoryandthefileisnotfoundintheGDBworkingdirectory,GDBusestheenvironmentvariablePATHasalistofdirectoriestosearch,justastheshelldoeswhenlookingforaprogramtorun.Youcanchangethevalueofthisvariable,forbothGDBandyourprogram,usingthepathcommand. 使用filename作为要调试的程序。它的符号表被读取,或者是单一的内存的内容。它也是你运行run命令时执行的程序。如果没有指定目录,这一文件也没有在GDB的工作目录中找到,GDB将使用环境变量PATH作为要搜索的目录列表,就像shell查找要运行的程序一样。你可以改变这一变量的值,用于GDB和你的程序,请使用path命令。 Youcanloadunlinkedobject`.o'filesintoGDBusingthefilecommand.Youwillnotbeableto"run"anobjectfile,butyoucandisassemblefunctionsandinspectvariables.Also,iftheunderlyingBFDfunctionalitysupportsit,youcouldusegdb-writetopatchobjectfilesusingthistechnique.NotethatGDBcanneitherinterpretnormodifyrelocationsinthiscase,sobranchesandsomeinitializedvariableswillappeartogotothewrongplace.Butthisfeatureisstillhandyfromtimetotime. 你可以使用file命令在GDB中载入没有被链接的".o"文件。你将不可能“运行”一个这样的对象文件,但是你可以反汇编函数和观察变量。同时,如果内在的BFD功能性地支持它,你可以使用这一技术用gdb-write给对象文件打上补丁。注意在这种情况下,GDB既不能转换,也不能修改重定向表,所以函数分支和一些已初始化的变量看起来是呆在不合适的地方。但是这一特征将始终被保留,以备不时之需。 file filewithnoargumentmakesGDBdiscardanyinformationithasonbothexecutablefileandthesymboltable. 没有参数的file使GDB丢弃可执行程序和符号表中的任何信息。 exec-file[filename] Specifythattheprogramtoberun(butn