diff options
| author | John Ralls <jralls@ceridwen.us> | 2025-10-13 13:11:36 -0700 |
|---|---|---|
| committer | Jussi Pakkanen <jussi.pakkanen@mailbox.org> | 2025-10-14 15:45:12 +0300 |
| commit | bed60547bd08a3df58f23431c5452d73d24940e6 (patch) | |
| tree | 5d0973275c4d40bb91e1a8d486817ff18e967099 /mesonbuild/compilers | |
| parent | 019d9600d63d50d8f933333ffd5b6dbe253f0912 (diff) | |
| download | meson-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.py | 4 |
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): |
