X-Git-Url: https://git.gag.com/?p=fw%2Fcortex-toolchain;a=blobdiff_plain;f=summon-arm-toolchain;h=222f4fe1e7fe479181fc96bab29fc4aac5b7eb19;hp=6a00c12ce3401bcae4321d9886487a80c67843fd;hb=c9917c6f3167b3f6174b93a057101a5213310039;hpb=80dca85c76e3fa5cb9785ece3674b373640f5025 diff --git a/summon-arm-toolchain b/summon-arm-toolchain index 6a00c12..222f4fe 100755 --- a/summon-arm-toolchain +++ b/summon-arm-toolchain @@ -9,15 +9,27 @@ # libmpc-dev autoconf texinfo build-essential # +# Stop if any command fails +set -e + TARGET=arm-none-eabi # Or: TARGET=arm-elf PREFIX=${HOME}/arm-none-eabi # Install location of your final toolchain -PARALLEL="" # Or: PARALLEL="-j 5" for 4 CPUs +PARALLEL= # Or: PARALLEL="-j 5" for 4 CPUs DARWIN_OPT_PATH=/opt/local # Path in which MacPorts or Fink is installed -BINUTILS=binutils-2.19.1 -GCC=gcc-4.4.2 -NEWLIB=newlib-1.17.0 -GDB=gdb-7.1 +# For FSF GCC: +GCCVERSION=4.5.1 +GCC=gcc-${GCCVERSION} +GCCURL=http://ftp.gnu.org/gnu/gcc/${GCC}/${GCC}.tar.gz + +# For the Linaro GCC: +# GCCVERSION=4.5-2010.08-1 +# GCC=gcc-linaro-${GCCVERSION} +# GCCURL=http://launchpad.net/gcc-linaro/4.5/${GCCVERSION}/+download/${GCC}.tar.gz + +BINUTILS=binutils-2.20 +NEWLIB=newlib-1.18.0 +GDB=gdb-7.2 LIBCMSIS=v1.10-2 LIBSTM32=v3.0.0-1 LIBSTM32USB=v3.0.1-1 @@ -25,8 +37,10 @@ LIBOPENSTM32=master LIBSTM32_EN=0 LIBOPENSTM32_EN=0 +SUDO= SUMMON_DIR=$(pwd) SOURCES=${SUMMON_DIR}/sources +STAMPS=${SUMMON_DIR}/stamps export PATH="${PREFIX}/bin:${PATH}" @@ -34,14 +48,48 @@ GCCFLAGS= GDBFLAGS= BINUTILFLAGS= +# To default to the Cortex-M3: +# GCCFLAGS="--with-arch=armv7-m --with-mode=thumb" + +# Fetch a versioned file from a URL +function fetch { + if [ ! -e ${STAMPS}/$1.fetch ]; then + echo "Downloading $1 sources..." + wget -c --no-passive-ftp $2 + touch ${STAMPS}/$1.fetch + fi +} + +# Log a message out to the console +function log { + echo "******************************************************************" + echo "* $*" + echo "******************************************************************" +} + +# Unpack an archive +function unpack { + log Unpacking $* + # Use 'auto' mode decompression. Replace with a switch if tar doesn't support -a + tar xvaf ${SOURCES}/$1.tar.* +} + +# Install a build +function install { + log $1 + ${SUDO} make ${PARALLEL} $2 $3 $4 $5 $6 $7 $8 +} + case "$(uname)" in Linux) echo "Found Linux OS." ;; Darwin) echo "Found Darwin OS." - GCCFLAGS="--with-gmp=${DARWIN_OPT_PATH} \ + GCCFLAGS="${GCCFLAGS} \ + --with-gmp=${DARWIN_OPT_PATH} \ --with-mpfr=${DARWIN_OPT_PATH} \ + --with-mpc=${DARWIN_OPT_PATH} \ -with-libiconv-prefix=${DARWIN_OPT_PATH}" ;; *) @@ -50,23 +98,14 @@ case "$(uname)" in ;; esac -if [ ! -e ${SOURCES} ]; then - mkdir ${SOURCES} -fi +mkdir -p ${STAMPS} ${SOURCES} cd ${SOURCES} -echo "Downloading binutils sources..." -wget -c http://ftp.gnu.org/gnu/binutils/${BINUTILS}.tar.bz2 - -echo "Downloading gcc sources..." -wget -c http://ftp.gnu.org/gnu/gcc/${GCC}/${GCC}.tar.bz2 - -echo "Downloading newlib sources..." -wget -c --no-passive-ftp ftp://sources.redhat.com/pub/newlib/${NEWLIB}.tar.gz - -echo "Downloading gdb sources..." -wget -c http://ftp.gnu.org/gnu/gdb/${GDB}.tar.bz2 +fetch ${BINUTILS} http://ftp.gnu.org/gnu/binutils/${BINUTILS}.tar.bz2 +fetch ${GCC} ${GCCURL} +fetch ${NEWLIB} ftp://sources.redhat.com/pub/newlib/${NEWLIB}.tar.gz +fetch ${GDB} http://ftp.gnu.org/gnu/gdb/${GDB}.tar.bz2 if [ ${LIBSTM32_EN} != 0 ]; then if [ ! -e libcmsis-${LIBCMSIS}.tar.bz2 ]; then @@ -118,15 +157,10 @@ if [ ! -e build ]; then mkdir build fi -if [ ! -e .${BINUTILS}.build ]; then - echo "******************************************************************" - echo "* Unpacking ${BINUTILS}" - echo "******************************************************************" - tar xfvj ${SOURCES}/${BINUTILS}.tar.bz2 +if [ ! -e ${STAMPS}/${BINUTILS}.build ]; then + unpack ${BINUTILS} cd build - echo "******************************************************************" - echo "* Configuring ${BINUTILS}" - echo "******************************************************************" + log "Configuring ${BINUTILS}" ../${BINUTILS}/configure --target=${TARGET} \ --prefix=${PREFIX} \ --enable-interwork \ @@ -135,32 +169,20 @@ if [ ! -e .${BINUTILS}.build ]; then --with-gnu-ld \ --disable-nls \ --disable-werror \ - ${BINUTILFLAGS} || exit - echo "******************************************************************" - echo "* Building ${BINUTILS}" - echo "******************************************************************" - make ${PARALLEL} || exit - echo "******************************************************************" - echo "* Installing ${BINUTILS}" - echo "******************************************************************" - make install || exit + ${BINUTILFLAGS} + log "Building ${BINUTILS}" + make ${PARALLEL} + install ${BINUTILS} install cd .. - echo "******************************************************************" - echo "* Cleaning up ${BINUTILS}" - echo "******************************************************************" - touch .${BINUTILS}.build + log "Cleaning up ${BINUTILS}" + touch ${STAMPS}/${BINUTILS}.build rm -rf build/* ${BINUTILS} fi -if [ ! -e .${GCC}-boot.build ]; then - echo "******************************************************************" - echo "* Unpacking ${GCC}-boot" - echo "******************************************************************" - tar xfvj ${SOURCES}/${GCC}.tar.bz2 +if [ ! -e ${STAMPS}/${GCC}-boot.build ]; then + unpack ${GCC} boot cd build - echo "******************************************************************" - echo "* Configuring ${GCC}-boot" - echo "******************************************************************" + log "Configuring ${GCC}-boot" ../${GCC}/configure --target=${TARGET} \ --prefix=${PREFIX} \ --enable-interwork \ @@ -173,32 +195,20 @@ if [ ! -e .${GCC}-boot.build ]; then --with-gnu-ld \ --disable-nls \ --disable-werror \ - ${GCCFLAGS} || exit - echo "******************************************************************" - echo "* Building ${GCC}-boot" - echo "******************************************************************" - make ${PARALLEL} all-gcc || exit - echo "******************************************************************" - echo "* Installing ${GCC}-boot" - echo "******************************************************************" - make install-gcc || exit + ${GCCFLAGS} + log "Building ${GCC}-boot" + make ${PARALLEL} all-gcc + install ${GCC}-boot install-gcc cd .. - echo "******************************************************************" - echo "* Cleaning up ${GCC}-boot" - echo "******************************************************************" - touch .${GCC}-boot.build + log "Cleaning up ${GCC}-boot" + touch ${STAMPS}/${GCC}-boot.build rm -rf build/* ${GCC} fi -if [ ! -e .${NEWLIB}.build ]; then - echo "******************************************************************" - echo "* Unpacking ${NEWLIB}" - echo "******************************************************************" - tar xfvz ${SOURCES}/${NEWLIB}.tar.gz +if [ ! -e ${STAMPS}/${NEWLIB}.build ]; then + unpack ${NEWLIB} cd build - echo "******************************************************************" - echo "* Configuring ${NEWLIB}" - echo "******************************************************************" + log "Configuring ${NEWLIB}" ../${NEWLIB}/configure --target=${TARGET} \ --prefix=${PREFIX} \ --enable-interwork \ @@ -207,33 +217,21 @@ if [ ! -e .${NEWLIB}.build ]; then --with-gnu-ld \ --disable-nls \ --disable-werror \ - --disable-newlib-supplied-syscalls || exit - echo "******************************************************************" - echo "* Building ${NEWLIB}" - echo "******************************************************************" - make ${PARALLEL} || exit - echo "******************************************************************" - echo "* Installing ${NEWLIB}" - echo "******************************************************************" - make install || exit + --disable-newlib-supplied-syscalls + log "Building ${NEWLIB}" + make ${PARALLEL} + install ${NEWLIB} install cd .. - echo "******************************************************************" - echo "* Cleaning up ${NEWLIB}" - echo "******************************************************************" - touch .${NEWLIB}.build + log "Cleaning up ${NEWLIB}" + touch ${STAMPS}/${NEWLIB}.build rm -rf build/* ${NEWLIB} fi # Yes, you need to build gcc again! -if [ ! -e .${GCC}.build ]; then - echo "******************************************************************" - echo "* Unpacking ${GCC}" - echo "******************************************************************" - tar xfvj ${SOURCES}/${GCC}.tar.bz2 +if [ ! -e ${STAMPS}/${GCC}.build ]; then + unpack ${GCC} cd build - echo "******************************************************************" - echo "* Configuring ${GCC}" - echo "******************************************************************" + log "Configuring ${GCC}" ../${GCC}/configure --target=${TARGET} \ --prefix=${PREFIX} \ --enable-interwork \ @@ -245,140 +243,81 @@ if [ ! -e .${GCC}.build ]; then --with-gnu-ld \ --disable-nls \ --disable-werror \ - ${GCCFLAGS} || exit - echo "******************************************************************" - echo "* Building ${GCC}" - echo "******************************************************************" - make ${PARALLEL} || exit - echo "******************************************************************" - echo "* Installing ${GCC}" - echo "******************************************************************" - make install || exit + ${GCCFLAGS} + log "Building ${GCC}" + make ${PARALLEL} + install ${GCC} install cd .. - echo "******************************************************************" - echo "* Cleaning up ${GCC}" - echo "******************************************************************" - touch .${GCC}.build + log "Cleaning up ${GCC}" + touch ${STAMPS}/${GCC}.build rm -rf build/* ${GCC} fi -if [ ! -e .${GDB}.build ]; then - echo "******************************************************************" - echo "* Unpacking ${GDB}" - echo "******************************************************************" - tar xfvj ${SOURCES}/${GDB}.tar.bz2 +if [ ! -e ${STAMPS}/${GDB}.build ]; then + unpack ${GDB} cd build - echo "******************************************************************" - echo "* Configuring ${GDB}" - echo "******************************************************************" + log "Configuring ${GDB}" ../${GDB}/configure --target=${TARGET} \ --prefix=${PREFIX} \ --enable-interwork \ --enable-multilib \ --disable-werror \ - ${GDBFLAGS} || exit - echo "******************************************************************" - echo "* Building ${GDB}" - echo "******************************************************************" - make ${PARALLEL} || exit - echo "******************************************************************" - echo "* Installing ${GDB}" - echo "******************************************************************" - make install || exit + ${GDBFLAGS} + log "Building ${GDB}" + make ${PARALLEL} + install ${GDB} install cd .. - echo "******************************************************************" - echo "* Cleaning up ${GDB}" - echo "******************************************************************" - touch .${GDB}.build + log "Cleaning up ${GDB}" + touch ${STAMPS}/${GDB}.build rm -rf build/* ${GDB} fi if [ ${LIBSTM32_EN} != 0 ]; then if [ ! -e .libcmsis-${LIBCMSIS}.build ]; then - echo "******************************************************************" - echo "* Unpacking libcmsis-${LIBCMSIS}" - echo "******************************************************************" - tar xfvj ${SOURCES}/libcmsis-${LIBCMSIS}.tar.bz2 + unpack libcmsis-${LIBCMSIS} cd libcmsis-${LIBCMSIS} - echo "******************************************************************" - echo "* Building libcmsis-${LIBCMSIS}" - echo "******************************************************************" - make arch_prefix=${TARGET} prefix=${PREFIX} || exit - echo "******************************************************************" - echo "* Installing libcmsis-${LIBCMSIS}" - echo "******************************************************************" - make arch_prefix=${TARGET} prefix=${PREFIX} install || exit + log "Building libcmsis-${LIBCMSIS}" + make arch_prefix=${TARGET} prefix=${PREFIX} + install libcmsis-${LIBCMSIS} arch_prefix=${TARGET} prefix=${PREFIX} install cd .. - echo "******************************************************************" - echo "* Cleaning up libcmsis-${LIBCMSIS}" - echo "******************************************************************" + log "Cleaning up libcmsis-${LIBCMSIS}" touch .libcmsis-${LIBCMSIS}.build rm -rf libcmsis-${LIBCMSIS} fi if [ ! -e .libstm32-${LIBSTM32}.build ]; then - echo "******************************************************************" - echo "* Unpacking libstm32-${LIBSTM32}" - echo "******************************************************************" - tar xfvj ${SOURCES}/libstm32-${LIBSTM32}.tar.bz2 + unpack libstm32-${LIBSTM32} cd libstm32-${LIBSTM32} - echo "******************************************************************" - echo "* Building libstm32-${LIBSTM32}" - echo "******************************************************************" - make arch_prefix=${TARGET} prefix=${PREFIX} || exit - echo "******************************************************************" - echo "* Installing libstm32-${LIBSTM32}" - echo "******************************************************************" - make arch_prefix=${TARGET} prefix=${PREFIX} install || exit + log "Building libstm32-${LIBSTM32}" + make arch_prefix=${TARGET} prefix=${PREFIX} + install libstm32-${LIBSTM32} arch_prefix=${TARGET} prefix=${PREFIX} install cd .. - echo "******************************************************************" - echo "* Cleaning up libstm32-${LIBSTM32}" - echo "******************************************************************" + log "Cleaning up libstm32-${LIBSTM32}" touch .libstm32-${LIBSTM32}.build rm -rf libstm32-${LIBSTM32} fi if [ ! -e .libstm32usb-${LIBSTM32USB}.build ]; then - echo "******************************************************************" - echo "* Unpacking libstm32usb-${LIBSTM32USB}" - echo "******************************************************************" - tar xfvj ${SOURCES}/libstm32usb-${LIBSTM32USB}.tar.bz2 + unpack libstm32usb-${LIBSTM32USB} cd libstm32usb-${LIBSTM32USB} - echo "******************************************************************" - echo "* Building libstm32usb-${LIBSTM32USB}" - echo "******************************************************************" - make arch_prefix=${TARGET} prefix=${PREFIX} || exit - echo "******************************************************************" - echo "* Installing libstm32usb-${LIBSTM32USB}" - echo "******************************************************************" - make arch_prefix=${TARGET} prefix=${PREFIX} install || exit + log "Building libstm32usb-${LIBSTM32USB}" + make arch_prefix=${TARGET} prefix=${PREFIX} + install libstm32usb-${LIBSTM32USB} arch_prefix=${TARGET} prefix=${PREFIX} install cd .. - echo "******************************************************************" - echo "* Cleaning up libstm32usb-${LIBSTM32USB}" - echo "******************************************************************" + log "Cleaning up libstm32usb-${LIBSTM32USB}" touch .libstm32usb-${LIBSTM32USB}.build rm -rf libstm32usb-${LIBSTM32USB} fi fi if [ $LIBOPENSTM32_EN != 0 ]; then - echo "******************************************************************" - echo "* Unpacking libopenstm32-${LIBOPENSTM32}" - echo "******************************************************************" - tar xfvj ${SOURCES}/libopenstm32-${LIBOPENSTM32}.tar.bz2 + unpack libopenstm32-${LIBOPENSTM32} cd libopenstm32-${LIBOPENSTM32} - echo "******************************************************************" - echo "* Building libopenstm32-${LIBOPENSTM32}" - echo "******************************************************************" - make PREFIX=${TARGET} DESTDIR=${PREFIX} || exit - echo "******************************************************************" - echo "* Installing libopenstm32-${LIBOPENSTM32}" - echo "******************************************************************" - make PREFIX=${TARGET} DESTDIR=${PREFIX} install || exit + log "Building libopenstm32-${LIBOPENSTM32}" + make PREFIX=${TARGET} DESTDIR=${PREFIX} + install libopenstm32-${LIBOPENSTM32} PREFIX=${TARGET} DESTDIR=${PREFIX} install cd .. - echo "******************************************************************" - echo "* Cleaning up libopenstm32-${LIBOPENSTM32}" - echo "******************************************************************" + log "Cleaning up libopenstm32-${LIBOPENSTM32}" touch .libopenstm32-${LIBOPENSTM32}.build rm -rf libopenstm32-${LIBOPENSTM32} fi