diff options
-rw-r--r-- | environment.py | 2 | ||||
-rwxr-xr-x | run_tests.py | 8 |
2 files changed, 8 insertions, 2 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'] diff --git a/run_tests.py b/run_tests.py index 79c17cd..69898e7 100755 --- a/run_tests.py +++ b/run_tests.py @@ -288,7 +288,13 @@ def generate_prebuilt_object(): objectfile = objectbase + 'obj' else: objectfile = objectbase + 'o' - cmd = ['cc', '-c', source, '-o', objectfile] + if shutil.which('cc'): + cmd = 'cc' + elif shutil.which('gcc'): + cmd = 'gcc' + else: + raise RuntimeError("Could not find C compiler.") + cmd = [cmd, '-c', source, '-o', objectfile] subprocess.check_call(cmd) return objectfile |