Skip to content

Commit 12b75fe

Browse files
committed
Fix LLVM config path on Windows
1 parent be99bb9 commit 12b75fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ci/stage-build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -842,7 +842,7 @@ def extract_dist_dir(name: str) -> Path:
842842

843843
# Specify path to a LLVM config so that LLVM is not rebuilt.
844844
# It doesn't really matter which LLVM config we choose, because no sysroot will be compiled.
845-
llvm_config = pipeline.build_artifacts() / "llvm" / "bin" / "llvm-config"
845+
llvm_config = pipeline.build_artifacts() / "llvm" / "bin" / f"llvm-config{pipeline.executable_extension()}"
846846
assert llvm_config.is_file()
847847

848848
config_content = f"""profile = "user"

0 commit comments

Comments
 (0)