Building GDB-6.3 for powerpc configuration

Andrew Cagney cagney@gnu.org
Sat Dec 18 01:16:00 GMT 2004


Manish Shah wrote:
> Hello,
> 
> I am using the latest CYGWIN GCC-3.3.3 to build the GDB-6.3 version of
> GDB. My Host is configured to i686-pc-cygwin32 and target configuration
> is set to powerpc-elf-eabi
> 
> I get a lot of following messages when trying to build the gdb.exe file.
> 
> 
> /cygdrive/c/DOCUME~1/manish/LOCALS~1/Temp/ccVl8S7x.s:318447: Warning:
> .stabn: description field '13c19' too big, try a different debug format
> /cygdrive/c/DOCUME~1/manish/LOCALS~1/Temp/ccVl8S7x.s:318472: Warning:
> .stabs: description field '13c02' too big, try a different debug format

The stabs debugging format only supports upto 65535 lines (hmm 16bit 
unsigned ...).  Unless you're going to try debugging that file it isn't 
that important (it can be solved by specifying dwarf 2 debug format - 
see GCC and the -g option).

> Also I get the following warnings.
> 
> Dropping Vector Add Floating Point - av
> Dropping Vector Add Signed Byte Saturate - av
> Dropping Vector Add Signed Half Word Saturate - av
> Dropping Vector Add Signed Word Saturate - av
> Dropping Vector Add Unsigned Byte Modulo - av 
> Dropping Vector Add Unsigned Byte Saturate - av
> Dropping Vector Add Unsigned Half Word Modulo - av
> Dropping Vector Add Unsigned Half Word Saturate - av
> Dropping Vector Add Unsigned Word Modulo - av
> Dropping Vector Add Unsigned Word Saturate - av
> Dropping Vector Logical AND - av
> Dropping Vector Logical AND with Compliment - av
> Dropping Vector Average Signed Byte - av
> Dropping Vector Average Signed Half Word - av
> Dropping Vector Average Signed Word - av
> Dropping Vector Average Unsigned Byte - av
> Dropping Vector Average Unsigned Half Word - av
> Dropping Vector Average Unsigned Word - av
> Dropping Vector Convert From Signed Fixed-Point Word - av
> Dropping Vector Convert From Unsigned Fixed-Point Word - av
> 
> I would appreciate any help to get the above thing resolved..

These a Altivec instructions and not part of a core PPC, hence the're 
dropped.  Again not an immediate concern.

Andrew



More information about the Gdb mailing list