1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 09:34:57 +09:00

Meta: Update Clang version requirement to 17+

This commit is contained in:
Andreas Kling 2024-05-10 17:15:57 +02:00
parent 01ec56f1ed
commit 76df5ae030
Notes: sideshowbarker 2024-07-18 00:41:35 +09:00
5 changed files with 9 additions and 9 deletions

View file

@ -56,7 +56,7 @@ pick_host_compiler() {
return
fi
find_newest_compiler clang clang-15 clang-16 clang-17 clang-18 /opt/homebrew/opt/llvm/bin/clang
find_newest_compiler clang clang-17 clang-18 /opt/homebrew/opt/llvm/bin/clang
if is_supported_compiler "$HOST_COMPILER"; then
export CC="${HOST_COMPILER}"
export CXX="${HOST_COMPILER/clang/clang++}"
@ -71,8 +71,8 @@ pick_host_compiler() {
fi
if [ "$(uname -s)" = "Darwin" ]; then
die "Please make sure that Xcode 14.3, Homebrew Clang 15, or higher is installed."
die "Please make sure that Xcode 14.3, Homebrew Clang 17, or higher is installed."
else
die "Please make sure that GCC version 12, Clang version 15, or higher is installed."
die "Please make sure that GCC version 12, Clang version 17, or higher is installed."
fi
}