diff options
author | Patrick Georgi <pgeorgi@chromium.org> | 2018-05-02 17:13:34 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2018-06-28 13:38:13 +0000 |
commit | b1d26f0e9261ec4070e8561406853fe5bddeb27c (patch) | |
tree | 7c175eeae95536bb8e46963a2fcecc326edf1379 /util/crossgcc/buildgcc | |
parent | 1ce225b5a39d81e49f04497ce23ebb672b57eb6a (diff) |
util/crossgcc: update to gcc 8.1.0 and binutils 2.30
Also update patches as necessary.
Change-Id: I1e8074954d5d7a4eff590abb7439e9be7d3762aa
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: https://review.coreboot.org/25997
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/crossgcc/buildgcc')
-rwxr-xr-x | util/crossgcc/buildgcc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index ef0c4d5d8f..a9d90572cd 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -18,8 +18,8 @@ cd $(dirname $0) -CROSSGCC_DATE="June 3rd, 2018" -CROSSGCC_VERSION="1.51" +CROSSGCC_DATE="June 11th, 2018" +CROSSGCC_VERSION="1.52" CROSSGCC_COMMIT=$( git describe ) # default settings @@ -38,9 +38,9 @@ THREADS=1 GMP_VERSION=6.1.2 MPFR_VERSION=3.1.5 MPC_VERSION=1.0.3 -GCC_VERSION=6.3.0 +GCC_VERSION=8.1.0 GCC_AUTOCONF_VERSION=2.69 -BINUTILS_VERSION=2.29.1 +BINUTILS_VERSION=2.30 GDB_VERSION=8.0 IASL_VERSION=20180531 PYTHON_VERSION=3.5.1 @@ -57,7 +57,7 @@ CMAKE_VERSION=3.11.3 GMP_ARCHIVE="https://ftpmirror.gnu.org/gmp/gmp-${GMP_VERSION}.tar.xz" MPFR_ARCHIVE="https://ftpmirror.gnu.org/mpfr/mpfr-${MPFR_VERSION}.tar.xz" MPC_ARCHIVE="https://ftpmirror.gnu.org/mpc/mpc-${MPC_VERSION}.tar.gz" -GCC_ARCHIVE="https://ftpmirror.gnu.org/gcc/gcc-${GCC_VERSION}/gcc-${GCC_VERSION}.tar.bz2" +GCC_ARCHIVE="https://ftpmirror.gnu.org/gcc/gcc-${GCC_VERSION}/gcc-${GCC_VERSION}.tar.xz" BINUTILS_ARCHIVE="https://ftpmirror.gnu.org/binutils/binutils-${BINUTILS_VERSION}.tar.xz" GDB_ARCHIVE="https://ftpmirror.gnu.org/gdb/gdb-${GDB_VERSION}.tar.xz" IASL_ARCHIVE="https://acpica.org/sites/acpica/files/acpica-unix2-${IASL_VERSION}.tar.gz" |