# HG changeset patch # User nickols_k # Date 991725000 0 # Node ID a30a74ae4e18d780b7eaa836a796eee0db29cf93 # Parent 655441d69aaabad99fcf2175d56cb5bedf6d65d5 some more information during as checking diff -r 655441d69aaa -r a30a74ae4e18 configure --- a/configure Tue Jun 05 03:09:54 2001 +0000 +++ b/configure Tue Jun 05 07:10:00 2001 +0000 @@ -214,7 +214,11 @@ esac done -# Checking CC version... what's with egcs, pgcc? - Atmos +# Checking CC version... +# Q: what's with egcs, pgcc? - Atmos +# A: same as with agcc! These compilers always were introduced as experimental +# ones. Now gcc-3.0 should introduce all features of these compilers. +# Since 3.0 is almost released we don't need to support them. - Nick 07 jun 2001 if test "$_skip_cc_check" != "yes"; then echo -n "Checking version of $_cc ... " cc_version=`$_cc -v 2>&1 | sed -n 's/^.*version \([aegcygnustp-]*[0-9.]*\).*$/\1/p'` @@ -812,9 +816,11 @@ esac done -# Checking as compatibility... -echo -n "Checking assembler (as) ... " - +# Checking assembler (as) compatibility... +#as_version=`as --version 2>&1 | sed -n 's/^.*assembler \([aegcygnustp-]*[0-9.]*\).*$/\1/p'` +as_version=`as --version 2>&1 | sed -n 's/^.*assembler \([0-9.]*\).*$/\1/p'` +echo -n "Checking assembler (as) ... $as_version, " +_pref_as_version='2.9.1' ### this test disabled, see _binutils test above! --A'rpi # cat > astest.S < $TMPS < /dev/null || as_verc_fail=yes fi if [ $_3dnow = 'yes' ]; then +_pref_as_version='2.10.1' cat >> $TMPS < /dev/null || as_verc_fail=yes fi if [ $_3dnowex = 'yes' ]; then +_pref_as_version='2.10.1' cat >> $TMPS < /dev/null || as_verc_fail=yes fi if [ $_mmx2 = 'yes' ]; then +_pref_as_version='2.10.1' cat >> $TMPS < /dev/null || as_verc_fail=yes fi if [ $_sse = 'yes' ]; then +_pref_as_version='2.10.1' cat >> $TMPS <> $TMPS < /dev/null || as_verc_fail=yes -fi +rm -f $TMPS $TMPO $TMPC if test "$as_verc_fail" != "yes"; then echo "ok" else echo "failed" - echo "Please upgrade binutils..." # to which version? - Atmos - rm -f $TMPS $TMPO $TMPC + echo "Please upgrade(downgrade) binutils to "$_pref_as_version"..." exit fi