summaryrefslogtreecommitdiff
path: root/mesonbuild/compilers
diff options
context:
space:
mode:
authorJohn Ralls <jralls@ceridwen.us>2025-10-13 13:11:36 -0700
committerJussi Pakkanen <jussi.pakkanen@mailbox.org>2025-10-14 15:45:12 +0300
commitbed60547bd08a3df58f23431c5452d73d24940e6 (patch)
tree5d0973275c4d40bb91e1a8d486817ff18e967099 /mesonbuild/compilers
parent019d9600d63d50d8f933333ffd5b6dbe253f0912 (diff)
downloadmeson-bed60547bd08a3df58f23431c5452d73d24940e6.tar.gz
Add C23 and C2Y supported c_std versions for Apple compilers.
Diffstat (limited to 'mesonbuild/compilers')
-rw-r--r--mesonbuild/compilers/mixins/apple.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/mesonbuild/compilers/mixins/apple.py b/mesonbuild/compilers/mixins/apple.py
index 2a0939334..ca655384d 100644
--- a/mesonbuild/compilers/mixins/apple.py
+++ b/mesonbuild/compilers/mixins/apple.py
@@ -67,7 +67,9 @@ class AppleCStdsMixin(Compiler):
_C17_VERSION = '>=10.0.0'
_C18_VERSION = '>=11.0.0'
- _C2X_VERSION = '>=11.0.0'
+ _C2X_VERSION = '>=11.0.3'
+ _C23_VERSION = '>=17.0.0'
+ _C2Y_VERSION = '>=17.0.0'
class AppleCPPStdsMixin(Compiler):