diff options
author | Ari Vuollet <GoaLitiuM@users.noreply.github.com> | 2019-04-03 19:59:24 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-04-03 19:59:24 +0300 |
commit | 5ee2fb6ede7534fe8ad04e8bfa60f154e74889b3 (patch) | |
tree | 6c7116dca837df0018f5ef87d0b09ecbb6faac18 /run_project_tests.py | |
parent | d4cece3b34b91ff9f726da2ffe340645ff0d7ad4 (diff) | |
download | meson-5ee2fb6ede7534fe8ad04e8bfa60f154e74889b3.zip meson-5ee2fb6ede7534fe8ad04e8bfa60f154e74889b3.tar.gz meson-5ee2fb6ede7534fe8ad04e8bfa60f154e74889b3.tar.bz2 |
d: Fix linker errors with shared libraries on Windows
Diffstat (limited to 'run_project_tests.py')
-rwxr-xr-x | run_project_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index be6ecd9..fdb5f48 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -563,7 +563,7 @@ def detect_tests_to_run(): ('C#', 'csharp', skip_csharp(backend)), ('vala', 'vala', backend is not Backend.ninja or not shutil.which('valac')), ('rust', 'rust', backend is not Backend.ninja or not shutil.which('rustc')), - ('d', 'd', backend is not Backend.ninja or not have_d_compiler() or mesonlib.is_windows()), + ('d', 'd', backend is not Backend.ninja or not have_d_compiler()), ('objective c', 'objc', backend not in (Backend.ninja, Backend.xcode) or mesonlib.is_windows() or not have_objc_compiler()), ('objective c++', 'objcpp', backend not in (Backend.ninja, Backend.xcode) or mesonlib.is_windows() or not have_objcpp_compiler()), ('fortran', 'fortran', backend is not Backend.ninja or not shutil.which('gfortran')), |