Auto merge of #91720 - Aaron1011:skip-llvm-ci-tools, r=Mark-Simulacrum

Don't copy llvm tools to sysroot when using download-ci-llvm

Fixes #91710
This commit is contained in:
bors 2021-12-11 06:58:24 +00:00
commit 4a66a704b2

View File

@ -1173,7 +1173,12 @@ fn run(self, builder: &Builder<'_>) -> Compiler {
// (e.g. the `bootimage` crate).
for tool in LLVM_TOOLS {
let tool_exe = exe(tool, target_compiler.host);
builder.copy(&llvm_bin_dir.join(&tool_exe), &libdir_bin.join(&tool_exe));
let src_path = llvm_bin_dir.join(&tool_exe);
// When using `donwload-ci-llvm`, some of the tools
// may not exist, so skip trying to copy them.
if src_path.exists() {
builder.copy(&src_path, &libdir_bin.join(&tool_exe));
}
}
}
}