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>
This commit is contained in:
Elyes Haouas
2023-03-18 06:48:55 +01:00
committed by Felix Singer
parent 2c0960221d
commit cf993bd343
11 changed files with 6 additions and 13 deletions

View File

@ -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() {