diff options
-rw-r--r-- | environment.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/environment.py b/environment.py index 697957d..c92eb87 100644 --- a/environment.py +++ b/environment.py @@ -79,8 +79,8 @@ class Environment(): # List of potential compilers. if mesonlib.is_windows(): - self.default_c = ['cl', 'cc', 'gcc'] - self.default_cpp = ['cl', 'c++', 'g++'] + self.default_c = ['cl', 'cc', 'gcc', 'clang'] + self.default_cpp = ['cl', 'c++', 'g++', 'clang++'] else: self.default_c = ['cc'] self.default_cpp = ['c++'] |