Idwer Vollering (vidwer@gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1597
-gerrit
commit 60c1b92aa68ef44bb7556415e4366929080d003a Author: Idwer Vollering vidwer@gmail.com Date: Sun Oct 21 03:00:45 2012 +0200
crossgcc: update to gcc 4.7.2
Update crossgcc to use gcc 4.7.2. This requires a minor change to util/crossgcc/buildgcc as well.
Increase CROSSGCC_VERSION to 1.10
Tested on hardware with asus/p2b and lenovo/x60.
Change-Id: I1e016831e6e467b818b454e6db67ea4db862c1d6 Signed-off-by: Idwer Vollering vidwer@gmail.com --- util/crossgcc/buildgcc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index ff67e02..6363ce2 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -20,8 +20,8 @@ # Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA #
-CROSSGCC_DATE="November 1st, 2011" -CROSSGCC_VERSION="1.07" +CROSSGCC_DATE="October 23rd, 2012" +CROSSGCC_VERSION="1.10"
# default settings TARGETDIR=`pwd`/xgcc @@ -33,7 +33,7 @@ GMP_VERSION=5.0.5 MPFR_VERSION=3.1.0 MPC_VERSION=0.9 LIBELF_VERSION=0.8.13 -GCC_VERSION=4.6.3 +GCC_VERSION=4.7.2 GCC_AUTOCONF_VERSION=2.64 BINUTILS_VERSION=2.22 GDB_VERSION=7.4.1 @@ -49,7 +49,7 @@ GMP_ARCHIVE="http://ftpmirror.gnu.org/gmp/gmp-$%7BGMP_VERSION%7D.tar.bz2" MPFR_ARCHIVE="http://ftpmirror.gnu.org/mpfr/mpfr-$%7BMPFR_VERSION%7D.tar.bz2" MPC_ARCHIVE="http://www.multiprecision.org/mpc/download/mpc-$%7BMPC_VERSION%7D.tar.gz" LIBELF_ARCHIVE="http://www.mr511.de/software/libelf-$%7BLIBELF_VERSION%7D.tar.gz" -GCC_ARCHIVE="http://ftpmirror.gnu.org/gcc/gcc-$%7BGCC_VERSION%7D/gcc-core-$%7BGCC_VERSION..." +GCC_ARCHIVE="http://ftpmirror.gnu.org/gcc/gcc-$%7BGCC_VERSION%7D/gcc-$%7BGCC_VERSION%7D.t..." BINUTILS_ARCHIVE="http://ftpmirror.gnu.org/binutils/binutils-$%7BBINUTILS_VERSION%7D.tar.bz2" GDB_ARCHIVE="http://ftpmirror.gnu.org/gdb/gdb-$%7BGDB_VERSION%7D.tar.bz2" W32API_ARCHIVE="http://downloads.sourceforge.net/project/mingw/MinGW/BaseSystem/RuntimeLibra..."