diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2023-07-06 00:06:24 +0200 |
|---|---|---|
| committer | Jakub Beránek <berykubik@gmail.com> | 2023-07-06 00:06:24 +0200 |
| commit | 12b75fe18b42d6a2995bf86af2c22961d6888b42 (patch) | |
| tree | afffac2a47db59b18eef288d04448a7c5f92d919 | |
| parent | be99bb9cbfd4d97b7b74be50d3bb675c960f5e30 (diff) | |
| download | rust-12b75fe18b42d6a2995bf86af2c22961d6888b42.tar.gz rust-12b75fe18b42d6a2995bf86af2c22961d6888b42.zip | |
Fix LLVM config path on Windows
| -rwxr-xr-x | src/ci/stage-build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/stage-build.py b/src/ci/stage-build.py index 1b68d21e2a9..8640a3e0f34 100755 --- a/src/ci/stage-build.py +++ b/src/ci/stage-build.py @@ -842,7 +842,7 @@ def run_tests(pipeline: Pipeline): # Specify path to a LLVM config so that LLVM is not rebuilt. # It doesn't really matter which LLVM config we choose, because no sysroot will be compiled. - llvm_config = pipeline.build_artifacts() / "llvm" / "bin" / "llvm-config" + llvm_config = pipeline.build_artifacts() / "llvm" / "bin" / f"llvm-config{pipeline.executable_extension()}" assert llvm_config.is_file() config_content = f"""profile = "user" |
