diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-12-07 01:19:30 +0200 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-12-07 01:19:30 +0200 |
| commit | d5bdfb5906563f031c17cfa9564a03ed475053b9 (patch) | |
| tree | ee606d29375450066f192d9d83abca6a89e2bf4b /environment.py | |
| parent | 66ff4a0e9134b7c7c646092c77351268bd121dbe (diff) | |
| download | meson-d5bdfb5906563f031c17cfa9564a03ed475053b9.tar.gz | |
Check for clang specifically by name on Windows.
Diffstat (limited to 'environment.py')
| -rw-r--r-- | environment.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/environment.py b/environment.py index 697957dee..c92eb87f7 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++'] |
