aboutsummaryrefslogtreecommitdiff
path: root/environment.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2015-04-20 22:04:58 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2015-04-20 22:04:58 +0300
commita92fcb711b5b56ee6858d73dc90eda0e1e5d91a4 (patch)
tree66bafc02688a61e7c30dfcd78398a2d27d525082 /environment.py
parent7df7b62ee797b2c010616b43982f23cb259b1655 (diff)
downloadmeson-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.py2
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']