diff options
author | Felix Singer <felixsinger@posteo.net> | 2024-02-24 18:52:54 +0100 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2024-04-17 17:18:58 +0000 |
commit | 055c6d5c349c6e12842d4ba6cf4235642dabc3de (patch) | |
tree | 0e8c168883e797c1e891e5ba9c0d0656ffcfa2de /util/crossgcc/buildgcc | |
parent | 072e8c34f119db4ed2e287bc54e6f9fca595dc77 (diff) |
util/crossgcc/buildgcc: Use Intel mirror for ACPICA
The binary hashes from GitHub releases are not stable. Use the Intel
mirror.
Change-Id: If3738b0cdab07c37ac1459a53e399e5de54435d5
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80721
Reviewed-by: Varshit Pandya <pandyavarshit@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'util/crossgcc/buildgcc')
-rwxr-xr-x | util/crossgcc/buildgcc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 5944b057e7..58c4599658 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -40,7 +40,7 @@ MPFR_VERSION=4.2.1 MPC_VERSION=1.3.1 GCC_VERSION=13.2.0 BINUTILS_VERSION=2.42 -IASL_VERSION="R06_28_23" +IASL_VERSION="20230628" # CLANG version number CLANG_VERSION=17.0.6 CMAKE_VERSION=3.28.3 @@ -52,7 +52,7 @@ MPFR_ARCHIVE="mpfr-${MPFR_VERSION}.tar.xz" MPC_ARCHIVE="mpc-${MPC_VERSION}.tar.gz" GCC_ARCHIVE="gcc-${GCC_VERSION}.tar.xz" BINUTILS_ARCHIVE="binutils-${BINUTILS_VERSION}.tar.xz" -IASL_ARCHIVE="${IASL_VERSION}.tar.gz" +IASL_ARCHIVE="acpica-unix-${IASL_VERSION}.tar.gz" # CLANG toolchain FILE locations LLD_ARCHIVE="lld-${CLANG_VERSION}.src.tar.xz" LLVM_ARCHIVE="llvm-${CLANG_VERSION}.src.tar.xz" @@ -74,7 +74,7 @@ MPFR_BASE_URL="https://ftpmirror.gnu.org/mpfr" MPC_BASE_URL="https://ftpmirror.gnu.org/mpc" GCC_BASE_URL="https://ftpmirror.gnu.org/gcc/gcc-${GCC_VERSION}" BINUTILS_BASE_URL="https://ftpmirror.gnu.org/binutils" -IASL_BASE_URL="https://github.com/acpica/acpica/archive/refs/tags" +IASL_BASE_URL="https://downloadmirror.intel.com/783534" # CLANG toolchain archive locations LLVM_BASE_URL="https://github.com/llvm/llvm-project/releases/download/llvmorg-${CLANG_VERSION}" CLANG_BASE_URL="https://github.com/llvm/llvm-project/releases/download/llvmorg-${CLANG_VERSION}" @@ -100,7 +100,7 @@ MPC_DIR="mpc-${MPC_VERSION}" GCC_DIR="gcc-${GCC_VERSION}" # shellcheck disable=SC2034 BINUTILS_DIR="binutils-${BINUTILS_VERSION}" -IASL_DIR="acpica-${IASL_VERSION}" +IASL_DIR="acpica-unix-${IASL_VERSION}" # CLANG toolchain directories LLD_DIR="lld-${CLANG_VERSION}.src" LLVM_DIR="llvm-${CLANG_VERSION}.src" |