Update minimum Clang version for colored output

This commit is contained in:
Rodrigo Lourenço 2017-02-20 09:17:04 +00:00
parent 76cd306204
commit 15ecd6aeb2
1 changed files with 1 additions and 1 deletions

View File

@ -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 []