From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4223 invoked by alias); 14 Apr 2008 23:56:57 -0000 Received: (qmail 4061 invoked by uid 48); 14 Apr 2008 23:56:13 -0000 Date: Mon, 14 Apr 2008 23:56:00 -0000 Message-ID: <20080414235613.4060.qmail@sourceware.org> X-Bugzilla-Reason: CC References: Subject: [Bug debug/35925] -g1 causes "Error: file number 1 already allocated" In-Reply-To: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "wilson at gcc dot gnu dot org" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2008-04/txt/msg01026.txt.bz2 ------- 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