use newlib options from jsnyder's arm-eabi-toolchain
[summon-arm-toolchain.git] / summon-arm-toolchain
index eb2a8e2a7f8eeca4f2da326d85ddf661e74ab70f..a4d501ef90684f1ff4c58d5c11cc7b1f661712ef 100755 (executable)
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh
 # Written by Uwe Hermann <uwe@hermann-uwe.de>, released as public domain.
 # Modified by Piotr Esden-Tempski <piotr@esden.net>, released as public domain.
 
@@ -37,17 +37,17 @@ DEFAULT_TO_CORTEX_M3=1
 ##############################################################################
 # Version and download url settings section
 ##############################################################################
-if [ ${USE_LINARO} == 0 ] ; then
+if [ ${USE_LINARO} = 0 ] ; then
        # For FSF GCC:
        GCCVERSION=4.6.1
-        if [ ${USE_CPP} == 0 ]; then
+        if [ ${USE_CPP} = 0 ]; then
             GCC=gcc-core-${GCCVERSION}
             GCCDIR=gcc-${GCCVERSION}
         else
             GCC=gcc-${GCCVERSION}
             GCCDIR=${GCC}
         fi
-        GCCURL=http://ftp.gnu.org/gnu/gcc/${GCCDIR}/${GCC}.tar.gz
+        GCCURL=http://ftp.gnu.org/gnu/gcc/${GCCDIR}/${GCC}.tar.bz2
 else
        # For the Linaro GCC:
        GCCRELEASE=4.6-2011.07
@@ -81,7 +81,7 @@ echo "${CPUS} cpu's detected running make with '${PARALLEL}' flag"
 GDBFLAGS=
 BINUTILFLAGS=
 
-if [ ${DEFAULT_TO_CORTEX_M3} == 0 ] ; then
+if [ ${DEFAULT_TO_CORTEX_M3} = 0 ] ; then
        GCCFLAGS=
 else
        # To default to the Cortex-M3:
@@ -162,7 +162,7 @@ esac
 ##############################################################################
 
 # Fetch a versioned file from a URL
-function fetch {
+fetch() {
     if [ ! -e ${STAMPS}/$1.fetch ]; then
         log "Downloading $1 sources..."
         wget -c $2
@@ -171,14 +171,14 @@ function fetch {
 }
 
 # Log a message out to the console
-function log {
+log() {
     echo "******************************************************************"
     echo "* $*"
     echo "******************************************************************"
 }
 
 # Unpack an archive
-function unpack {
+unpack() {
     log Unpacking $*
     # Use 'auto' mode decompression.  Replace with a switch if tar doesn't support -a
     ARCHIVE=$(ls ${SOURCES}/$1.tar.*)
@@ -201,7 +201,7 @@ function unpack {
 }
 
 # Install a build
-function install {
+install() {
     log $1
     ${SUDO} make ${MAKEFLAGS} $2 $3 $4 $5 $6 $7 $8
 }
@@ -338,6 +338,8 @@ if [ ! -e ${STAMPS}/${NEWLIB}.build ]; then
     unpack ${NEWLIB}
     cd build
     log "Configuring ${NEWLIB}"
+    # configuration options and flags partially
+    # from https://github.com/jsnyder/arm-eabi-toolchain
     ../${NEWLIB}/configure --target=${TARGET} \
                          --prefix=${PREFIX} \
                          --enable-interwork \
@@ -347,9 +349,13 @@ if [ ! -e ${STAMPS}/${NEWLIB}.build ]; then
                          --disable-nls \
                          --disable-werror \
                          --disable-newlib-supplied-syscalls \
+                         --disable-shared \
+                         --disable-nls \
+                         --disable-libgloss \
                         --with-float=soft
     log "Building ${NEWLIB}"
-    make ${MAKEFLAGS} CFLAGS_FOR_TARGET="-msoft-float" CCASFLAGS="-msoft-float"
+    NEWLIB_FLAGS="-ffunction-sections -fdata-sections -DPREFER_SIZE_OVER_SPEED -D__OPTIMIZE_SIZE__ -Os -fomit-frame-pointer -fno-unroll-loops -D__BUFSIZ__=256 -mabi=aapcs"
+    make ${MAKEFLAGS} CFLAGS_FOR_TARGET="${NEWLIB_FLAGS}" CCASFLAGS="${NEWLIB_FLAGS}"
     install ${NEWLIB} install
     cd ..
     log "Cleaning up ${NEWLIB}"
@@ -362,7 +368,7 @@ if [ ! -e ${STAMPS}/${GCC}.build ]; then
     unpack ${GCC}
     cd build
     log "Configuring ${GCC}"
-    [ ${USE_CPP} == 1 ] && GCCFLAGS="--enable-languages='c,c++' ${GCCFLAGS}"
+    [ ${USE_CPP} = 1 ] && GCCFLAGS="--enable-languages='c,c++' ${GCCFLAGS}"
     ../${GCCDIR}/configure --target=${TARGET} \
                       --prefix=${PREFIX} \
                       --enable-interwork \
@@ -490,7 +496,7 @@ if [ ! -e ${STAMPS}/libopenstm32-${LIBOPENSTM32}.build ]; then
 fi
 fi
 
-if [ ${SUMMON_DIR_CREATED} == 1 ]; then
+if [ ${SUMMON_DIR_CREATED} = 1 ]; then
     log "Removing work directory"
     rm -rf ${SUMMON_DIR}
 fi