[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
new gdb/gdba code has bug with absolute source filenames
From: |
Bruce Stephens |
Subject: |
new gdb/gdba code has bug with absolute source filenames |
Date: |
Tue, 06 Jan 2004 17:05:47 +0000 |
User-agent: |
Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3.50 (gnu/linux) |
With a file (whose contents don't matter much) hello.c in /tmp.
gcc -g3 -o hello hello.c
Then I can debug hello fine with the new M-x gdb.
If I compile it thus:
gcc -g3 -o hello /tmp/hello.c
then when I do M-x gdb, and select gdb --annotate=3 hello, I see the
assembler code for main rather than C source code.
Obviously this is only a minor bug---overall the new modes are very
nice, even compared to the very usable previous version.