diff options
| -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" |
