From: Michael Hope Date: Sat, 11 Sep 2010 10:03:06 +0000 (+1200) Subject: Added support for fetching the Linaro GCC. Add a note on being Cortex-M3 by default. X-Git-Url: https://git.gag.com/?p=fw%2Fcortex-toolchain;a=commitdiff_plain;h=c9917c6f3167b3f6174b93a057101a5213310039;hp=902b6a0f6629abf8ac1c0245cbb572e11ab530af Added support for fetching the Linaro GCC. Add a note on being Cortex-M3 by default. --- diff --git a/summon-arm-toolchain b/summon-arm-toolchain index fa6d103..222f4fe 100755 --- a/summon-arm-toolchain +++ b/summon-arm-toolchain @@ -17,8 +17,17 @@ PREFIX=${HOME}/arm-none-eabi # Install location of your final toolchain PARALLEL= # Or: PARALLEL="-j 5" for 4 CPUs DARWIN_OPT_PATH=/opt/local # Path in which MacPorts or Fink is installed +# 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 -GCC=gcc-4.5.1 NEWLIB=newlib-1.18.0 GDB=gdb-7.2 LIBCMSIS=v1.10-2 @@ -39,6 +48,9 @@ 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 @@ -91,7 +103,7 @@ mkdir -p ${STAMPS} ${SOURCES} cd ${SOURCES} fetch ${BINUTILS} http://ftp.gnu.org/gnu/binutils/${BINUTILS}.tar.bz2 -fetch ${GCC} http://ftp.gnu.org/gnu/gcc/${GCC}/${GCC}.tar.gz +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