summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Esden-Tempski <piotr@esden.net>2009-12-27 12:13:43 +0100
committerPiotr Esden-Tempski <piotr@esden.net>2009-12-27 12:13:43 +0100
commit2d03fa1ceeb9cea8247754a9624a188c6c15840e (patch)
tree2192cc7245c4e58ecc9f0e1dfd2a30313272a5e6
parent14b533046db0dec0889fb8b909d94e538ab0d5ed (diff)
Binutils should compile now with --disable-werror. Enabled second gcc build again.
-rwxr-xr-xsummon-arm-toolchain29
1 files changed, 16 insertions, 13 deletions
diff --git a/summon-arm-toolchain b/summon-arm-toolchain
index 9e2a6e0..c3ecf6e 100755
--- a/summon-arm-toolchain
+++ b/summon-arm-toolchain
@@ -28,6 +28,7 @@ case "$(uname)" in
echo "Found Linux OS."
GCCFLAGS=
GDBFLAGS=
+ BINUTILFLAGS=
;;
Darwin)
echo "Found Darwin OS."
@@ -35,6 +36,7 @@ case "$(uname)" in
--with-mpfr=${DARWIN_OPT_PATH} \
-with-libiconv-prefix=${DARWIN_OPT_PATH}"
GDBFLAGS="--disable-werror"
+ BINUTILFLAGS="--disable-werror"
;;
*)
echo "Found unknown OS. Aborting!"
@@ -125,7 +127,8 @@ if [ ! -e .${BINUTILS}.build ]; then
--enable-multilib \
--with-gnu-as \
--with-gnu-ld \
- --disable-nls || exit
+ --disable-nls \
+ ${BINUTILFLAGS} || exit
echo "******************************************************************"
echo "* Building ${BINUTILS}"
echo "******************************************************************"
@@ -217,22 +220,22 @@ if [ ! -e .${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 \
+ ${GCCFLAGS} || exit
echo "******************************************************************"
echo "* Building ${GCC}"
echo "******************************************************************"