X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=util%2Fcrossgcc%2Fbuildgcc;h=9211cfdd72c4f8bca24a86eb1d76adc1cefa52fb;hb=ceacd77356259b23aa22a5beb34b6e19a0c7912c;hp=f25685121ce0f646b18cf006702c679e64efb0a3;hpb=ba3b0ebdf8dfc054d962ac291a538d41770c4419;p=coreboot.git diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index f25685121..9211cfdd7 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -18,8 +18,8 @@ # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA # -CROSSGCC_DATE="May 18th, 2010" -CROSSGCC_VERSION="1.01" +CROSSGCC_DATE="December 16th, 2010" +CROSSGCC_VERSION="1.03" # default settings TARGETDIR=`pwd`/xgcc @@ -28,15 +28,13 @@ DESTDIR= # version numbers GMP_VERSION=5.0.1 -MPFR_VERSION=2.4.2 +MPFR_VERSION=3.0.0 MPC_VERSION=0.8.2 LIBELF_VERSION=0.8.13 -# GCC 4.5.0 is broken on some AMD boards: -# GCC_VERSION=4.5.0 # enable for Link Time Optimization & Co -GCC_VERSION=4.4.4 +GCC_VERSION=4.5.2 BINUTILS_VERSION=2.20.1 -GDB_VERSION=7.1 -W32API_VERSION=3.14 +GDB_VERSION=7.2 +W32API_VERSION=3.15 MINGWRT_VERSION=3.18 # archive locations @@ -44,11 +42,11 @@ GMP_ARCHIVE="ftp://ftp.gmplib.org/pub/gmp-${GMP_VERSION}/gmp-${GMP_VERSION}.tar. MPFR_ARCHIVE="http://www.mpfr.org/mpfr-${MPFR_VERSION}/mpfr-${MPFR_VERSION}.tar.bz2" MPC_ARCHIVE="http://www.multiprecision.org/mpc/download/mpc-${MPC_VERSION}.tar.gz" LIBELF_ARCHIVE="http://www.mr511.de/software/libelf-${LIBELF_VERSION}.tar.gz" -GCC_ARCHIVE="ftp://ftp.gwdg.de/pub/gnu/ftp/gnu/gcc/gcc-${GCC_VERSION}/gcc-core-${GCC_VERSION}.tar.bz2" +GCC_ARCHIVE="ftp://ftp.fu-berlin.de/unix/languages/gcc/releases/gcc-${GCC_VERSION}/gcc-core-${GCC_VERSION}.tar.bz2" BINUTILS_ARCHIVE="http://ftp.gnu.org/gnu/binutils/binutils-${BINUTILS_VERSION}.tar.bz2" GDB_ARCHIVE="http://ftp.gnu.org/gnu/gdb/gdb-${GDB_VERSION}.tar.bz2" -W32API_ARCHIVE="http://downloads.sourceforge.net/project/mingw/MinGW%20API%20for%20MS-Windows/w32api-${W32API_VERSION}/w32api-${W32API_VERSION}-mingw32-src.tar.gz" -MINGWRT_ARCHIVE="http://downloads.sourceforge.net/project/mingw/MinGW%20Runtime/mingwrt-${MINGWRT_VERSION}/mingwrt-${MINGWRT_VERSION}-mingw32-src.tar.gz" +W32API_ARCHIVE="http://downloads.sourceforge.net/project/mingw/MinGW/BaseSystem/RuntimeLibrary/Win32-API/w32api-${W32API_VERSION}/w32api-${W32API_VERSION}-mingw32-src.tar.gz" +MINGWRT_ARCHIVE="http://downloads.sourceforge.net/project/mingw/MinGW/BaseSystem/RuntimeLibrary/MinGW-RT/mingwrt-${MINGWRT_VERSION}/mingwrt-${MINGWRT_VERSION}-mingw32-src.tar.gz" GMP_DIR="gmp-${GMP_VERSION}" MPFR_DIR="mpfr-${MPFR_VERSION}" @@ -61,6 +59,7 @@ W32API_DIR="w32api-${W32API_VERSION}-mingw32" MINGWRT_DIR="mingwrt-${MINGWRT_VERSION}-mingw32" SAVETEMPS=0 +SKIPGDB=0 red='\e[0;31m' RED='\e[1;31m' @@ -102,7 +101,7 @@ cleanup() myhelp() { - printf "Usage: $0 [-V] [-c] [-p ] [-d ] [-D ]\n" + printf "Usage: $0 [-V] [-c] [-p ] [-d ] [-D ] [-G]\n" printf " $0 [-V|--version]\n" printf " $0 [-h|--help]\n\n" @@ -118,6 +117,7 @@ myhelp() printf " (defaults to $TARGETDIR)\n\n" printf " [-D|--destdir ] destination directory to install cross compiler to\n" printf " (for RPM builds, default unset)\n\n" + printf " [-G|--skip-gdb] don't build GNU debugger\n" } myversion() @@ -149,11 +149,11 @@ getopt - > /dev/null 2>/dev/null || gcc -o getopt getopt.c getoptbrand="`getopt -V`" if [ "${getoptbrand:0:6}" == "getopt" ]; then # Detected GNU getopt that supports long options. - args=`getopt -l version,help,clean,directory:,platform:,jobs:,destdir:,savetemps Vhcd:p:j:D:t -- "$@"` + args=`getopt -l version,help,clean,directory:,platform:,jobs:,destdir:,savetemps,skip-gdb Vhcd:p:j:D:tG -- "$@"` eval set "$args" else # Detected non-GNU getopt - args=`getopt Vhcd:p:j:D:t $*` + args=`getopt Vhcd:p:j:D:tG $*` set -- $args fi @@ -172,12 +172,19 @@ while true ; do -p|--platform) shift; TARGETARCH="$1"; shift;; -D|--destdir) shift; DESTDIR="$1"; shift;; -j|--jobs) shift; JOBS="-j $1"; shift;; + -G|--skip-gdb) shift; SKIPGDB=1;; --) shift; break;; -*) printf "Invalid option\n\n"; myhelp; exit 1;; *) break;; esac done +GDB_PACKAGE="GDB" +if [ $SKIPGDB -eq 1 ]; then + printf "Will skip GDB ... ${green}ok${NC}\n" + GDB_PACKAGE="" +fi + MINGW_ARCHIVES="" if [ "$TARGETARCH" = "i386-mingw32" ]; then MINGW_ARCHIVES="$W32API_ARCHIVE $MINGWRT_ARCHIVE" @@ -230,7 +237,7 @@ if [ "$TARGETARCH" = "i386-mingw32" ]; then fi printf "Unpacking and patching ... \n" -for PACKAGE in GMP MPFR MPC LIBELF GCC BINUTILS GDB $MINGW_PACKAGES; do +for PACKAGE in GMP MPFR MPC LIBELF GCC BINUTILS $GDB_PACKAGE $MINGW_PACKAGES; do archive=$PACKAGE"_ARCHIVE" archive=${!archive} dir=$PACKAGE"_DIR" @@ -277,7 +284,10 @@ if [ `uname` = "Darwin" ]; then #rm .architecture_check.c .architecture_check.o fi -mkdir -p build-gmp build-mpfr build-mpc build-libelf build-binutils build-gcc build-gdb +mkdir -p build-gmp build-mpfr build-mpc build-libelf build-binutils build-gcc +if [ $SKIPGDB -eq 0 ]; then + mkdir -p build-gdb +fi if [ -f build-gmp/.success ]; then printf "Skipping GMP as it is already built\n" else @@ -356,7 +366,7 @@ printf "Building libelf ${LIBELF_VERSION} ... " cd build-libelf rm -f .failed echo "$HOSTCFLAGS" - CFLAGS="$HOSTCFLAGS" ../${LIBELF_DIR}/configure --disable-shared --prefix=$TARGETDIR \ + CFLAGS="$HOSTCFLAGS" libelf_cv_elf_h_works=no ../${LIBELF_DIR}/configure --disable-shared --prefix=$TARGETDIR \ --infodir=$TARGETDIR/info CFLAGS="$HOSTCFLAGS" || touch .failed $MAKE $JOBS || touch .failed $MAKE install DESTDIR=$DESTDIR || touch .failed @@ -417,6 +427,8 @@ fi if [ -f build-gdb/.success ]; then printf "Skipping GDB as it is already built\n" +elif [ $SKIPGDB -eq 1 ]; then + printf "Skipping GDB as requested by command line\n" else printf "Building GDB ${GDB_VERSION} ... " (