From: Alex Crichton Date: Wed, 2 Jan 2019 21:07:26 +0000 (-0800) Subject: Don't package up libLLVM.so with libstd X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=71fed3a8ab479ec46d9fd9a7c5c8f4ffb97786dc;p=rust.git Don't package up libLLVM.so with libstd It's only meant for rustc, so we should only install it once! --- diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs index 97a359639cb..38869bf441a 100644 --- a/src/bootstrap/dist.rs +++ b/src/bootstrap/dist.rs @@ -671,10 +671,18 @@ fn run(self, builder: &Builder) -> PathBuf { let mut src = builder.sysroot_libdir(compiler, target).to_path_buf(); src.pop(); // Remove the trailing /lib folder from the sysroot_libdir builder.cp_filtered(&src, &dst, &|path| { - let name = path.file_name().and_then(|s| s.to_str()); - name != Some(builder.config.rust_codegen_backends_dir.as_str()) && - name != Some("bin") - + if let Some(name) = path.file_name().and_then(|s| s.to_str()) { + if name == builder.config.rust_codegen_backends_dir.as_str() { + return false + } + if name == "bin" { + return false + } + if name.contains("LLVM") { + return false + } + } + true }); let mut cmd = rust_installer(builder);