This is the mail archive of the gcc@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]

Solaris 2.5: Stage3 compare errors


All,

   I am getting Stage3 compare errors when building egcs 1.1.2.
   The particulars are:

    Solaris 2.5
    Binutils 2.9.1
    Built with GCC 2.7.2

   The '-fPIC' is used during the build.
   Enclosed is the build script and a snippet from the log.
   No other problems seem to occur.

--Eric--

Bootstrap comparison failure!
haifa-sched.o differs
f/com.o differs
gmake[1]: *** [compare] Error 1
gmake[1]: Leaving directory `/depot/tools/egcs-1.1.2_build/gcc'
gmake: *** [bootstrap] Error 2

#!/bin/ksh
#
#       build egcs on depot for the SUN architecture
#
SOURCE='/depot/gnu/egcs-1.1.2'
HOMEDIR='/bmc/tools'
PRODUCT='vermont'
TOOLDIR=$HOMEDIR/$PRODUCT
HOST=$($SOURCE/config.guess)
BUILD=$HOST
SCRATCH='egcs-1.1.2_build'
TARGET=$HOST
BUILDDIR=$HOMEDIR/$SCRATCH

CC="/usr/local/bin/gcc"
cd $BUILDDIR
cp $SOURCE/config.guess .


CC="/usr/local/bin/gcc" $SOURCE/configure  \
--build=$BUILD  \
--host=$HOST  \
--target=$TARGET \
--prefix=$TOOLDIR  \
--srcdir=$SOURCE  \
--exec-prefix=$TOOLDIR \
--with-gnu-ld  \
--with-gnu-as    \
--enable-version-specific-runtime-libs \
--local-prefix=$TOOLDIR \
 2>&1 \
|tee egcs-1.1.2_configure.log

make CC=/usr/local/bin/gcc bootstrap BOOT_CFLAGS="-fPIC -O1  -g" 2>&1 \
|tee $SCRATCH.log

make CC=/usr/local/bin/gcc install BOOT_CFLAGS="-fPIC -O1  -g" 2>&1 \
|tee -a  $SCRATCH.log


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