From 15ecd6aeb2f6189c728030d49c99ff34c4db7674 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Louren=C3=A7o?= Date: Mon, 20 Feb 2017 09:17:04 +0000 Subject: [PATCH] Update minimum Clang version for colored output --- mesonbuild/compilers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/compilers.py b/mesonbuild/compilers.py index 92b44d270..18a94a138 100644 --- a/mesonbuild/compilers.py +++ b/mesonbuild/compilers.py @@ -2444,7 +2444,7 @@ class ClangCompiler: return ['-fPIC'] def get_colorout_args(self, colortype): - if mesonlib.version_compare(self.version, '>=3.3'): + if mesonlib.version_compare(self.version, '>=3.1'): return clang_color_args[colortype][:] return []