This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Internal Error


"Alan Carvalho de Assis" <acassis@gmail.com> writes:

> I am compiling uClibc-0.9.28 and get a gcc internal error:
> 
> gcc   -Wall -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing
> -march=i686 -fno-stack-protector -fno-builtin -nostdinc -D_LIBC
> -I../../../../include -I.  -mpreferred-stack-boundary=2
> -falign-jumps=0 -falign-loops=0 -Os -funit-at-a-time   -isystem
> /usr/lib/gcc/i486-linux-gnu/4.1.2/include -DNDEBUG -fPIC  -c setjmp.S
> -o setjmp.o
> setjmp.S: Assembler messages:
> setjmp.S:54: Internal error!
> Assertion failure in operand at ../../gas/expr.c line 1310.
> Please report this bug.

This is actually an error from the assembler (note: "Assembler
messages").  The assembler is actually not part of gcc.  You are using
the gas assembler which is part of the GNU binutils.  See
http://sourceware.org/binutils/ for more information including how to
report a bug.

Make sure you report which version of the assembler you are using.
You can normally get this by running "as --version".

Ian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]