-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Description
Commit 418b1fa broke builds on Windows as llvm-config
has a .exe
extension but
Lines 163 to 164 in 418b1fa
let llvm_config = llvm_root.join("bin/llvm-config"); | |
t!(filetime::set_file_times(&llvm_config, now, now)); |
does not take that into account, resulting in a file not found error and bootstrap panicking.
Patching line 163 with
let llvm_config = llvm_root.join("bin").join(exe("llvm-config", builder.config.build));
fixes the build.
Metadata
Metadata
Assignees
Labels
No labels