Martin L Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/64874 )
Change subject: util/crossgcc: Update tools to point to the coreboot archive ......................................................................
util/crossgcc: Update tools to point to the coreboot archive
For releases, we save the tarballs of everything used to create the release toolchain. This allows us to be sure that they'll be available even if the original sites go offline.
This change update the 4.16 version of buildgcc to point at the coreboot archive instead of the original locations. The hashes are still in the release archive and will not be updated, so you can be sure you're getting the correct versions.
Signed-off-by: Martin Roth gaumless@gmail.com Change-Id: I920370a43f820203b5a2d21aa70d62bd53186926 --- M util/crossgcc/buildgcc 1 file changed, 12 insertions(+), 12 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/74/64874/1
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 6b7558f..1ee22a8 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -47,19 +47,19 @@ # These are sanitized by the jenkins toolchain test builder, so if # a completely new URL is added here, it probably needs to be added # to the jenkins build as well, or the builder won't download it. -GMP_ARCHIVE="https://ftpmirror.gnu.org/gmp/gmp-$%7BGMP_VERSION%7D.tar.xz" -MPFR_ARCHIVE="https://ftpmirror.gnu.org/mpfr/mpfr-$%7BMPFR_VERSION%7D.tar.xz" -MPC_ARCHIVE="https://ftpmirror.gnu.org/mpc/mpc-$%7BMPC_VERSION%7D.tar.gz" -GCC_ARCHIVE="https://ftpmirror.gnu.org/gcc/gcc-$%7BGCC_VERSION%7D/gcc-$%7BGCC_VERSION%7D...." -BINUTILS_ARCHIVE="https://ftpmirror.gnu.org/binutils/binutils-$%7BBINUTILS_VERSION%7D.tar.xz" -IASL_ARCHIVE="https://acpica.org/sites/acpica/files/acpica-unix2-$%7BIASL_VERSION%7D.tar.g..." +GMP_ARCHIVE="https://coreboot.org/releases/crossgcc-sources/gmp-$%7BGMP_VERSION%7D.tar.xz" +MPFR_ARCHIVE="https://coreboot.org/releases/crossgcc-sources/mpfr-$%7BMPFR_VERSION%7D.tar...." +MPC_ARCHIVE="https://coreboot.org/releases/crossgcc-sources/mpc-$%7BMPC_VERSION%7D.tar.gz" +GCC_ARCHIVE="https://coreboot.org/releases/crossgcc-sources/gcc-$%7BGCC_VERSION%7D.tar.xz" +BINUTILS_ARCHIVE="https://coreboot.org/releases/crossgcc-sources/binutils-$%7BBINUTILS_VERSION..." +IASL_ARCHIVE="https://coreboot.org/releases/crossgcc-sources/acpica-unix2-$%7BIASL_VERSION..." # CLANG toolchain archive locations -LLVM_ARCHIVE="https://github.com/llvm/llvm-project/releases/download/llvmorg-$%7BCLANG_VER..." -CLANG_ARCHIVE="https://github.com/llvm/llvm-project/releases/download/llvmorg-$%7BCLANG_VER..." -CRT_ARCHIVE="https://github.com/llvm/llvm-project/releases/download/llvmorg-$%7BCLANG_VER..." -CTE_ARCHIVE="https://github.com/llvm/llvm-project/releases/download/llvmorg-$%7BCLANG_VER..." -CMAKE_ARCHIVE="https://cmake.org/files/v$%7BCMAKE_VERSION%.*%7D/cmake-$%7BCMAKE_VERSION%7D...." -NASM_ARCHIVE="https://www.nasm.us/pub/nasm/releasebuilds/$%7BNASM_VERSION%7D/nasm-$%7BNASM..." +LLVM_ARCHIVE="https://coreboot.org/releases/crossgcc-sources/llvm-$%7BCLANG_VERSION%7D.src..." +CLANG_ARCHIVE="https://coreboot.org/releases/crossgcc-sources/clang-$%7BCLANG_VERSION%7D.sr..." +CRT_ARCHIVE="https://coreboot.org/releases/crossgcc-sources/compiler-rt-$%7BCLANG_VERSION..." +CTE_ARCHIVE="https://coreboot.org/releases/crossgcc-sources/clang-tools-extra-$%7BCLANG_V..." +CMAKE_ARCHIVE="https://coreboot.org/releases/crossgcc-sources/cmake-$%7BCMAKE_VERSION%7D.ta..." +NASM_ARCHIVE="https://coreboot.org/releases/crossgcc-sources/nasm-$%7BNASM_VERSION%7D.tar...."
ALL_ARCHIVES="$GMP_ARCHIVE $MPFR_ARCHIVE $MPC_ARCHIVE \ $GCC_ARCHIVE $BINUTILS_ARCHIVE $IASL_ARCHIVE \