summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hope <michael.hope@linaro.org>2010-09-11 22:03:06 +1200
committerMichael Hope <michael.hope@linaro.org>2010-09-11 22:03:06 +1200
commitc9917c6f3167b3f6174b93a057101a5213310039 (patch)
tree72f07f5ccd362cf81c1ffb939fd8143dcd9561b2
parent902b6a0f6629abf8ac1c0245cbb572e11ab530af (diff)
Added support for fetching the Linaro GCC. Add a note on being Cortex-M3 by default.
-rwxr-xr-xsummon-arm-toolchain16
1 files changed, 14 insertions, 2 deletions
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