From 05643006a7ee8a457456f8f0a2cbf46c395ecc25 Mon Sep 17 00:00:00 2001 From: Nikolai Vavilov Date: Wed, 15 Jan 2025 00:38:39 +0200 Subject: Fix minimum required Apple clang version for C++26 --- mesonbuild/compilers/cpp.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'mesonbuild/compilers/cpp.py') diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py index 2acc02ffe..d2eca897b 100644 --- a/mesonbuild/compilers/cpp.py +++ b/mesonbuild/compilers/cpp.py @@ -341,9 +341,7 @@ class ArmLtdClangCPPCompiler(ClangCPPCompiler): class AppleClangCPPCompiler(AppleCompilerMixin, ClangCPPCompiler): _CPP23_VERSION = '>=13.0.0' - # TODO: We don't know which XCode version will include LLVM 17 yet, so - # use something absurd. - _CPP26_VERSION = '>=99.0.0' + _CPP26_VERSION = '>=16.0.0' class EmscriptenCPPCompiler(EmscriptenMixin, ClangCPPCompiler): -- cgit v1.2.3