GDB:关于回溯中文件的相对和绝对路径的问题

时间:2011-06-24 20:42:09

标签: gcc path gdb backtrace

我对gdb或gcc(但不是firefox)有疑问。

我在调试firefox时只看到gdb中的绝对路径。例如:

5  0x01bb0c52 in nsAppShell::ProcessNextNativeEvent 
    (this=0xb7232ba0, mayWait=1)
    at 
    /media/25b7639d-9a70-42ca-aaa7-28f4d1f417fd/firefox-dev/mozilla-central/widget/src/gtk2/nsAppShell.cpp:144

阅读此类回溯令人不舒服。 如果我尝试编译和调试微小的测试程序,我会看到这样的回溯(具有文件的相对路径):

0  main () at prog.c:5

在调试firefox时,如何才能看到回溯中的相对路径?

P.S。 gcc 4.4.1; gdb 7.0。

1 个答案:

答案 0 :(得分:1)

GDB将根据程序的编译方式显示绝对路径或相对路径。考虑:

$ cd /tmp
$ cat t.c
int main() { return 0; }
$ gcc -g t.c && gdb -q -ex start -ex quit ./a.out
Reading symbols from /tmp/a.out...done.
Temporary breakpoint 1 at 0x4004c8: file t.c, line 1.

Temporary breakpoint 1, main () at t.c:1
1   int main() { return 0; }

现在相同,但是通过绝对路径编译源代码:

$ gcc -g /tmp/t.c && gdb -q -ex start -ex quit ./a.out
Reading symbols from /tmp/a.out...done.
Temporary breakpoint 1 at 0x4004c8: file /tmp/t.c, line 1.

Temporary breakpoint 1, main () at /tmp/t.c:1
1   int main() { return 0; }

再次,这次使用包含目录前缀的相对路径:

$ cd /
$ gcc -g tmp/t.c -o tmp/a.out && gdb -q -ex start -ex quit tmp/a.out
Reading symbols from /tmp/a.out...done.
Temporary breakpoint 1 at 0x4004c8: file tmp/t.c, line 1.

Temporary breakpoint 1, main () at tmp/t.c:1
1   int main() { return 0; }

所以,你可以让gdb显示相对路径如果你改变了firefox的构建方式。这可能被证明是一个非常重要的命题。