diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2021-08-14 14:40:15 -0700 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-08-15 03:06:01 +0300 |
commit | 6c55fc5cb0f6f363d5221c9bd0c1fd1fc6f90f4a (patch) | |
tree | b3949596ea598cd576635ab5dcaa295da61a1953 | |
parent | 75688240cfca7eed08c2754daa784c9bd1a70a73 (diff) | |
download | meson-6c55fc5cb0f6f363d5221c9bd0c1fd1fc6f90f4a.zip meson-6c55fc5cb0f6f363d5221c9bd0c1fd1fc6f90f4a.tar.gz meson-6c55fc5cb0f6f363d5221c9bd0c1fd1fc6f90f4a.tar.bz2 |
Disable Rust + clangcl.
-rwxr-xr-x | run_project_tests.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/run_project_tests.py b/run_project_tests.py index 45cd266..cc19568 100755 --- a/run_project_tests.py +++ b/run_project_tests.py @@ -1010,6 +1010,9 @@ def has_broken_compiler_combination() -> bool: # Rust and vs2017 do not work together. But only with 32 bits. if os.environ['VisualStudioVersion'] == '15.0' and os.environ['Platform'] == 'x86': return True + # Clang-cl also fails with Rust. + if shutil.which('cl') is None and shutil.which('clang-cl'): + return True return False def should_skip_rust(backend: Backend) -> bool: |