From 688599af5702b49c23a65db7a0aedd35cd023ba4 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Fri, 17 May 2024 09:39:01 -0400 Subject: [PATCH] Meta: Update check for clang's major version We require clang-17 as of 76df5ae030c438c08a6725c1fcf33ad838d77b59, but this check was not updated. --- Meta/find_compiler.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meta/find_compiler.sh b/Meta/find_compiler.sh index f21d3da3bb4..e9428d0e5f1 100644 --- a/Meta/find_compiler.sh +++ b/Meta/find_compiler.sh @@ -19,7 +19,7 @@ is_supported_compiler() { [ "$BUILD_VERSION" -ge 14030022 ] && return 0 elif $COMPILER --version 2>&1 | grep "clang" >/dev/null; then # Clang version check - [ "$MAJOR_VERSION" -ge 15 ] && return 0 + [ "$MAJOR_VERSION" -ge 17 ] && return 0 else # GCC version check [ "$MAJOR_VERSION" -ge 12 ] && return 0