X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=summon-arm-toolchain;h=6e2748f448e56a00d8803d8873121b7ec510b859;hb=5a82a4186134981c85f6f4d8b45d735cbb3a6997;hp=9e2a6e0da122a999a717584865212e85bf01c3bb;hpb=14b533046db0dec0889fb8b909d94e538ab0d5ed;p=summon-arm-toolchain.git diff --git a/summon-arm-toolchain b/summon-arm-toolchain index 9e2a6e0..6e2748f 100755 --- a/summon-arm-toolchain +++ b/summon-arm-toolchain @@ -2,39 +2,58 @@ # Written by Uwe Hermann , released as public domain. # Modified by Piotr Esden-Tempski , released as public domain. -TARGET=arm-none-eabi # Or: TARGET=arm-none-eabi -PREFIX=${HOME}/arm-none-eabi # Install location of your final toolchain -PARALLEL="" # Or: PARALLEL="-j 5" for 4 CPU's -DARWIN_OPT_PATH=/opt/local # Path in which MacPorts or Fink is installed +# +# Requirements (example is for Debian, replace package names as needed): +# +# apt-get install flex bison libgmp3-dev libmpfr-dev libncurses5-dev \ +# libmpc-dev autoconf texinfo build-essential +# -BINUTILS=binutils-2.19.1 -GCC=gcc-4.4.2 -NEWLIB=newlib-1.17.0 -GDB=gdb-7.0 +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 +DARWIN_OPT_PATH=/opt/local # Path in which MacPorts or Fink is installed + +BINUTILS=binutils-2.20 +GCC=gcc-4.5.1 +NEWLIB=newlib-1.18.0 +GDB=gdb-7.2 LIBCMSIS=v1.10-2 LIBSTM32=v3.0.0-1 LIBSTM32USB=v3.0.1-1 LIBOPENSTM32=master -LIBSTM32_EN=1 +LIBSTM32_EN=0 LIBOPENSTM32_EN=0 SUMMON_DIR=$(pwd) SOURCES=${SUMMON_DIR}/sources +STAMPS=${SUMMON_DIR}/stamps export PATH="${PREFIX}/bin:${PATH}" +GCCFLAGS= +GDBFLAGS= +BINUTILFLAGS= + +# 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 +} + case "$(uname)" in Linux) echo "Found Linux OS." - GCCFLAGS= - GDBFLAGS= ;; Darwin) echo "Found Darwin OS." GCCFLAGS="--with-gmp=${DARWIN_OPT_PATH} \ --with-mpfr=${DARWIN_OPT_PATH} \ + --with-mpc=${DARWIN_OPT_PATH} \ -with-libiconv-prefix=${DARWIN_OPT_PATH}" - GDBFLAGS="--disable-werror" ;; *) echo "Found unknown OS. Aborting!" @@ -42,23 +61,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 ftp://ftp.gnu.org/gnu/gcc/${GCC}/${GCC}.tar.bz2 - -echo "Downloading newlib sources..." -wget -c ftp://sources.redhat.com/pub/newlib/${NEWLIB}.tar.gz - -echo "Downloading gdb sources..." -wget -c ftp://ftp.gnu.org/gnu/gdb/${GDB}.tar.bz2 +fetch ${BINUTILS} http://ftp.gnu.org/gnu/binutils/${BINUTILS}.tar.bz2 +fetch ${GCC} ${GCC_URL} +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 @@ -110,7 +120,7 @@ if [ ! -e build ]; then mkdir build fi -if [ ! -e .${BINUTILS}.build ]; then +if [ ! -e ${STAMPS}/${BINUTILS}.build ]; then echo "******************************************************************" echo "* Unpacking ${BINUTILS}" echo "******************************************************************" @@ -125,7 +135,9 @@ if [ ! -e .${BINUTILS}.build ]; then --enable-multilib \ --with-gnu-as \ --with-gnu-ld \ - --disable-nls || exit + --disable-nls \ + --disable-werror \ + ${BINUTILFLAGS} || exit echo "******************************************************************" echo "* Building ${BINUTILS}" echo "******************************************************************" @@ -138,11 +150,11 @@ if [ ! -e .${BINUTILS}.build ]; then echo "******************************************************************" echo "* Cleaning up ${BINUTILS}" echo "******************************************************************" - touch .${BINUTILS}.build + touch ${STAMPS}/${BINUTILS}.build rm -rf build/* ${BINUTILS} fi -if [ ! -e .${GCC}-boot.build ]; then +if [ ! -e ${STAMPS}/${GCC}-boot.build ]; then echo "******************************************************************" echo "* Unpacking ${GCC}-boot" echo "******************************************************************" @@ -162,6 +174,7 @@ if [ ! -e .${GCC}-boot.build ]; then --with-gnu-as \ --with-gnu-ld \ --disable-nls \ + --disable-werror \ ${GCCFLAGS} || exit echo "******************************************************************" echo "* Building ${GCC}-boot" @@ -175,11 +188,11 @@ if [ ! -e .${GCC}-boot.build ]; then echo "******************************************************************" echo "* Cleaning up ${GCC}-boot" echo "******************************************************************" - touch .${GCC}-boot.build + touch ${STAMPS}/${GCC}-boot.build rm -rf build/* ${GCC} fi -if [ ! -e .${NEWLIB}.build ]; then +if [ ! -e ${STAMPS}/${NEWLIB}.build ]; then echo "******************************************************************" echo "* Unpacking ${NEWLIB}" echo "******************************************************************" @@ -195,6 +208,7 @@ if [ ! -e .${NEWLIB}.build ]; then --with-gnu-as \ --with-gnu-ld \ --disable-nls \ + --disable-werror \ --disable-newlib-supplied-syscalls || exit echo "******************************************************************" echo "* Building ${NEWLIB}" @@ -208,31 +222,32 @@ if [ ! -e .${NEWLIB}.build ]; then echo "******************************************************************" echo "* Cleaning up ${NEWLIB}" echo "******************************************************************" - touch .${NEWLIB}.build + touch ${STAMPS}/${NEWLIB}.build rm -rf build/* ${NEWLIB} fi # Yes, you need to build gcc again! -if [ ! -e .${GCC}.build ]; then +if [ ! -e ${STAMPS}/${GCC}.build ]; then echo "******************************************************************" echo "* Unpacking ${GCC}" echo "******************************************************************" - #tar xfvj ${SOURCES}/${GCC}.tar.bz2 + tar xfvj ${SOURCES}/${GCC}.tar.bz2 cd build echo "******************************************************************" echo "* Configuring ${GCC}" echo "******************************************************************" -# ../${GCC}/configure --target=${TARGET} \ -# --prefix=${PREFIX} \ -# --enable-interwork \ -# --enable-multilib \ -# --enable-languages="c,c++" \ -# --with-newlib \ -# --disable-shared \ -# --with-gnu-as \ -# --with-gnu-ld \ -# --disable-nls \ -# ${GCCFLAGS} || exit + ../${GCC}/configure --target=${TARGET} \ + --prefix=${PREFIX} \ + --enable-interwork \ + --enable-multilib \ + --enable-languages="c,c++" \ + --with-newlib \ + --disable-shared \ + --with-gnu-as \ + --with-gnu-ld \ + --disable-nls \ + --disable-werror \ + ${GCCFLAGS} || exit echo "******************************************************************" echo "* Building ${GCC}" echo "******************************************************************" @@ -245,11 +260,11 @@ if [ ! -e .${GCC}.build ]; then echo "******************************************************************" echo "* Cleaning up ${GCC}" echo "******************************************************************" - touch .${GCC}.build + touch ${STAMPS}/${GCC}.build rm -rf build/* ${GCC} fi -if [ ! -e .${GDB}.build ]; then +if [ ! -e ${STAMPS}/${GDB}.build ]; then echo "******************************************************************" echo "* Unpacking ${GDB}" echo "******************************************************************" @@ -262,6 +277,7 @@ if [ ! -e .${GDB}.build ]; then --prefix=${PREFIX} \ --enable-interwork \ --enable-multilib \ + --disable-werror \ ${GDBFLAGS} || exit echo "******************************************************************" echo "* Building ${GDB}" @@ -275,7 +291,7 @@ if [ ! -e .${GDB}.build ]; then echo "******************************************************************" echo "* Cleaning up ${GDB}" echo "******************************************************************" - touch .${GDB}.build + touch ${STAMPS}/${GDB}.build rm -rf build/* ${GDB} fi