You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(11) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2002 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(12) |
Nov
|
Dec
|
2003 |
Jan
|
Feb
(3) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(8) |
Dec
(1) |
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(9) |
Jun
(5) |
Jul
(1) |
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
(1) |
Apr
(35) |
May
(9) |
Jun
(10) |
Jul
|
Aug
(6) |
Sep
(23) |
Oct
(24) |
Nov
(18) |
Dec
(81) |
2006 |
Jan
(37) |
Feb
(2) |
Mar
(10) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(5) |
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(23) |
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Jan-Benedict G. <jb...@us...> - 2005-12-21 23:22:35
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4848 Modified Files: build_toolchain.sh Log Message: - Improve error message. Thanks to Maximilian Wilhelm for the hint. Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- build_toolchain.sh 19 Dec 2005 12:28:45 -0000 1.45 +++ build_toolchain.sh 21 Dec 2005 23:22:21 -0000 1.46 @@ -6,15 +6,15 @@ # Test if some paths are set and correct # if [ ! -d "${VAX_PATCHES_PATH}" ]; then - echo "\$VAX_PATCHES_PATH isn't set--please source vax_toolchain_config" >&2 + echo "\$VAX_PATCHES_PATH isn't set or doesn't point to a directory--maybe source vax_toolchain_config" >&2 exit 1 fi if [ ! -d "${BUILD_BASE_DIR}" ]; then - echo "\$BUILD_BASE_DIR isn't set--please source vax_toolchain_config" >&2 + echo "\$BUILD_BASE_DIR isn't set or doesn't point to a directory--maybe source vax_toolchain_config" >&2 exit 1 fi if [ ! -d "${UPSTREAM_SANDBOXES_PATH}" ]; then - echo "\$UPSTREAM_SANDBOXES_PATH isn't set--please source vax_toolchain_config" >&2 + echo "\$UPSTREAM_SANDBOXES_PATH isn't set or doesn't point to a directory--maybe source vax_toolchain_config" >&2 exit 1 fi |
From: Jan-Benedict G. <jb...@us...> - 2005-12-21 15:37:08
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23168 Modified Files: run_test_build.sh Log Message: - Really accept the optional argument. Index: run_test_build.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- run_test_build.sh 21 Dec 2005 15:36:08 -0000 1.16 +++ run_test_build.sh 21 Dec 2005 15:37:00 -0000 1.17 @@ -1,6 +1,6 @@ #!/bin/sh -if [ $# -ne 7 ]; then +if [ $# -lt 7 -o $# -gt 8 ]; then echo "$0 target /path/to/build-directory /path/to/vax_toolchain_config ma...@ad... /path/to/build.okay /path/to/build.not-okay /path/to/lockfile {/path/to/testresult_dir}" >&2 echo "" >&2 echo "target -- Something like vax-linux or vax-linux-uclibc" >&2 |
From: Jan-Benedict G. <jb...@us...> - 2005-12-21 15:36:16
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22940 Modified Files: run_test_build.sh Log Message: - Rework email sending code to not generate header lines, but use for footnote instead. Index: run_test_build.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- run_test_build.sh 21 Dec 2005 08:42:29 -0000 1.15 +++ run_test_build.sh 21 Dec 2005 15:36:08 -0000 1.16 @@ -40,12 +40,16 @@ # $1: Subject # function send_stdin() { - STOP_TIME="`date --utc '+%Y%m%d-%H%M%S'`" - mail -a "X-Build-Robot-Id: ${I_AM}, version${VERSION} running on `hostname`" \ - -a "X-Build-Robot-Target: ${TARGET}" \ - -a "X-Build-Robot-Start: ${START_TIME} UTC" \ - -a "X-Build-Robot-Stop: ${STOP_TIME} UTC" \ - -s "$1" ${SEND_MAIL_TO} + STOP_TIME="`date -u '+%Y%m%d-%H%M%S'`" + ( + cat + echo "-- " + echo "X-Build-Robot-Id: ${I_AM}, version${VERSION} running on `hostname`" + echo "X-Build-Robot-Target: ${TARGET}" + echo "X-Build-Robot-Start: ${START_TIME} UTC" + echo "X-Build-Robot-Stop: ${STOP_TIME} UTC" + echo "" + ) | mail -s "$1" ${SEND_MAIL_TO} } function lock_down() { |
From: Jan-Benedict G. <jb...@us...> - 2005-12-21 12:43:16
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16113 Modified Files: try_patches.sh Log Message: - When using bash features, bash should be the interpreter... Index: try_patches.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/try_patches.sh,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- try_patches.sh 1 Oct 2005 14:20:21 -0000 1.3 +++ try_patches.sh 21 Dec 2005 12:43:07 -0000 1.4 @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash function remove_leading_zero() { local NUMBER |
From: Jan-Benedict G. <jb...@us...> - 2005-12-21 10:25:40
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23299 Added Files: _Diff Log Message: - GNU virtualization layer for Slowlaris... --- NEW FILE: _Diff --- #!/usr/bin/env bash case "`uname -s`" in Linux) exec diff -Nurp "$@";; *) exec gdiff -Nurp "$@";; esac |
From: Jan-Benedict G. <jb...@us...> - 2005-12-21 09:08:17
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9204 Modified Files: initial_cvs_checkout.sh Log Message: - "/usr/bin/env bash" instead of /bin/bash Index: initial_cvs_checkout.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/initial_cvs_checkout.sh,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- initial_cvs_checkout.sh 28 Oct 2005 17:08:07 -0000 1.9 +++ initial_cvs_checkout.sh 21 Dec 2005 09:08:06 -0000 1.10 @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # # Check if needed variables are set. |
From: Jan-Benedict G. <jb...@us...> - 2005-12-21 08:42:38
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4629 Modified Files: run_test_build.sh Log Message: - Use -u instead of --utc for date to get GMT. This works on non-GNU date, too. Index: run_test_build.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- run_test_build.sh 21 Dec 2005 08:29:01 -0000 1.14 +++ run_test_build.sh 21 Dec 2005 08:42:29 -0000 1.15 @@ -26,7 +26,7 @@ I_AM="Nemo" VERSION="$Revision$" -START_TIME="`date --utc '+%Y%m%d-%H%M%S'`" +START_TIME="`date -u '+%Y%m%d-%H%M%S'`" if [ -d "${TESTRESULT_DIR}" ]; then RUN_TEST=YesPlease |
From: Jan-Benedict G. <jb...@us...> - 2005-12-21 08:29:10
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2734 Modified Files: run_test_build.sh Log Message: - Throw away old text. Index: run_test_build.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- run_test_build.sh 19 Dec 2005 12:59:35 -0000 1.13 +++ run_test_build.sh 21 Dec 2005 08:29:01 -0000 1.14 @@ -135,8 +135,6 @@ echo "Hello!" echo "" echo "Seems building for target ${TARGET} failed :-(" - echo "Here's the difference of the build log of the last" - echo "known-successful build:" echo "" echo "We managed to build these parts:" echo "" |
From: Jan-Benedict G. <jb...@us...> - 2005-12-19 16:50:36
|
Update of /cvsroot/linux-vax/toolchain/patches In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17441 Removed Files: gcc-000008-fix-r108480.patch Log Message: - Obsolete by now... --- gcc-000008-fix-r108480.patch DELETED --- |
From: Jan-Benedict G. <jb...@us...> - 2005-12-19 16:09:43
|
Update of /cvsroot/linux-vax/toolchain/patches In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9339 Removed Files: gcc-000008-fix-again-r108480.patch Log Message: - Fixed upstream. --- gcc-000008-fix-again-r108480.patch DELETED --- |
From: Jan-Benedict G. <jb...@us...> - 2005-12-19 13:02:15
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32185 Modified Files: README Log Message: - Mention testsuite. Index: README =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/README,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- README 16 Dec 2005 11:30:07 -0000 1.12 +++ README 19 Dec 2005 13:02:04 -0000 1.13 @@ -134,3 +134,6 @@ /tmp/build.nack \ /tmp/build.running +Optionally, you can also add (as a further argument) an existing directory +to which testsuite results will be moved. + |
From: Jan-Benedict G. <jb...@us...> - 2005-12-19 12:59:43
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30521 Modified Files: run_test_build.sh Log Message: - Maybe keep the testsuite results. Index: run_test_build.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- run_test_build.sh 19 Dec 2005 12:30:31 -0000 1.12 +++ run_test_build.sh 19 Dec 2005 12:59:35 -0000 1.13 @@ -1,7 +1,7 @@ #!/bin/sh if [ $# -ne 7 ]; then - echo "$0 target /path/to/build-directory /path/to/vax_toolchain_config ma...@ad... /path/to/build.okay /path/to/build.not-okay /path/to/lockfile" >&2 + echo "$0 target /path/to/build-directory /path/to/vax_toolchain_config ma...@ad... /path/to/build.okay /path/to/build.not-okay /path/to/lockfile {/path/to/testresult_dir}" >&2 echo "" >&2 echo "target -- Something like vax-linux or vax-linux-uclibc" >&2 echo "/path/to/build-directory -- This is where all the stuff is build in, /tmp/vax-linux would be a nice name." >&2 @@ -11,6 +11,7 @@ echo "/path/to/build.not-okay -- Location to save the build.log to IFF the build was unsuccessful" >&2 echo "/path/to/build.not-okay -- Location to save the build.log to IFF the build was unsuccessful" >&2 echo "/path/to/lockfile -- GLOBAL lockfile for CVS/SVN updates and ALL and ANY builds" >&2 + echo "/path/to/testresult_dir -- Results of the test suite are put here. Optional." >&2 exit 1 fi @@ -21,11 +22,20 @@ BUILD_OKAY="${5}" BUILD_BAD="${6}" LOCKFILE="${7}" +TESTRESULT_DIR="${8}" I_AM="Nemo" VERSION="$Revision$" START_TIME="`date --utc '+%Y%m%d-%H%M%S'`" +if [ -d "${TESTRESULT_DIR}" ]; then + RUN_TEST=YesPlease + OMIT_CHECKS="" +else + RUN_TEST="" + OMIT_CHECKS="--omit-checks" +fi + # # $1: Subject # @@ -61,12 +71,14 @@ } function unlock() { - if ls ${BUILD_DIRECTORY}/*.sh > /dev/null 2>&1; then - pushd "${BUILD_DIRECTORY}" > /dev/null 2>&1 - for REPORT in *.sh; do - cp ${REPORT} "/tmp/report-${START_TIME}-${REPORT}" - done - popd > /dev/null 2>&1 + if [ -n "${RUN_TEST}" ]; then + if ls ${BUILD_DIRECTORY}/*.sh > /dev/null 2>&1; then + pushd "${BUILD_DIRECTORY}" > /dev/null 2>&1 + for REPORT in *.sh; do + cp "${REPORT}" "${TESTRESULT_DIR}/report-${START_TIME}-${REPORT}" + done + popd > /dev/null 2>&1 + fi fi rm -rf "${BUILD_DIRECTORY}" rm -f "${LOCKFILE}" @@ -98,7 +110,7 @@ . "${SOURCE_FILE}" lock_down update_sources -if build_toolchain.sh --base "${BUILD_DIRECTORY}" --log-to-file "${TARGET}" > /dev/null 2>&1; then +if build_toolchain.sh --base "${BUILD_DIRECTORY}" --log-to-file ${OMIT_CHECKS} "${TARGET}" > /dev/null 2>&1; then # Build is okay ( echo "Hello!" |
From: Jan-Benedict G. <jb...@us...> - 2005-12-19 12:30:40
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25102 Modified Files: run_test_build.sh Log Message: - Don't use human-readable form of the current time, but YYYYMMDD-hhmmss. - Save testsuite results, if available. Index: run_test_build.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- run_test_build.sh 18 Dec 2005 12:22:42 -0000 1.11 +++ run_test_build.sh 19 Dec 2005 12:30:31 -0000 1.12 @@ -24,17 +24,17 @@ I_AM="Nemo" VERSION="$Revision$" -START_TIME="`date --utc`" +START_TIME="`date --utc '+%Y%m%d-%H%M%S'`" # # $1: Subject # function send_stdin() { - STOP_TIME="`date --utc`" + STOP_TIME="`date --utc '+%Y%m%d-%H%M%S'`" mail -a "X-Build-Robot-Id: ${I_AM}, version${VERSION} running on `hostname`" \ -a "X-Build-Robot-Target: ${TARGET}" \ - -a "X-Build-Robot-Start: ${START_TIME}" \ - -a "X-Build-Robot-Stop: ${STOP_TIME}" \ + -a "X-Build-Robot-Start: ${START_TIME} UTC" \ + -a "X-Build-Robot-Stop: ${STOP_TIME} UTC" \ -s "$1" ${SEND_MAIL_TO} } @@ -61,6 +61,13 @@ } function unlock() { + if ls ${BUILD_DIRECTORY}/*.sh > /dev/null 2>&1; then + pushd "${BUILD_DIRECTORY}" > /dev/null 2>&1 + for REPORT in *.sh; do + cp ${REPORT} "/tmp/report-${START_TIME}-${REPORT}" + done + popd > /dev/null 2>&1 + fi rm -rf "${BUILD_DIRECTORY}" rm -f "${LOCKFILE}" } |
From: Jan-Benedict G. <jb...@us...> - 2005-12-19 12:28:55
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24802 Modified Files: build_toolchain.sh Log Message: - Warn if `runtest' isn't there. Needed for checking. - Run GCC testsuite later, after there's a libc. That way, at least tests requiring a libc will work (though execution won't, of course...) Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.44 retrieving revision 1.45 diff -u -d -r1.44 -r1.45 --- build_toolchain.sh 18 Dec 2005 12:21:55 -0000 1.44 +++ build_toolchain.sh 19 Dec 2005 12:28:45 -0000 1.45 @@ -23,12 +23,18 @@ # Test if all required tools are installed. # REQ_TOOLS="flex bison" -for tool in $REQ_TOOLS; do +for tool in ${REQ_TOOLS}; do if ! which $tool > /dev/null; then echo "Error: $tool is required by `basename $0` but was not found on your system." >&2 exit 1 fi done +WARN_TOOLS="runtest" +for tool in ${WARN_TOOLS}; do + if ! which $tool > /dev/null; then + echo "Warning: $tool is possibly needed by `basename $0` but was not found on your system." >&2 + fi +done # @@ -558,17 +564,8 @@ # Build build "${BUILD_GCC1}" && execute make ${MAKEFLAGS} all-gcc - # Check - build "${BUILD_GCC1}" && \ - build "${DO_CHECKS_GCC}" && \ - execute make ${MAKEFLAGS} check-gcc || true - # 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. - build "${DO_CHECKS_GCC}" && "${GCC_SRC}/contrib/test_summary" -m gcc...@gc... > "${ALL_BASE}/send_gcc_summary.sh" popd # @@ -603,11 +600,12 @@ # Build # build "${BUILD_GCC1}" && (yes "" | execute make ${MAKEFLAGS};) - build "${BUILD_GCC1}" && execute make ${MAKEFLAGS} + build "${BUILD_UCLIBC}" && execute make headers + build "${BUILD_UCLIBC}" && execute make ${MAKEFLAGS} # Install - build "${BUILD_GCC1}" && execute make install - build "${BUILD_GCC1}" && execute make DEVEL_PREFIX="${INSTALL_NATIVE_BASE}/usr/${TARGET}/" install + build "${BUILD_UCLIBC}" && execute make install + build "${BUILD_UCLIBC}" && execute make DEVEL_PREFIX="${INSTALL_NATIVE_BASE}/usr/${TARGET}/" install case "${TARGET}" in vax-*) @@ -669,6 +667,20 @@ # +# Now check GCC, if requested +# +pushd "${GCC1_BUILD}" + # Check + build "${BUILD_GCC1}" && \ + build "${DO_CHECKS_GCC}" && \ + execute make ${MAKEFLAGS} check-gcc || true + + # Create a test summary to be sent as a proof that the vax-linux + # community exists and is still alive. + build "${DO_CHECKS_GCC}" && "${GCC_SRC}/contrib/test_summary" -m gcc...@gc... > "${ALL_BASE}/send_gcc_summary.sh" +popd + +# # Build binutils to run on the target system # pushd "${BINUTILS_NATIVE_BUILD}" |
From: Jan-Benedict G. <jb...@us...> - 2005-12-18 18:34:38
|
Update of /cvsroot/linux-vax/toolchain/patches In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15186 Added Files: gcc-000008-fix-again-r108480.patch uclibc-000033-config-FTP_WORDEXP.patch Log Message: - gcc: A new fix for r108480. That one that was put into SVN by somebody else under the "obvious" rule is, erm, obviously wrong. - uClibc: Enable more options. --- NEW FILE: gcc-000008-fix-again-r108480.patch --- diff -Nurp src-gcc-fresh/gcc/struct-equiv.c src-gcc-hacked/gcc/struct-equiv.c --- src-gcc-fresh/gcc/struct-equiv.c 2005-12-17 03:17:31.000000000 +0100 +++ src-gcc-hacked/gcc/struct-equiv.c 2005-12-17 13:29:09.000000000 +0100 @@ -249,7 +249,7 @@ struct_equiv_improve_checkpoint (struct struct equiv_info *info) { #ifdef HAVE_cc0 - if (reg_mentioned_p (cc0_rtx, p->x_start) && !sets_cc0_p (p->x_start)) + if (reg_mentioned_p (cc0_rtx, info->cur.x_start) && !sets_cc0_p (info->cur.x_start)) return; #endif if (info->cur.input_count >= IMPOSSIBLE_MOVE_FACTOR) --- NEW FILE: uclibc-000033-config-FTP_WORDEXP.patch --- diff -Nurp src-uclibc-fresh/.config src-uclibc-hacked/.config --- src-uclibc-fresh/.config 2005-12-16 17:10:20.000000000 +0100 +++ src-uclibc-hacked/.config 2005-12-16 21:52:51.000000000 +0100 @@ -72,8 +72,10 @@ UCLIBC_TZ_FILE_PATH="/etc/TZ" # # Networking Support # -# UCLIBC_HAS_IPV6 is not set -# UCLIBC_HAS_RPC is not set +UCLIBC_HAS_IPV6=y +UCLIBC_HAS_RPC=y +UCLIBC_HAS_FULL_RPC=y +UCLIBC_HAS_REENTRANT_RPC=y # # String and Stdio Support @@ -105,10 +107,10 @@ UCLIBC_HAS_STDIO_BUILTIN_BUFFER_NONE=y UCLIBC_HAS_STDIO_GETC_MACRO=y UCLIBC_HAS_STDIO_PUTC_MACRO=y UCLIBC_HAS_STDIO_AUTO_RW_TRANSITION=y -# UCLIBC_HAS_FOPEN_LARGEFILE_MODE is not set -# UCLIBC_HAS_FOPEN_EXCLUSIVE_MODE is not set -# UCLIBC_HAS_GLIBC_CUSTOM_STREAMS is not set -# UCLIBC_HAS_PRINTF_M_SPEC is not set +UCLIBC_HAS_FOPEN_LARGEFILE_MODE=y +UCLIBC_HAS_FOPEN_EXCLUSIVE_MODE=y +UCLIBC_HAS_GLIBC_CUSTOM_STREAMS=y +UCLIBC_HAS_PRINTF_M_SPEC=y UCLIBC_HAS_ERRNO_MESSAGES=y # UCLIBC_HAS_SYS_ERRLIST is not set UCLIBC_HAS_SIGNUM_MESSAGES=y @@ -120,8 +122,8 @@ UCLIBC_HAS_GNU_GETOPT=y # UCLIBC_HAS_REGEX=y # UCLIBC_HAS_REGEX_OLD is not set -# UCLIBC_HAS_WORDEXP is not set -# UCLIBC_HAS_FTW is not set +UCLIBC_HAS_WORDEXP=y +UCLIBC_HAS_FTW=y UCLIBC_HAS_GLOB=y # |
From: Jan-Benedict G. <jb...@us...> - 2005-12-18 12:22:52
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14453 Modified Files: run_test_build.sh Log Message: - Make it even more readable. Index: run_test_build.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- run_test_build.sh 18 Dec 2005 11:52:23 -0000 1.10 +++ run_test_build.sh 18 Dec 2005 12:22:42 -0000 1.11 @@ -121,7 +121,7 @@ echo "" echo "We managed to build these parts:" echo "" - grep '^#' "${BUILD_DIRECTORY}/build.log" + egrep '(^#|^$)' "${BUILD_DIRECTORY}/build.log" echo "" echo "...and this are the 100 last lines of the build.log:" echo "" |
From: Jan-Benedict G. <jb...@us...> - 2005-12-18 12:22:09
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13855 Modified Files: build_toolchain.sh Log Message: - Use the command line Ive actually used. Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.43 retrieving revision 1.44 diff -u -d -r1.43 -r1.44 --- build_toolchain.sh 17 Dec 2005 20:35:55 -0000 1.43 +++ build_toolchain.sh 18 Dec 2005 12:21:55 -0000 1.44 @@ -652,15 +652,17 @@ --with-headers="${LINUX_SRC}/include" \ --disable-shared \ --enable-static \ - --enable-add-ons=linuxthreads \ - --without-fp -nfp + --enable-add-ons=linuxthreads + # # For now, try to build as much of GNU lobc as possible, then # exit, because this won't work and thus there's no native # compiler based on glibc... # execute make || true + echo "" >&2 echo "WARNING: This build is was faked to be okay" >&2 + echo "" >&2 exit 0 popd fi |
From: Jan-Benedict G. <jb...@us...> - 2005-12-18 11:52:37
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7413 Modified Files: run_test_build.sh Log Message: - Send a more helpful email if a build is fucked up. We basically want to know what really worked, as well as the last lines of the build.log to see what error actually happened. Index: run_test_build.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- run_test_build.sh 17 Dec 2005 21:11:43 -0000 1.9 +++ run_test_build.sh 18 Dec 2005 11:52:23 -0000 1.10 @@ -119,8 +119,14 @@ echo "Here's the difference of the build log of the last" echo "known-successful build:" echo "" + echo "We managed to build these parts:" + echo "" + grep '^#' "${BUILD_DIRECTORY}/build.log" + echo "" + echo "...and this are the 100 last lines of the build.log:" + echo "" echo "================== 8< -------------------------" - compare_buildlog.sh "${BUILD_OKAY}" "${BUILD_DIRECTORY}/build.log" + tail -100 "${BUILD_DIRECTORY}/build.log" echo "------------------ >8 =========================" echo "" echo "Have a nice day," |
From: Jan-Benedict G. <jb...@us...> - 2005-12-17 21:11:51
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29244 Modified Files: run_test_build.sh Log Message: - Remove build dir again. This was accidentally checked in :-( Index: run_test_build.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- run_test_build.sh 17 Dec 2005 20:31:45 -0000 1.8 +++ run_test_build.sh 17 Dec 2005 21:11:43 -0000 1.9 @@ -61,7 +61,7 @@ } function unlock() { - #rm -rf "${BUILD_DIRECTORY}" + rm -rf "${BUILD_DIRECTORY}" rm -f "${LOCKFILE}" } |
From: Jan-Benedict G. <jb...@us...> - 2005-12-17 21:08:47
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28115 Modified Files: compare_buildlog.sh Log Message: - Don't present unuseful error messages if a build log file doesn't exist. Assume an empty file instead. Index: compare_buildlog.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/compare_buildlog.sh,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- compare_buildlog.sh 16 Dec 2005 11:49:36 -0000 1.2 +++ compare_buildlog.sh 17 Dec 2005 21:08:33 -0000 1.3 @@ -8,8 +8,8 @@ exit 1 fi -cat "$1" | sed -e 's/[[:digit:]]\{8\}-[[:digit:]]\{6\}/xxxxxxxx-xxxxxx/g' | sed -e 's#^/tmp/cc......\.s#/tmp/ccXXXXXX.s#' > "${TEMP1FILE}" -cat "$2" | sed -e 's/[[:digit:]]\{8\}-[[:digit:]]\{6\}/xxxxxxxx-xxxxxx/g' | sed -e 's#^/tmp/cc......\.s#/tmp/ccXXXXXX.s#' > "${TEMP2FILE}" +[ -r "${1}" ] && cat "$1" | sed -e 's/[[:digit:]]\{8\}-[[:digit:]]\{6\}/xxxxxxxx-xxxxxx/g' | sed -e 's#^/tmp/cc......\.s#/tmp/ccXXXXXX.s#' > "${TEMP1FILE}" +[ -r "${2}" ] && cat "$2" | sed -e 's/[[:digit:]]\{8\}-[[:digit:]]\{6\}/xxxxxxxx-xxxxxx/g' | sed -e 's#^/tmp/cc......\.s#/tmp/ccXXXXXX.s#' > "${TEMP2FILE}" diff -u "${TEMP1FILE}" "${TEMP2FILE}" |
From: Jan-Benedict G. <jb...@us...> - 2005-12-17 20:36:04
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15389 Modified Files: build_toolchain.sh Log Message: - ports first, then core libc. Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- build_toolchain.sh 17 Dec 2005 19:12:19 -0000 1.42 +++ build_toolchain.sh 17 Dec 2005 20:35:55 -0000 1.43 @@ -433,8 +433,8 @@ # Copy pristine sources # copy_directory.sh "${BINUTILS_CVS}" "${BINUTILS_SRC}" -copy_directory.sh "${GLIBC_CVS}" "${GLIBC_SRC}" copy_directory.sh "${GLIBC_PORTS_CVS}" "${GLIBC_SRC}" +copy_directory.sh "${GLIBC_CVS}" "${GLIBC_SRC}" copy_directory.sh "${GCC_CVS}" "${GCC_SRC}" copy_directory.sh "${LINUX_CVS}" "${LINUX_SRC}" copy_directory.sh "${UCLIBC_SVN}" "${UCLIBC_SRC}" |
From: Jan-Benedict G. <jb...@us...> - 2005-12-17 20:31:53
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13901 Modified Files: run_test_build.sh Log Message: - Be nice :) Index: run_test_build.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- run_test_build.sh 17 Dec 2005 17:23:45 -0000 1.7 +++ run_test_build.sh 17 Dec 2005 20:31:45 -0000 1.8 @@ -61,7 +61,7 @@ } function unlock() { - rm -rf "${BUILD_DIRECTORY}" + #rm -rf "${BUILD_DIRECTORY}" rm -f "${LOCKFILE}" } @@ -124,7 +124,7 @@ echo "------------------ >8 =========================" echo "" echo "Have a nice day," - echo " ${I_AM}" + echo " Your ${I_AM}" echo "" ) | send_stdin "Failed build for ${TARGET}" mv "${BUILD_DIRECTORY}/build.log" "${BUILD_BAD}" |
From: Jan-Benedict G. <jb...@us...> - 2005-12-17 19:12:30
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18811 Modified Files: build_toolchain.sh Log Message: - Log what's executed. Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- build_toolchain.sh 17 Dec 2005 19:08:19 -0000 1.41 +++ build_toolchain.sh 17 Dec 2005 19:12:19 -0000 1.42 @@ -644,7 +644,7 @@ # # The --with-headers part is important, --with-sysinclude # probably isn't... - CC="${TARGET}-gcc" "${GLIBC_SRC}/configure" \ + CC="${TARGET}-gcc" execute "${GLIBC_SRC}/configure" \ --target="${TARGET}" \ --disable-sanity-checks \ --host="${TARGET}" \ @@ -659,7 +659,7 @@ # exit, because this won't work and thus there's no native # compiler based on glibc... # - make || true + execute make || true echo "WARNING: This build is was faked to be okay" >&2 exit 0 popd |
From: Jan-Benedict G. <jb...@us...> - 2005-12-17 19:08:27
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17771 Modified Files: build_toolchain.sh Log Message: - Tryin' to build in the correct directory would probably help... Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.40 retrieving revision 1.41 diff -u -d -r1.40 -r1.41 --- build_toolchain.sh 17 Dec 2005 18:51:53 -0000 1.40 +++ build_toolchain.sh 17 Dec 2005 19:08:19 -0000 1.41 @@ -638,29 +638,31 @@ # Build GNU libc # if [ "${BUILD_GLIBC}" -ne 0 ]; then - # This is only here because I'd probably forget how I started - # to work on GNU libc. So this is my external brain... - # - # The --with-headers part is important, --with-sysinclude - # probably isn't... - CC="${TARGET}-gcc" "${GLIBC_SRC}/configure" \ - --target="${TARGET}" \ - --disable-sanity-checks \ - --host="${TARGET}" \ - --with-sysinclude="${LINUX_SRC}/include" \ - --with-headers="${LINUX_SRC}/include" \ - --disable-shared \ - --enable-static \ - --enable-add-ons=linuxthreads \ - --without-fp -nfp - # - # For now, try to build as much of GNU lobc as possible, then - # exit, because this won't work and thus there's no native - # compiler based on glibc... - # - make || true - echo "WARNING: This build is was faked to be okay" >&2 - exit 0 + pushd "${GLIBC_BUILD}" + # This is only here because I'd probably forget how I started + # to work on GNU libc. So this is my external brain... + # + # The --with-headers part is important, --with-sysinclude + # probably isn't... + CC="${TARGET}-gcc" "${GLIBC_SRC}/configure" \ + --target="${TARGET}" \ + --disable-sanity-checks \ + --host="${TARGET}" \ + --with-sysinclude="${LINUX_SRC}/include" \ + --with-headers="${LINUX_SRC}/include" \ + --disable-shared \ + --enable-static \ + --enable-add-ons=linuxthreads \ + --without-fp -nfp + # + # For now, try to build as much of GNU lobc as possible, then + # exit, because this won't work and thus there's no native + # compiler based on glibc... + # + make || true + echo "WARNING: This build is was faked to be okay" >&2 + exit 0 + popd fi |
From: Jan-Benedict G. <jb...@us...> - 2005-12-17 18:52:01
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14094 Modified Files: build_toolchain.sh Log Message: - Don't use build_toolchain.sh only for writing down how I manually try to build GNU libc. Make it actually work. - This doesn't mean that there's a working GNU libc for VAX right now :-( Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- build_toolchain.sh 16 Dec 2005 11:25:09 -0000 1.39 +++ build_toolchain.sh 17 Dec 2005 18:51:53 -0000 1.40 @@ -643,17 +643,24 @@ # # The --with-headers part is important, --with-sysinclude # probably isn't... - CC=vax-linux-gcc ../../src/glibc/configure \ - --target=vax-linux \ - --disable-sanity-checks \ - --host=vax-linux \ - --with-sysinclude=/home/jbglaw/vax-linux/scm/test-for-glibc/src/linux/include \ - --with-headers=/home/jbglaw/vax-linux/scm/test-for-glibc/src/linux/include \ - --disable-shared \ - --enable-static \ - --enable-add-ons=linuxthreads \ + CC="${TARGET}-gcc" "${GLIBC_SRC}/configure" \ + --target="${TARGET}" \ + --disable-sanity-checks \ + --host="${TARGET}" \ + --with-sysinclude="${LINUX_SRC}/include" \ + --with-headers="${LINUX_SRC}/include" \ + --disable-shared \ + --enable-static \ + --enable-add-ons=linuxthreads \ --without-fp -nfp - make + # + # For now, try to build as much of GNU lobc as possible, then + # exit, because this won't work and thus there's no native + # compiler based on glibc... + # + make || true + echo "WARNING: This build is was faked to be okay" >&2 + exit 0 fi |