diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-10-29 01:57:12 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-29 01:57:12 +0300 |
commit | 57d3ece5fc4e883fe3d069be7cd207fee8fffa90 (patch) | |
tree | 5c305b1466a0e011f020b4d29c7fdf96f7864970 /run_tests.py | |
parent | 1a159db8e90fa6b9571a06768d6f1ba08074e819 (diff) | |
parent | e292369ee20ed84337a52832d765ca544513dba3 (diff) | |
download | meson-57d3ece5fc4e883fe3d069be7cd207fee8fffa90.zip meson-57d3ece5fc4e883fe3d069be7cd207fee8fffa90.tar.gz meson-57d3ece5fc4e883fe3d069be7cd207fee8fffa90.tar.bz2 |
Merge pull request #2217 from mesonbuild/gcc7
Use GCC 7 for cross compilation tests.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-x | run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py index 00c97ca..79c9639 100755 --- a/run_tests.py +++ b/run_tests.py @@ -125,7 +125,7 @@ def get_fake_options(prefix): return opts def should_run_linux_cross_tests(): - return shutil.which('arm-linux-gnueabihf-gcc-6') and not platform.machine().lower().startswith('arm') + return shutil.which('arm-linux-gnueabihf-gcc-7') and not platform.machine().lower().startswith('arm') def run_configure_inprocess(commandlist): old_stdout = sys.stdout |