summaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorNikolai Vavilov <nvavilovs@microsoft.com>2025-01-15 00:38:39 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2025-01-15 23:17:57 +0200
commit05643006a7ee8a457456f8f0a2cbf46c395ecc25 (patch)
treeef20917741da0fb4a24cf2aca96efe6dd5caeac3 /mesonbuild
parentdfb449d099d6f3066ca646af197bc7af85059a86 (diff)
downloadmeson-05643006a7ee8a457456f8f0a2cbf46c395ecc25.tar.gz
Fix minimum required Apple clang version for C++26
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/compilers/cpp.py4
1 files changed, 1 insertions, 3 deletions
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):