From: Piotr Esden-Tempski Date: Tue, 19 May 2009 23:49:31 +0000 (+0200) Subject: GDB compile yelds warnings but compiles on Mac. Added --without-werror to make the... X-Git-Url: https://git.gag.com/?p=fw%2Fcortex-toolchain;a=commitdiff_plain;h=451b5f3bddf0c4bb1e5f086e9cdbf97ff040cf5b;ds=sidebyside GDB compile yelds warnings but compiles on Mac. Added --without-werror to make the build work. --- diff --git a/summon-arm-toolchain b/summon-arm-toolchain index ba688e5..429a8de 100755 --- a/summon-arm-toolchain +++ b/summon-arm-toolchain @@ -21,12 +21,14 @@ case "$(uname)" in Linux) echo "Found Linux OS." GCCFLAGS= + GDBFLAGS= ;; Darwin) echo "Found Darwin OS." GCCFLAGS="--with-gmp=${DARWIN_OPT_PATH} \ --with-mpfr=${DARWIN_OPT_PATH} \ -with-libiconv-prefix=${DARWIN_OPT_PATH}" + GDBFLAGS="--disable-werror" ;; *) echo "Found Unknown OS. Aborting!" @@ -246,7 +248,8 @@ if [ ! -e .${GDB}.build ]; then ../${GDB}/configure --target=${TARGET} \ --prefix=${PREFIX} \ --enable-interwork \ - --enable-multilib || exit + --enable-multilib \ + ${GDBFLAGS} || exit echo "******************************************************************" echo "* Building ${GDB}" echo "******************************************************************"