changes for devkitARM release 34

This commit is contained in:
Dave Murphy 2011-07-01 19:56:23 +00:00
parent 2e05e2fd74
commit 203526b13e
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
#!/bin/bash
#---------------------------------------------------------------------------------
# Build scripts for
# devkitARM release 33
# devkitARM release 34
# devkitPPC release 23
# devkitPSP release 14
#---------------------------------------------------------------------------------
@ -99,7 +99,7 @@ done
case "$VERSION" in
"1" )
GCC_VER=4.6.0
GCC_VER=4.6.1
BINUTILS_VER=2.21
NEWLIB_VER=1.19.0
GDB_VER=7.2

View File

@ -62,7 +62,7 @@ then
cp -r $BUILDSCRIPTDIR/$NEWLIB_SRCDIR/newlib/libc/include $INSTALLDIR/devkitARM/$target/sys-include
CFLAGS="$cflags" LDFLAGS="$ldflags" CFLAGS_FOR_TARGET="-O2" LDFLAGS_FOR_TARGET="" ../../$GCC_SRCDIR/configure \
--enable-languages=c,c++,objc \
--with-cpu=arm7tdmi\
--with-march=armv4t\
--enable-interwork --enable-multilib\
--with-gcc --with-gnu-ld --with-gnu-as \
--disable-dependency-tracking \
@ -73,7 +73,7 @@ then
--with-newlib \
--prefix=$prefix\
--enable-lto \
--with-bugurl="http://wiki.devkitpro.org/index.php/Bug_Reports" --with-pkgversion="devkitARM release 33" \
--with-bugurl="http://wiki.devkitpro.org/index.php/Bug_Reports" --with-pkgversion="devkitARM release 34" \
|| { echo "Error configuring gcc"; exit 1; }
touch configured-gcc
fi