aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/c.py
diff options
context:
space:
mode:
authorMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-06-25 21:00:58 -0400
committerMichael Hirsch, Ph.D <scivision@users.noreply.github.com>2019-07-08 22:27:35 -0400
commitc756d06fbb54651c2ba19f7801885018c1c389df (patch)
tree8b211268b057550a2b2d78f000c161700af53e22 /mesonbuild/compilers/c.py
parentfb4c95a32207e3ec0f7f18a3956da34d45b029a4 (diff)
downloadmeson-c756d06fbb54651c2ba19f7801885018c1c389df.zip
meson-c756d06fbb54651c2ba19f7801885018c1c389df.tar.gz
meson-c756d06fbb54651c2ba19f7801885018c1c389df.tar.bz2
add clang c_std=c18 alias
fix unit test skips for clang c18 correct unittests clang minimum version cleanup unittest clang skip c_std finesse unittest vs. clang version
Diffstat (limited to 'mesonbuild/compilers/c.py')
-rw-r--r--mesonbuild/compilers/c.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/mesonbuild/compilers/c.py b/mesonbuild/compilers/c.py
index 3b58a07..fb2f8c5 100644
--- a/mesonbuild/compilers/c.py
+++ b/mesonbuild/compilers/c.py
@@ -89,13 +89,16 @@ class ClangCCompiler(ClangCompiler, CCompiler):
opts = CCompiler.get_options(self)
c_stds = ['c89', 'c99', 'c11']
g_stds = ['gnu89', 'gnu99', 'gnu11']
- if self.compiler_type is CompilerType.CLANG_OSX:
- v = '>=10.0.0'
- else:
- v = '>=7.0.0'
+ # https://releases.llvm.org/6.0.0/tools/clang/docs/ReleaseNotes.html
+ # https://en.wikipedia.org/wiki/Xcode#Latest_versions
+ v = '>=10.0.0' if self.compiler_type is CompilerType.CLANG_OSX else '>=6.0.0'
if version_compare(self.version, v):
c_stds += ['c17']
g_stds += ['gnu17']
+ v = '>=11.0.0' if self.compiler_type is CompilerType.CLANG_OSX else '>=8.0.0'
+ if version_compare(self.version, v):
+ c_stds += ['c18']
+ g_stds += ['gnu18']
opts.update({'c_std': coredata.UserComboOption('C language standard to use',
['none'] + c_stds + g_stds,
'none')})