From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24455 invoked by alias); 29 Sep 2004 15:23:26 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 24424 invoked from network); 29 Sep 2004 15:23:23 -0000 Received: from unknown (HELO mta1.srv.hcvlny.cv.net) (167.206.5.67) by sourceware.org with SMTP; 29 Sep 2004 15:23:23 -0000 Received: from optonline.net (mstr3.srv.hcvlny.cv.net [167.206.5.14]) by mta1.srv.hcvlny.cv.net (iPlanet Messaging Server 5.2 HotFix 1.25 (built Mar 3 2004)) with ESMTP id <0I4T001L66QZF5@mta1.srv.hcvlny.cv.net> for gcc@gcc.gnu.org; Wed, 29 Sep 2004 11:23:23 -0400 (EDT) Received: from [167.206.5.79] (Forwarded-For: [129.34.20.23]) by mstr3.srv.hcvlny.cv.net (mshttpd); Wed, 29 Sep 2004 11:23:23 -0400 Date: Wed, 29 Sep 2004 18:01:00 -0000 From: jlquinn@optonline.net Subject: Re: AIX bootstrap failure To: gcc@gcc.gnu.org Message-id: <1d7181f5f6.1f5f61d718@optonline.net> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-language: en Content-transfer-encoding: 7BIT Content-disposition: inline Priority: normal X-SW-Source: 2004-09/txt/msg01616.txt.bz2 I updated the tree (no local patches), and reconfigured and bootstrapped mainline. The config is: ../gcc/configure --prefix=/home/jlquinn/gcc/dev --with-cpu=power4 --with-gcc-version-trigger=/home/jlquinn/gcc/dev/gcc/gcc/version.c --enable-languages=c,c++,java This is on AIX 5.2 pl 3, using xlc. Jerry Quinn Comparing stage2 and stage3 of the compiler make[1]: Entering directory `/home/jlquinn/gcc/dev/build/gcc' rm -f .bad_compare case "slowcompare" in *compare | *compare-lean ) stage=2 ;; * ) stage=`echo slowcompare | sed -e 's,^[a-z]*compare\([0-9][0-9]*\).*,\1,'` ;; esac; \ for dir in . cp java; do \ if [ "`echo $dir/*.o`" != "$dir/*.o" ] ; then \ for file in $dir/*.o; do \ case "slowcompare" in \ slowcompare* ) \ tail +16c ./$file > tmp-foo1; \ tail +16c stage$stage/$file > tmp-foo2 \ && (cmp tmp-foo1 tmp-foo2 > /dev/null 2>&1 || echo $file differs >> .bad_compare) || true; \ ;; \ fastcompare* ) \ cmp $file stage$stage/$file 16 16 > /dev/null 2>&1; \ test $? -eq 1 && echo $file differs >> .bad_compare || true; \ ;; \ gnucompare* ) \ cmp --ignore-initial=16 $file stage$stage/$file > /dev/null 2>&1; \ test $? -eq 1 && echo $file differs >> .bad_compare || true; \ ;; \ esac ; \ done; \ else true; fi; \ done rm -f tmp-foo* case "slowcompare" in *compare | *compare-lean ) stage=2 ;; * ) stage=`echo slowcompare | sed -e 's,^[a-z]*compare\([0-9][0-9]*\).*,\1,'` ;; esac; \ if [ -f .bad_compare ]; then \ echo "Bootstrap comparison failure!"; \ cat .bad_compare; \ exit 1; \ else \ case "slowcompare" in \ *-lean ) rm -rf stage$stage ;; \ *) ;; \ esac; true; \ fi Bootstrap comparison failure! ./fold-const.o differs make[1]: *** [slowcompare] Error 1 make[1]: Leaving directory `/home/jlquinn/gcc/dev/build/gcc' make: *** [bootstrap] Error 2