diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-04-20 22:04:58 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-04-20 22:04:58 +0300 |
commit | a92fcb711b5b56ee6858d73dc90eda0e1e5d91a4 (patch) | |
tree | 66bafc02688a61e7c30dfcd78398a2d27d525082 /environment.py | |
parent | 7df7b62ee797b2c010616b43982f23cb259b1655 (diff) | |
download | meson-a92fcb711b5b56ee6858d73dc90eda0e1e5d91a4.zip meson-a92fcb711b5b56ee6858d73dc90eda0e1e5d91a4.tar.gz meson-a92fcb711b5b56ee6858d73dc90eda0e1e5d91a4.tar.bz2 |
Fix windows tests when using newer MinGW.
Diffstat (limited to 'environment.py')
-rw-r--r-- | environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/environment.py b/environment.py index 8c873b6..08256c4 100644 --- a/environment.py +++ b/environment.py @@ -77,7 +77,7 @@ class Environment(): # List of potential compilers. if mesonlib.is_windows(): - self.default_c = ['cl', 'cc'] + self.default_c = ['cl', 'cc', 'gcc'] self.default_cpp = ['cl', 'c++'] else: self.default_c = ['cc'] |