Date: Mon, 25 Feb 2002 22:50:41 From: "Mack Lobell" <macklobell@hotmail.com> To: freebsd-questions@FreeBSD.org Subject: Is gcc's make compare supposed to work on i386-unknown-freebsd4.5? Message-ID: <F250VuRWCy7rjcxtniF00010b68@hotmail.com>
next in thread | raw e-mail | index | archive | help
Hi, i'm wondering if gcc's "make compare" is supposed to work on i386-unknown-freebsd4.5? prompt> ../../../gcc-3.0.4/config.guess i386-unknown-freebsd4.5 prompt> ../../../gcc-3.0.4/configure --prefix=/usr/local/gcc304 prompt> make bootstrap prompt> make compare rm -f .bad_compare case "compare" in compare | compare-lean ) stage=2 ;; * ) stage=`echo compare | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; for file in *.o; do 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; done case "compare" in compare | compare-lean ) stage=2 ;; * ) stage=`echo compare | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; for dir in tmp-foo intl cp f java objc; do if [ "`echo $dir/*.o`" != "$dir/*.o" ] ; then for file in $dir/*.o; do 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; done; else true; fi; done rm -f tmp-foo* case "compare" in compare | compare-lean ) stage=2 ;; * ) stage=`echo compare | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; if [ -f .bad_compare ]; then echo "Bootstrap comparison failure!"; cat .bad_compare; exit 1; else case "compare" in *-lean ) rm -rf stage$stage ;; *) ;; esac; true; fi Bootstrap comparison failure! underscore.o differs *** Error code 1 Stop in /usr/local/tools/build/gcc/native/gcc. Regards. _________________________________________________________________ Join the world’s largest e-mail service with MSN Hotmail. http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?F250VuRWCy7rjcxtniF00010b68>