X-Git-Url: https://git.gag.com/?p=fw%2Fcortex-toolchain;a=blobdiff_plain;f=summon-arm-toolchain;h=0fd7a1ac537276c7695608bee38b9af1635f5d48;hp=aa08b017af7210a55cc04a7183deff40ad8bf424;hb=494a02552001c9ef64bc85bb4a426544ba3d1e11;hpb=687eb52b6cbe665a0b7e9d327313c91195b6ccb7 diff --git a/summon-arm-toolchain b/summon-arm-toolchain index aa08b01..0fd7a1a 100755 --- a/summon-arm-toolchain +++ b/summon-arm-toolchain @@ -15,8 +15,9 @@ 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 @@ -35,6 +36,69 @@ LIBSTM32_EN=0 LIBOPENSTM32_EN=1 # Make the gcc default to Cortex-M3 DEFAULT_TO_CORTEX_M3=0 +# Override automatic detection of cpus to compile on +CPUS= + +############################################################################## +# 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=,,') + ;; + CPUS=*) + CPUS=$(echo $1 | sed 's,^CPUS=,,') + ;; + *) + 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" +echo "CPUS=$CPUS" ############################################################################## # Version and download url settings section @@ -56,8 +120,8 @@ BINUTILS=binutils-2.21 NEWLIB=newlib-1.19.0 GDB=gdb-7.2 OOCD=master -LIBCMSIS=v1.10-2 -LIBSTM32=v3.0.0-1 +LIBCMSIS=v1.10-3 +LIBSTM32=v3.0.0-2 LIBSTM32USB=v3.0.1-1 LIBOPENSTM32=master @@ -65,12 +129,18 @@ LIBOPENSTM32=master # Flags section ############################################################################## -if which getconf > /dev/null; then - CPUS=$(getconf _NPROCESSORS_ONLN) +if [ "x${CPUS}" == "x" ]; then + if which getconf > /dev/null; then + CPUS=$(getconf _NPROCESSORS_ONLN) + else + CPUS=1 + fi + + PARALLEL=-j$((CPUS + 1)) else - CPUS=1 + PARALLEL=-j${CPUS} fi -PARALLEL=-j$((CPUS + 1)) + echo "${CPUS} cpu's detected running make with '${PARALLEL}' flag" GDBFLAGS= @@ -145,8 +215,7 @@ esac function fetch { if [ ! -e ${STAMPS}/$1.fetch ]; then log "Downloading $1 sources..." - wget -c --no-passive-ftp $2 - touch ${STAMPS}/$1.fetch + wget -c --no-passive-ftp $2 && touch ${STAMPS}/$1.fetch fi } @@ -285,10 +354,19 @@ fi if [ ! -e ${STAMPS}/${GCC}-${NEWLIB}.build ]; then unpack ${GCC} unpack ${NEWLIB} + log "Adding newlib symlink to gcc" - ln -s `pwd`/${NEWLIB}/newlib ${GCC} + ln -f -s `pwd`/${NEWLIB}/newlib ${GCC} log "Adding libgloss symlink to gcc" - ln -s `pwd`/${NEWLIB}/libgloss ${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} and ${NEWLIB}" ../${GCC}/configure --target=${TARGET} \