aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Jacoutot <ajacoutot@openbsd.org>2019-03-11 10:26:14 +0100
committerNirbheek Chauhan <nirbheek@centricular.com>2019-04-16 23:44:12 +0530
commit817e18584cad44477794a29a1974adb8660a266b (patch)
tree4b0badad264925c61ae43b14b1cbf193c87a251a
parent4afc3b968bc3505f7dcaa2736d13030ab3f4909f (diff)
downloadmeson-817e18584cad44477794a29a1974adb8660a266b.zip
meson-817e18584cad44477794a29a1974adb8660a266b.tar.gz
meson-817e18584cad44477794a29a1974adb8660a266b.tar.bz2
environment: support OpenBSD in detect_objc_compiler
We need to match the "clang --version" output on OpenBSD: $ clang --version | head -1 OpenBSD clang version 7.0.1 (tags/RELEASE_701/final) (based on LLVM 7.0.1)
-rw-r--r--mesonbuild/environment.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py
index 2dc85f7..a4d8305 100644
--- a/mesonbuild/environment.py
+++ b/mesonbuild/environment.py
@@ -888,7 +888,7 @@ class Environment:
return GnuObjCCompiler(ccache + compiler, version, compiler_type, is_cross, exe_wrap, defines)
if out.startswith('Apple LLVM'):
return ClangObjCCompiler(ccache + compiler, version, CompilerType.CLANG_OSX, is_cross, exe_wrap)
- if out.startswith('clang'):
+ if out.startswith(('clang', 'OpenBSD clang')):
return ClangObjCCompiler(ccache + compiler, version, CompilerType.CLANG_STANDARD, is_cross, exe_wrap)
self._handle_exceptions(popen_exceptions, compilers)
@@ -915,7 +915,7 @@ class Environment:
return GnuObjCPPCompiler(ccache + compiler, version, compiler_type, is_cross, exe_wrap, defines)
if out.startswith('Apple LLVM'):
return ClangObjCPPCompiler(ccache + compiler, version, CompilerType.CLANG_OSX, is_cross, exe_wrap)
- if out.startswith('clang'):
+ if out.startswith(('clang', 'OpenBSD clang')):
return ClangObjCPPCompiler(ccache + compiler, version, CompilerType.CLANG_STANDARD, is_cross, exe_wrap)
self._handle_exceptions(popen_exceptions, compilers)