From: Jan-Benedict G. <jb...@us...> - 2005-06-06 07:41:40
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4873 Modified Files: build_toolchain.sh Log Message: - Pretty-print uClibc status. - Print out that we're about to sleep a bit. - Call the test_summary script to produce the email shell script for sending build reports to the FSF. Though, the script isn't actually called, that's up to you. Please keep in mind that the binutils part isn't all that bad at all, but gcc/g++ print out alot of FAILs because we're still missing a libc. The gcc-testresults mailing list has got a limit of 400K, so sending gcc status reports won't work right now (~1M in size). Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- build_toolchain.sh 5 Jun 2005 16:36:46 -0000 1.8 +++ build_toolchain.sh 6 Jun 2005 07:41:29 -0000 1.9 @@ -174,6 +174,8 @@ [ "${DO_TIMESTAMP_GCC}" -eq 0 ] && echo " GCC timestamp: last known" [ "${DO_TIMESTAMP_GLIBC}" -ne 0 ] && echo " Glibc timestamp: ${TIMESTAMP_GLIBC}" [ "${DO_TIMESTAMP_GLIBC}" -eq 0 ] && echo " Glibc timestamp: last known" +[ "${DO_TIMESTAMP_UCLIBC}" -ne 0 ] && echo " uClibc timestamp: ${TIMESTAMP_UCLIBC}" +[ "${DO_TIMESTAMP_UCLIBC}" -eq 0 ] && echo " uClibc timestamp: last known" [ "${DO_PATCHES_BINUTILS}" -ne 0 ] && echo " Patch Binutils: yes" [ "${DO_PATCHES_BINUTILS}" -eq 0 ] && echo " Patch Binutils: no" [ "${DO_PATCHES_GCC}" -ne 0 ] && echo " Patch Gcc: yes" @@ -182,12 +184,16 @@ [ "${DO_PATCHES_GLIBC}" -eq 0 ] && echo " Patch Glibc: no" [ "${DO_PATCHES_PORTS}" -ne 0 ] && echo " Patch Glibc-Ports: yes" [ "${DO_PATCHES_PORTS}" -eq 0 ] && echo " Patch Glibc-Ports: no" +[ "${DO_PATCHES_UCLIBC}" -ne 0 ] && echo " Patch uClibc: yes" +[ "${DO_PATCHES_UCLIBC}" -eq 0 ] && echo " Patch uClibc: no" [ "${DO_CHECKS_BINUTILS}" -ne 0 ] && echo " Check Binutils: yes" [ "${DO_CHECKS_BINUTILS}" -eq 0 ] && echo " Check Binutils: no" [ "${DO_CHECKS_GCC}" -ne 0 ] && echo " Check GCC: yes" [ "${DO_CHECKS_GCC}" -eq 0 ] && echo " Check GCC: no" [ "${DO_CHECKS_GLIBC}" -ne 0 ] && echo " Check GNU libc: yes" [ "${DO_CHECKS_GLIBC}" -eq 0 ] && echo " Check GNU libc: no" +[ "${DO_CHECKS_UCLIBC}" -ne 0 ] && echo " Check uClibc: yes" +[ "${DO_CHECKS_UCLIBC}" -eq 0 ] && echo " Check uClibc: no" # @@ -262,6 +268,7 @@ fi RESTART_LOOP=$(( ${RESTART_LOOP} + 1 )) + echo '(Sleeping 20sec because of failure)' sleep 20 done @@ -431,6 +438,10 @@ build "${BUILD_BINUTILS}" && execute make ${MAKEFLAGS} install-binutils build "${BUILD_LD}" && execute make ${MAKEFLAGS} install-ld build "${BUILD_GAS}" && execute make ${MAKEFLAGS} install-gas + + # Create a test summary to be sent as a proof that the vax-linux + # community exists and is still alive. + "${GCC_SRC}/contrib/test_summary" -m bin...@so... > "${ALL_BASE}/send_binutils_summary.sh" popd # @@ -471,5 +482,9 @@ # Install build "${BUILD_GCC1}" && execute make ${MAKEFLAGS} install-gcc + + # Create a test summary to be sent as a proof that the vax-linux + # community exists and is still alive. + "${GCC_SRC}/contrib/test_summary" -m gcc...@gc... > "${ALL_BASE}/send_gcc_summary.sh" popd |