diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-06-06 13:09:18 +0200 |
---|---|---|
committer | Martin L Roth <gaumless@tutanota.com> | 2022-07-30 18:27:30 +0000 |
commit | ae157d38e3eb91302d250c0826977fe8b5e43e9c (patch) | |
tree | 8fd36eceed33fbf6825634f092edee2d7f0703ba /util/crossgcc/buildgcc | |
parent | a44620dea90adc5975d8f495f92d6efb174274f7 (diff) |
crossgcc: Upgrade LLVM from 13.0.1 to 14.0.6
Test build for QEMU x86 i440fx/piix4.
Change-Id: I97d059947f7049b2491a98985795a4655891c3b3
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/64991
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sean Rhodes <sean@starlabs.systems>
Diffstat (limited to 'util/crossgcc/buildgcc')
-rwxr-xr-x | util/crossgcc/buildgcc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 3c4b10cc92..03c24da1be 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -39,7 +39,7 @@ GCC_VERSION=11.2.0 BINUTILS_VERSION=2.37 IASL_VERSION=20220331 # CLANG version number -CLANG_VERSION=13.0.1 +CLANG_VERSION=14.0.6 CMAKE_VERSION=3.23.2 NASM_VERSION=2.15.05 @@ -809,7 +809,7 @@ build_LLVM() { $CMAKE -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="$DESTDIR$TARGETDIR" \ -DCLANG_VENDOR="coreboot toolchain v$CROSSGCC_VERSION - " \ -DLLVM_ENABLE_PROJECTS="clang;clang-tools-extra;compiler-rt" \ - -DCMAKE_BUILD_TYPE=Release ../llvm || touch .failed + -DLLVM_INCLUDE_BENCHMARKS="OFF" -DCMAKE_BUILD_TYPE=Release ../llvm || touch .failed # shellcheck disable=SC2086 $MAKE $JOBS || touch .failed $MAKE install || touch .failed |