------- Comment #1 from wilson at gcc dot gnu dot org  2008-04-14 23:56 -------
There is a conflict between the gcc and gas debug info support here.  This
can't be fixed in gcc.  It will have to be fixed in binutils.

-g1 tells gcc to emit debug info, but not line number info.  We do emit file
and line number info for function definitions.  This involves emitting a .file
1 "tmp.c" directive to add an entry to the dwarf2 file table.

-g tells gas to try to emit debug info.  Gas sees that there is no line number
info, and so tries to generate some itself.  However, gas is allocating entries
from the same dwarf2 file table that gcc is allocating from, leading to
conflicts.  Since gcc runs first, gcc can't avoid the conflicts.

I can make this work for a trivial example if I change gcc to emit the .file
directive for function info earlier.  However, this doesn't solve the problem,
it just delays it.  If I change the testcase so that it includes another source
file, then it fails again, this time complaining that file number 2 is already
used.  This one is impossible to fix in gcc.

Binutils needs to be changed to either not emit line number debug info for a
file compiled with gcc -g1, or else to allocate virtual file numbers for its
debug info, and then only give them physical file numbers when it is finished
parsing the entire file, and hence knows how many file numbers that gcc used.

I suggest filing a bug with the binutils folks pointing back at this bug
report.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35925

Reply via email to