diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-03-18 06:48:55 +0100 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2023-05-23 13:34:51 +0000 |
commit | cf993bd343166b34ebc7ac3a09a6bdb4642db4b3 (patch) | |
tree | 04409dff0cb917b189bfda3be9b673dac2708ec4 /util/crossgcc/buildgcc | |
parent | 2c0960221d5c005b837068c79a85b6dd3734b56c (diff) |
crossgcc: Upgrade LLVM version 15.0.7 to 16.0.4
Change-Id: I753bbcf3f03907b0cf966454c3dd6c9b61869599
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73792
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'util/crossgcc/buildgcc')
-rwxr-xr-x | util/crossgcc/buildgcc | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 71818ddacb..46c634c825 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -41,7 +41,7 @@ GCC_VERSION=11.3.0 BINUTILS_VERSION=2.40 IASL_VERSION="R10_20_22" # CLANG version number -CLANG_VERSION=15.0.7 +CLANG_VERSION=16.0.4 CMAKE_VERSION=3.26.3 NASM_VERSION=2.15.05 @@ -881,13 +881,6 @@ build_LLVM() { cp -a ../$CLANG_DIR/tools/scan-build/* "$DESTDIR$TARGETDIR/bin" cp -a ../$CLANG_DIR/tools/scan-view/* "$DESTDIR$TARGETDIR/bin" - - # create symlinks to work around broken --print-librt-file-name - # when used with -target. - cd "$DESTDIR$TARGETDIR/lib/clang/${CLANG_VERSION}/lib" || exit 1 - for i in */libclang_rt.builtins*.a; do - ln -s "$i" . - done } build_CMAKE() { |