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]
Other format: [Raw text]

Is make compare supposed to work on i386-unknown-freebsd4.5?


Hi,

i'm wondering if 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.

_________________________________________________________________
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


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