We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 13e4f87 + 15abd82 commit 31ec973Copy full SHA for 31ec973
src/bootstrap/native.rs
@@ -160,7 +160,7 @@ pub(crate) fn maybe_download_ci_llvm(builder: &Builder<'_>) {
160
// files in the tarball are in the past, so it doesn't trigger a
161
// rebuild.
162
let now = filetime::FileTime::from_system_time(std::time::SystemTime::now());
163
- let llvm_config = llvm_root.join("bin/llvm-config");
+ let llvm_config = llvm_root.join("bin").join(exe("llvm-config", builder.config.build));
164
t!(filetime::set_file_times(&llvm_config, now, now));
165
166
let llvm_lib = llvm_root.join("lib");
0 commit comments