From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23976 invoked by alias); 30 Oct 2003 20:39:11 -0000 Mailing-List: contact insight-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sources.redhat.com Received: (qmail 23961 invoked from network); 30 Oct 2003 20:39:10 -0000 Received: from unknown (HELO localhost.redhat.com) (207.219.125.105) by sources.redhat.com with SMTP; 30 Oct 2003 20:39:10 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id E3A262B89; Thu, 30 Oct 2003 15:39:07 -0500 (EST) Message-ID: <3FA176EB.9040308@redhat.com> Date: Thu, 30 Oct 2003 20:39:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.2) Gecko/20030820 X-Accept-Language: en-us, en MIME-Version: 1.0 To: "Stephen P. Smith" Cc: gdb@sources.redhat.com, insight@sources.redhat.com Subject: Re: insight/gdb build failure References: <3FA00C52.40600@cox.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2003-q4/txt/msg00068.txt.bz2 > > gcc -c -g -O2 -DDEFAULT_INLINE=PSIM_INLINE_LOCALS > -DWITH_HOST_BYTE_ORDER=LITTLE_ENDIAN -DWITH_SMP=5 > -DHAVE_TERMIOS_STRUCTURE -DHAVE_TERMIOS_CLINE -DHAVE_DEVZERO -I. > -I/htc/GNUSource/gdb-source-tree/gdb-current/sim/ppc > -I/htc/GNUSource/gdb-source-tree/gdb-current/sim/ppc/../../include > -I../../bfd > -I/htc/GNUSource/gdb-source-tree/gdb-current/sim/ppc/../../bfd > -I../../gdb > -I/htc/GNUSource/gdb-source-tree/gdb-current/sim/ppc/../../gdb > -I/htc/GNUSource/gdb-source-tree/gdb-current/sim/ppc/../../gdb/config > -I/htc/GNUSource/gdb-source-tree/gdb-current/sim/ppc/../../mmalloc > -I../../intl > -I/htc/GNUSource/gdb-source-tree/gdb-current/sim/ppc/../../intl > -DHAVE_COMMON_FPU > -I/htc/GNUSource/gdb-source-tree/gdb-current/sim/ppc/../common icache.c > /cygdrive/c/DOCUME~1/ssmith/LOCALS~1/Temp/ccEI31Oh.s: Assembler messages: > /cygdrive/c/DOCUME~1/ssmith/LOCALS~1/Temp/ccEI31Oh.s:261617: Warning: > .stabn: description field '1004a' too big, try a different debug format You can "safely" ignore this. I believe it is because the generated file icache.c contains more than 0xffff lines (the file is ~80 000 lines long) and that is overflowing a 16-bit field used by stabs to store the line-number information. You can also look at compiling that file with -gdwarf2 (from memory) which has better support for long files. Andrew