X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=summon-arm-toolchain;h=dd5d6ea931dd9bccab5a206000c8b2a3fa7cafa6;hb=b8a70633ee506d75339fcc302bdc361ec304bd1f;hp=cfa1b5a5134582c567cc07224a8977be7ba47654;hpb=bffdf8a8506048ede92bc8a17b1b4ee033c5d26d;p=summon-arm-toolchain.git diff --git a/summon-arm-toolchain b/summon-arm-toolchain index cfa1b5a..dd5d6ea 100755 --- a/summon-arm-toolchain +++ b/summon-arm-toolchain @@ -1,9 +1,10 @@ -#!/bin/bash +#!/bin/sh # Written by Uwe Hermann , released as public domain. # Modified by Piotr Esden-Tempski , released as public domain. # adapted for r0ket development by # Matthias Rampke +# requires Homebrew # Stop if any command fails set -e @@ -12,39 +13,48 @@ set -e # Settings section # You probably want to customize those ############################################################################## -TARGET=arm-eabi # Or: TARGET=arm-elf -PREFIX=${HOME}/arm # Install location of your final toolchain +TARGET=arm-none-eabi # Or: TARGET=arm-elf +[ -z $PREFIX ] && PREFIX=${HOME}/arm # Install location of your final toolchain +[ -z $WORKDIR ] && WORKDIR=$PREFIX/work #temporary directory PARALLEL= # Or: PARALLEL="-j 5" for 4 CPUs -DARWIN_CELLAR=$(brew --cellar) # Path in which MacPorts or Fink is installed # Set to 'sudo' if you need superuser privileges while installing SUDO='' # Set to 1 to be quieter while running -QUIET=1 +QUIET=0 # Set to 1 to use linaro gcc instead of the FSF gcc -USE_LINARO=1 +USE_LINARO=0 +# Set to 1 to enable C++ +USE_CPP=0 # Set to 1 to enable building of OpenOCD -OOCD_EN=1 +OOCD_EN=0 # Set to 1 to build libstm32 provided by ST LIBSTM32_EN=0 # Set to 1 to build libopenstm32 an open source library for stm32 -LIBOPENSTM32_EN=1 +LIBOPENSTM32_EN=0 # Make the gcc default to Cortex-M3 DEFAULT_TO_CORTEX_M3=1 ############################################################################## # Version and download url settings section ############################################################################## -if [ ${USE_LINARO} == 0 ] ; then +if [ ${USE_LINARO} = 0 ] ; then # For FSF GCC: - GCCVERSION=4.5.1 - GCC=gcc-${GCCVERSION} - GCCURL=http://ftp.gnu.org/gnu/gcc/${GCC}/${GCC}.tar.gz + GCCVERSION=4.6.1 + if [ ${USE_CPP} = 0 ]; then + GCC=gcc-core-${GCCVERSION} + GCCDIR=gcc-${GCCVERSION} + else + GCC=gcc-${GCCVERSION} + GCCDIR=${GCC} + fi + GCCURL=http://ftp.gnu.org/gnu/gcc/${GCCDIR}/${GCC}.tar.bz2 else # For the Linaro GCC: GCCRELEASE=4.6-2011.07 - GCCVERSION=${GCCRELEASE} - GCC=gcc-linaro-${GCCVERSION} - GCCURL=http://launchpad.net/gcc-linaro/4.5/${GCCRELEASE}/+download/${GCC}.tar.bz2 + GCCVERSION=4.6-2011.07-0 + GCC=gcc-linaro-${GCCRELEASE} + GCCDIR=gcc-linaro-${GCCVERSION} + GCCURL=http://launchpad.net/gcc-linaro/4.6/${GCCRELEASE}/+download/gcc-linaro-${GCCRELEASE}.tar.bz2 fi BINUTILS=binutils-2.21 @@ -55,6 +65,9 @@ LIBCMSIS=v1.10-2 LIBSTM32=v3.0.0-1 LIBSTM32USB=v3.0.1-1 LIBOPENSTM32=master +GMP=gmp-5.0.2 +MPFR=mpfr-3.0.1 +MPC=mpc-0.9 ############################################################################## # Flags section @@ -71,7 +84,7 @@ echo "${CPUS} cpu's detected running make with '${PARALLEL}' flag" GDBFLAGS= BINUTILFLAGS= -if [ ${DEFAULT_TO_CORTEX_M3} == 0 ] ; then +if [ ${DEFAULT_TO_CORTEX_M3} = 0 ] ; then GCCFLAGS= else # To default to the Cortex-M3: @@ -93,7 +106,7 @@ fi export PATH="${PREFIX}/bin:${PATH}" -SUMMON_DIR=$(pwd) +SUMMON_DIR=${WORKDIR} SOURCES=${SUMMON_DIR}/sources STAMPS=${SUMMON_DIR}/stamps @@ -116,25 +129,17 @@ case "$(uname)" in echo "Found Darwin OS." # darwin dependencies - DARWINDEPS="gnu-tar wget mpfr libmpc gmp" - DARWINDEPSCOUNT=4 + DARWINDEPS="wget" - echo "Installing dependencies" + echo "Installing dependencies ..." if ! which brew > /dev/null; then - echo "homebrew not installed." + echo "Homebrew not installed." else - brew install ${DARWINDEPS} | grep -v '^Warning: Formula already installed: ' + brew install ${DARWINDEPS} | (grep -v '^Warning: Formula already installed: ' || true) fi - GCCFLAGS="${GCCFLAGS} \ - --with-gmp=$(brew --prefix gmp) \ - --with-mpfr=$(brew --prefix mpfr) \ - --with-mpc=$(brew --prefix mpc) - -with-libiconv-prefix=$(brew --prefix libiconv)" + TAR=gnutar - TAR=gnutar - - --with-libiconv-prefix=${DARWIN_OPT_PATH}" OOCD_CFLAGS="-m32 -I/opt/mine/include -I/opt/local/include" OOCD_LDFLAGS="-L/opt/mine/lib -L/opt/local/lib" ;; @@ -153,23 +158,23 @@ esac ############################################################################## # Fetch a versioned file from a URL -function fetch { +fetch() { if [ ! -e ${STAMPS}/$1.fetch ]; then log "Downloading $1 sources..." - wget -c --no-passive-ftp $2 + wget -c $2 touch ${STAMPS}/$1.fetch fi } # Log a message out to the console -function log { +log() { echo "******************************************************************" echo "* $*" echo "******************************************************************" } # Unpack an archive -function unpack { +unpack() { log Unpacking $* # Use 'auto' mode decompression. Replace with a switch if tar doesn't support -a ARCHIVE=$(ls ${SOURCES}/$1.tar.*) @@ -184,20 +189,25 @@ function unpack { ;; *) echo "Unknown archive type of $1" - echo ${ARCHIVE} - exit 1 + echo "leaving the decision to tar" + TYPE= ;; esac ${TAR} xf${TYPE}${TARFLAGS} ${SOURCES}/$1.tar.* } # Install a build -function install { +install() { log $1 ${SUDO} make ${MAKEFLAGS} $2 $3 $4 $5 $6 $7 $8 } - +if [ ! -d $SUMMON_DIR ]; then + mkdir -p ${SUMMON_DIR} + SUMMON_DIR_CREATED=1 +else + SUMMON_DIR_CREATED=0 +fi mkdir -p ${STAMPS} ${SOURCES} cd ${SOURCES} @@ -206,6 +216,9 @@ 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 +fetch ${GMP} ftp://ftp.gmplib.org/pub/${GMP}/${GMP}.tar.bz2 +fetch ${MPFR} http://www.mpfr.org/${MPFR}/${MPFR}.tar.bz2 +fetch ${MPC} http://www.multiprecision.org/mpc/download/${MPC}.tar.gz if [ ${OOCD_EN} != 0 ]; then if [ ! -e openocd-${OOCD}.tar.bz2 ]; then @@ -295,9 +308,15 @@ fi if [ ! -e ${STAMPS}/${GCC}-boot.build ]; then unpack ${GCC} boot + unpack ${GMP} + mv ${GMP} ${GCCDIR}/gmp + unpack ${MPFR} + mv ${MPFR} ${GCCDIR}/mpfr + unpack ${MPC} + mv ${MPC} ${GCCDIR}/mpc cd build log "Configuring ${GCC}-boot" - ../${GCC}/configure --target=${TARGET} \ + ../${GCCDIR}/configure --target=${TARGET} \ --prefix=${PREFIX} \ --enable-interwork \ --enable-multilib \ @@ -317,13 +336,15 @@ if [ ! -e ${STAMPS}/${GCC}-boot.build ]; then cd .. log "Cleaning up ${GCC}-boot" touch ${STAMPS}/${GCC}-boot.build - rm -rf build/* ${GCC} + rm -rf build/* ${GCCDIR} fi if [ ! -e ${STAMPS}/${NEWLIB}.build ]; then unpack ${NEWLIB} cd build log "Configuring ${NEWLIB}" + # configuration options and flags partially + # from https://github.com/jsnyder/arm-eabi-toolchain ../${NEWLIB}/configure --target=${TARGET} \ --prefix=${PREFIX} \ --enable-interwork \ @@ -333,9 +354,13 @@ if [ ! -e ${STAMPS}/${NEWLIB}.build ]; then --disable-nls \ --disable-werror \ --disable-newlib-supplied-syscalls \ + --disable-shared \ + --disable-nls \ + --disable-libgloss \ --with-float=soft log "Building ${NEWLIB}" - make ${MAKEFLAGS} CFLAGS_FOR_TARGET="-msoft-float" CCASFLAGS="-msoft-float" + NEWLIB_FLAGS="-ffunction-sections -fdata-sections -DPREFER_SIZE_OVER_SPEED -D__OPTIMIZE_SIZE__ -Os -fomit-frame-pointer -fno-unroll-loops -D__BUFSIZ__=256 -mabi=aapcs" + make ${MAKEFLAGS} CFLAGS_FOR_TARGET="${NEWLIB_FLAGS}" CCASFLAGS="${NEWLIB_FLAGS}" install ${NEWLIB} install cd .. log "Cleaning up ${NEWLIB}" @@ -346,13 +371,19 @@ fi # Yes, you need to build gcc again! if [ ! -e ${STAMPS}/${GCC}.build ]; then unpack ${GCC} + unpack ${GMP} + mv ${GMP} ${GCCDIR}/gmp + unpack ${MPFR} + mv ${MPFR} ${GCCDIR}/mpfr + unpack ${MPC} + mv ${MPC} ${GCCDIR}/mpc cd build log "Configuring ${GCC}" - ../${GCC}/configure --target=${TARGET} \ + [ ${USE_CPP} = 1 ] && GCCFLAGS="--enable-languages='c,c++' ${GCCFLAGS}" + ../${GCCDIR}/configure --target=${TARGET} \ --prefix=${PREFIX} \ --enable-interwork \ --enable-multilib \ - --enable-languages="c,c++" \ --with-newlib \ --disable-shared \ --with-gnu-as \ @@ -367,7 +398,7 @@ if [ ! -e ${STAMPS}/${GCC}.build ]; then cd .. log "Cleaning up ${GCC}" touch ${STAMPS}/${GCC}.build - rm -rf build/* ${GCC} + rm -rf build/* ${GCCDIR} fi if [ ! -e ${STAMPS}/${GDB}.build ]; then @@ -475,3 +506,8 @@ if [ ! -e ${STAMPS}/libopenstm32-${LIBOPENSTM32}.build ]; then rm -rf libopenstm32-${LIBOPENSTM32} fi fi + +if [ ${SUMMON_DIR_CREATED} = 1 ]; then + log "Removing work directory" + rm -rf ${SUMMON_DIR} +fi