diff --git a/build-devkit.sh b/build-devkit.sh index a5730fc..a435744 100644 --- a/build-devkit.sh +++ b/build-devkit.sh @@ -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 diff --git a/dkarm-eabi/scripts/build-gcc.sh b/dkarm-eabi/scripts/build-gcc.sh index 1059e32..dfda755 100644 --- a/dkarm-eabi/scripts/build-gcc.sh +++ b/dkarm-eabi/scripts/build-gcc.sh @@ -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