Updated version of libcmsis. The new version has a fix that prevents the cmsis bool...
[fw/cortex-toolchain] / summon-arm-toolchain
index afbcbe4a3485db4683a1e63f392fa1b3bd51ce19..3e98e2bd3258812a901e4e235c21ae054fbbcd33 100755 (executable)
 set -e
 
 ##############################################################################
-# Settings section
+# Default settings section
 # You probably want to customize those
+# You can also pass them as parameters to the script
 ##############################################################################
 TARGET=arm-none-eabi           # Or: TARGET=arm-elf
 PREFIX=${HOME}/sat     # 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
 # Set to 'sudo' if you need superuser privileges while installing
 SUDO=
 # Set to 1 to be quieter while running
 QUIET=0
 # Set to 1 to use linaro gcc instead of the FSF gcc
-USE_LINARO=0
+USE_LINARO=1
+# Set to 1 to enable building of OpenOCD
+OOCD_EN=1
 # 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=0
+LIBOPENSTM32_EN=1
 # Make the gcc default to Cortex-M3
 DEFAULT_TO_CORTEX_M3=0
 
+##############################################################################
+# Parsing command line parameters
+##############################################################################
+
+while [ $# -gt 0 ]; do
+       case $1 in
+               TARGET=*)
+               TARGET=$(echo $1 | sed 's,^TARGET=,,')
+               ;;
+               PREFIX=*)
+               PREFIX=$(echo $1 | sed 's,^PREFIX=,,')
+               ;;
+               DARWIN_OPT_PATH=*)
+               DARWIN_OPT_PATH=$(echo $1 | sed 's,^DARWIN_OPT_PATH=,,')
+               ;;
+               SUDO=*)
+               SUDO=$(echo $1 | sed 's,^SUDO=,,')
+               ;;
+               QUIET=*)
+               QUIET=$(echo $1 | sed 's,^QUIET=,,')
+               ;;
+               USE_LINARO=*)
+               USE_LINARO=$(echo $1 | sed 's,^USE_LINARO=,,')
+               ;;
+               OOCD_EN=*)
+               OOCD_EN=$(echo $1 | sed 's,^OOCD_EN=,,')
+               ;;
+               LIBSTM32_EN=*)
+               LIBSTM32_EN=$(echo $1 | sed 's,^LIBSTM32_EN=,,')
+               ;;
+               LIBOPENSTM32_EN=*)
+               LIBOPENSTM32_EN=$(echo $1 | sed 's,^LIBOPENSTM32_EN=,,')
+               ;;
+               DEFAULT_TO_CORTEX_M3=*)
+               DEFAULT_TO_CORTEX_M3=$(echo $1 | sed 's,^DEFAULT_TO_CORTEX_M3=,,')
+               ;;
+               *)
+               echo "Unknown parameter: $1"
+               exit 1
+               ;;
+       esac
+
+       shift # shifting parameter list to access the next one
+done
+
+echo "Settings used for this build are:"
+echo "TARGET=$TARGET"
+echo "PREFIX=$PREFIX"
+echo "DARWIN_OPT_PATH=$DARWIN_OPT_PATH"
+echo "SUDO=$SUDO"
+echo "QUIET=$QUIET"
+echo "USE_LINARO=$USE_LINARO"
+echo "OOCD_EN=$OOCD_EN"
+echo "LIBSTM32_EN=$LIBSTM32_EN"
+echo "LIBOPENSTM32_EN=$LIBOPENSTM32_EN"
+echo "DEFAULT_TO_CORTEX_M3=$DEFAULT_TO_CORTEX_M3"
+
+exit 0
 ##############################################################################
 # Version and download url settings section
 ##############################################################################
 if [ ${USE_LINARO} == 0 ] ; then
        # For FSF GCC:
-       GCCVERSION=4.5.1
+       GCCVERSION=4.5.2
        GCC=gcc-${GCCVERSION}
        GCCURL=http://ftp.gnu.org/gnu/gcc/${GCC}/${GCC}.tar.gz
 else
        # For the Linaro GCC:
-       GCCVERSION=4.5-2010.08-1
+       GCCRELEASE=4.5-2011.02-0
+       GCCVERSION=4.5-2011.02-0
        GCC=gcc-linaro-${GCCVERSION}
-       GCCURL=http://launchpad.net/gcc-linaro/4.5/${GCCVERSION}/+download/${GCC}.tar.gz
+       GCCURL=http://launchpad.net/gcc-linaro/4.5/${GCCRELEASE}/+download/${GCC}.tar.bz2
 fi
 
-BINUTILS=binutils-2.20
-NEWLIB=newlib-1.18.0
+BINUTILS=binutils-2.21
+NEWLIB=newlib-1.19.0
 GDB=gdb-7.2
-LIBCMSIS=v1.10-2
+OOCD=master
+LIBCMSIS=v1.10-3
 LIBSTM32=v3.0.0-1
 LIBSTM32USB=v3.0.1-1
 LIBOPENSTM32=master
@@ -62,6 +124,14 @@ LIBOPENSTM32=master
 # Flags section
 ##############################################################################
 
+if which getconf > /dev/null; then
+       CPUS=$(getconf _NPROCESSORS_ONLN)
+else
+       CPUS=1
+fi
+PARALLEL=-j$((CPUS + 1))
+echo "${CPUS} cpu's detected running make with '${PARALLEL}' flag"
+
 GDBFLAGS=
 BINUTILFLAGS=
 
@@ -69,7 +139,7 @@ if [ ${DEFAULT_TO_CORTEX_M3} == 0 ] ; then
        GCCFLAGS=
 else
        # To default to the Cortex-M3:
-       GCCFLAGS="--with-arch=armv7-m --with-mode=thumb"
+       GCCFLAGS="--with-arch=armv7-m --with-mode=thumb --with-float=soft"
 fi
 
 # Pull in the local configuration, if any
@@ -112,7 +182,12 @@ case "$(uname)" in
                   --with-gmp=${DARWIN_OPT_PATH} \
                  --with-mpfr=${DARWIN_OPT_PATH} \
                  --with-mpc=${DARWIN_OPT_PATH} \
-                 -with-libiconv-prefix=${DARWIN_OPT_PATH}"
+                 --with-libiconv-prefix=${DARWIN_OPT_PATH}"
+       OOCD_CFLAGS="-I/opt/mine/include -I/opt/local/include"
+       OOCD_LDFLAGS="-L/opt/mine/lib -L/opt/local/lib"
+       ;;
+       CYGWIN*)
+       echo "Found CygWin that means Windows most likely."
        ;;
        *)
        echo "Found unknown OS. Aborting!"
@@ -180,6 +255,20 @@ 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
 
+if [ ${OOCD_EN} != 0 ]; then
+if [ ! -e openocd-${OOCD}.tar.bz2 ]; then
+       log "Cloning OpenOCD sources..."
+       git clone git://openocd.git.sourceforge.net/gitroot/openocd/openocd openocd-${OOCD}
+        cd openocd-${OOCD}
+       ./bootstrap
+       cd ..
+       tar cfvj openocd-${OOCD}.tar.bz2 openocd-${OOCD}
+        #git archive --format=tar --prefix=openocd-${OOCD}/ ${OOCD} | \
+        #    bzip2 --stdout > ../openocd-${OOCD}.tar.bz2
+        rm -rf openocd-${OOCD}
+fi
+fi
+
 if [ ${LIBSTM32_EN} != 0 ]; then
 if [ ! -e libcmsis-${LIBCMSIS}.tar.bz2 ]; then
        log "Cloning libcmsis sources..."
@@ -252,80 +341,51 @@ if [ ! -e ${STAMPS}/${BINUTILS}.build ]; then
     rm -rf build/* ${BINUTILS}
 fi
 
-if [ ! -e ${STAMPS}/${GCC}-boot.build ]; then
-    unpack ${GCC} boot
-    cd build
-    log "Configuring ${GCC}-boot"
-    ../${GCC}/configure --target=${TARGET} \
-                      --prefix=${PREFIX} \
-                      --enable-interwork \
-                      --enable-multilib \
-                      --enable-languages="c" \
-                      --with-newlib \
-                      --without-headers \
-                      --disable-shared \
-                      --with-gnu-as \
-                      --with-gnu-ld \
-                      --disable-nls \
-                      --disable-werror \
-                     --with-system-zlib \
-                     ${GCCFLAGS}
-    log "Building ${GCC}-boot"
-    make ${MAKEFLAGS} all-gcc
-    install ${GCC}-boot install-gcc
-    cd ..
-    log "Cleaning up ${GCC}-boot"
-    touch ${STAMPS}/${GCC}-boot.build
-    rm -rf build/* ${GCC}
-fi
-
-if [ ! -e ${STAMPS}/${NEWLIB}.build ]; then
+if [ ! -e ${STAMPS}/${GCC}-${NEWLIB}.build ]; then
+    unpack ${GCC}
     unpack ${NEWLIB}
-    cd build
-    log "Configuring ${NEWLIB}"
-    ../${NEWLIB}/configure --target=${TARGET} \
-                         --prefix=${PREFIX} \
-                         --enable-interwork \
-                         --enable-multilib \
-                         --with-gnu-as \
-                         --with-gnu-ld \
-                         --disable-nls \
-                         --disable-werror \
-                         --disable-newlib-supplied-syscalls
-    log "Building ${NEWLIB}"
-    make ${MAKEFLAGS}
-    install ${NEWLIB} install
-    cd ..
-    log "Cleaning up ${NEWLIB}"
-    touch ${STAMPS}/${NEWLIB}.build
-    rm -rf build/* ${NEWLIB}
-fi
 
-# Yes, you need to build gcc again!
-if [ ! -e ${STAMPS}/${GCC}.build ]; then
-    unpack ${GCC}
+    log "Adding newlib symlink to gcc"
+    ln -f -s `pwd`/${NEWLIB}/newlib ${GCC}
+    log "Adding libgloss symlink to gcc"
+    ln -f -s `pwd`/${NEWLIB}/libgloss ${GCC}
+
+    if [ ${DEFAULT_TO_CORTEX_M3} == 0 ] ; then
+       log "Patching gcc to add multilib support"
+       cd ${GCC}
+       patch -p0 -i ../patches/patch-gcc-config-arm-t-arm-elf.diff
+       cd ..
+    fi
+
     cd build
-    log "Configuring ${GCC}"
+    log "Configuring ${GCC} and ${NEWLIB}"
     ../${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-nls \
+                      --disable-shared \
+                     --disable-threads \
+                      --with-headers=newlib/libc/include \
+                     --disable-libssp \
+                     --disable-libstdcxx-pch \
+                     --disable-libmudflap \
+                     --disable-libgomp \
                       --disable-werror \
-                      --with-system-zlib \
-                    ${GCCFLAGS}
-    log "Building ${GCC}"
+                     --with-system-zlib \
+                     --disable-newlib-supplied-syscalls \
+                     ${GCCFLAGS}
+    log "Building ${GCC} and ${NEWLIB}"
     make ${MAKEFLAGS}
     install ${GCC} install
     cd ..
-    log "Cleaning up ${GCC}"
-    touch ${STAMPS}/${GCC}.build
-    rm -rf build/* ${GCC}
+    log "Cleaning up ${GCC} and ${NEWLIB}"
+    touch ${STAMPS}/${GCC}-${NEWLIB}.build
+    rm -rf build/* ${GCC} ${NEWLIB}
 fi
 
 if [ ! -e ${STAMPS}/${GDB}.build ]; then
@@ -347,6 +407,36 @@ if [ ! -e ${STAMPS}/${GDB}.build ]; then
     rm -rf build/* ${GDB}
 fi
 
+if [ ${OOCD_EN} != 0 ]; then
+if [ ! -e ${STAMPS}/openocd-${OOCD}.build ]; then
+    unpack openocd-${OOCD}
+    cd build
+    log "Configuring openocd-${OOCD}"
+    CFLAGS="${CFLAGS} ${OOCD_CFLAGS}" \
+    LDFLAGS="${LDFLAGS} ${OOCD_LDFLAGS}" \
+    ../openocd-${OOCD}/configure --enable-maintainer-mode \
+                                --prefix=${PREFIX} \
+                                --enable-dummy \
+                                --enable-ft2232_libftdi \
+                                --enable-usb_blaster_libftdi \
+                                --enable-ep93xx \
+                                --enable-at91rm9200 \
+                                --enable-presto_libftdi \
+                                --enable-usbprog \
+                                --enable-jlink \
+                                --enable-vsllink \
+                                --enable-rlink \
+                                --enable-arm-jtag-ew
+    log "Building openocd-${OOCD}"
+    make ${MAKEFLAGS}
+    install openocd-${OOCD} install
+    cd ..
+    log "Cleaning up openocd-${OOCD}"
+    touch ${STAMPS}/openocd-${OOCD}.build
+    rm -rf build/* ${OOCD}
+fi
+fi
+
 if [ ${LIBSTM32_EN} != 0 ]; then
 if [ ! -e ${STAMPS}/libcmsis-${LIBCMSIS}.build ]; then
     unpack libcmsis-${LIBCMSIS}