替换查找源文件的目录
例子
#include <stdio.h>
#include <time.h>
int main(void) {
time_t now = time(NULL);
struct tm local = {0};
struct tm gmt = {0};
localtime_r(&now, &local);
gmtime_r(&now, &gmt);
return 0;
}
技巧
有时调试程序时,源代码文件可能已经移到其它的文件夹了。此时可以用set substitute-path from to
命令设置新的文件夹(to
)目录替换旧的(from
)。以上面程序为例:
(gdb) start
Temporary breakpoint 1 at 0x400560: file a.c, line 5.
Starting program: /home/nan/a
Temporary breakpoint 1, main () at a.c:5
5 a.c: No such file or directory.
(gdb) set substitute-path /home/nan /home/ki
(gdb) n
6 struct tm local = {0};
(gdb)
7 struct tm gmt = {0};
(gdb)
9 localtime_r(&now, &local);
(gdb)
10 gmtime_r(&now, &gmt);
(gdb)
12 return 0;
调试时,因为源文件已经移到/home/ki
这个文件夹下了,所以gdb找不到源文件。使用set substitute-path /home/nan /home/ki
命令设置源文件的查找目录后,gdb就可以正常地解析源代码了。
参见gdb手册.
贡献者
nanxiao