X-Git-Url: https://git.gag.com/?p=fw%2Fcortex-toolchain;a=blobdiff_plain;f=summon-arm-toolchain;h=d77ac17b673df1bcd6eaaaa3073947a1e21ca2da;hp=7977d8d6cc6efc008876e5963bcebb7892df2879;hb=32295df2b482209718ed3dbdc335c6357ce283ab;hpb=92695d8e2603d3d78b6ce5bdba7dcb8535d98285 diff --git a/summon-arm-toolchain b/summon-arm-toolchain index 7977d8d..d77ac17 100755 --- a/summon-arm-toolchain +++ b/summon-arm-toolchain @@ -2,20 +2,27 @@ # Written by Uwe Hermann , released as public domain. # Modified by Piotr Esden-Tempski , released as public domain. +# +# 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 +# + 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.19.1 -GCC=gcc-4.4.2 -NEWLIB=newlib-1.17.0 -GDB=gdb-7.1 +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) @@ -23,20 +30,20 @@ SOURCES=${SUMMON_DIR}/sources export PATH="${PREFIX}/bin:${PATH}" +GCCFLAGS= +GDBFLAGS= +BINUTILFLAGS= + case "$(uname)" in Linux) echo "Found Linux OS." - GCCFLAGS= - GDBFLAGS= - BINUTILFLAGS= ;; 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" - BINUTILFLAGS="--disable-werror" ;; *) echo "Found unknown OS. Aborting!" @@ -57,7 +64,7 @@ echo "Downloading gcc sources..." wget -c http://ftp.gnu.org/gnu/gcc/${GCC}/${GCC}.tar.bz2 echo "Downloading newlib sources..." -wget -c ftp://sources.redhat.com/pub/newlib/${NEWLIB}.tar.gz +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 @@ -128,6 +135,7 @@ if [ ! -e .${BINUTILS}.build ]; then --with-gnu-as \ --with-gnu-ld \ --disable-nls \ + --disable-werror \ ${BINUTILFLAGS} || exit echo "******************************************************************" echo "* Building ${BINUTILS}" @@ -165,6 +173,7 @@ if [ ! -e .${GCC}-boot.build ]; then --with-gnu-as \ --with-gnu-ld \ --disable-nls \ + --disable-werror \ ${GCCFLAGS} || exit echo "******************************************************************" echo "* Building ${GCC}-boot" @@ -198,6 +207,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}" @@ -235,6 +245,7 @@ if [ ! -e .${GCC}.build ]; then --with-gnu-as \ --with-gnu-ld \ --disable-nls \ + --disable-werror \ ${GCCFLAGS} || exit echo "******************************************************************" echo "* Building ${GCC}" @@ -265,6 +276,7 @@ if [ ! -e .${GDB}.build ]; then --prefix=${PREFIX} \ --enable-interwork \ --enable-multilib \ + --disable-werror \ ${GDBFLAGS} || exit echo "******************************************************************" echo "* Building ${GDB}"