From 7ca852525cc91e5be41fcef258ec73fbf3f2ba23 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Wed, 26 Aug 2015 00:35:25 +0300 Subject: Check for binary called g++ on Windows. --- environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.py b/environment.py index abacbe0..493ee2c 100644 --- a/environment.py +++ b/environment.py @@ -79,7 +79,7 @@ class Environment(): # List of potential compilers. if mesonlib.is_windows(): self.default_c = ['cl', 'cc', 'gcc'] - self.default_cpp = ['cl', 'c++'] + self.default_cpp = ['cl', 'c++', 'g++'] else: self.default_c = ['cc'] self.default_cpp = ['c++'] -- cgit v1.1