This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Compiliation failure
- To: Jean-Pierre Radley <jpr at jpr dot com>, EGCS Developers <egcs at cygnus dot com>
- Subject: Re: Compiliation failure
- From: Robert Lipe <robertl at dgii dot com>
- Date: Tue, 7 Jul 1998 14:46:15 -0500
- References: <19980707113834.I4533@jpr.com>
> A whole lot of fixes went in these last 24 hours.
Welcome back, Jeff. :-)
> Just did a cvs update, and here on SCO OSR 5.0.4, compile's failing with:
>
> ../../egcs/gcc/print-rtl.c: In function `print_rtx':
> ../../egcs/gcc/print-rtl.c:276: incompatible types in assignment
You got lucky and hit the window between Richard & Jeff's patches to that
file.
The fix for this problem is now in the CVS repository. Another cvs
update is in order. I'd suggest doing a 'cvs update' on that lone file
right now as if you update the whole thing, you'll inherit a different
build failure:
gcc -c -DIN_GCC -g -O2 -I. -I.. -I../../../egcs/gcc/cp -I../../../egcs/gcc/cp/.. -I../../../egcs/gcc/cp/../config ../../../egcs/gcc/cp/decl.c
../../../egcs/gcc/cp/decl.c: In function `finish_function':
../../../egcs/gcc/cp/decl.c:12517: too many arguments to function `get_vbase'
Looking at the offending code, it's probably just a typo where too many
arguments are handed to TYPE_BINFO, but I'm not certain of that.
RJL