diff options
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index dd9f56e..85473b1 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -309,8 +309,8 @@ class Environment: self.default_c = ['cl', 'cc', 'gcc', 'clang'] self.default_cpp = ['cl', 'c++', 'g++', 'clang++'] else: - self.default_c = ['cc'] - self.default_cpp = ['c++'] + self.default_c = ['cc', 'gcc', 'clang'] + self.default_cpp = ['c++', 'g++', 'clang++'] self.default_objc = ['cc'] self.default_objcpp = ['c++'] self.default_fortran = ['gfortran', 'g95', 'f95', 'f90', 'f77', 'ifort'] |