Check for binary called g++ on Windows.

pull/245/head
Jussi Pakkanen 9 years ago
parent 11985b71b4
commit 7ca852525c
  1. 2
      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++']

Loading…
Cancel
Save