From aeab73c9388effe1295cd9c844393613633f5f5b Mon Sep 17 00:00:00 2001 From: Simonas Kazlauskas Date: Sat, 8 Apr 2017 17:53:16 +0300 Subject: [PATCH] Specify type libraries for llvm-config --ldflags This matters on systems where static libraries and dynamic libraries reside in different location --- src/librustc_llvm/build.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/librustc_llvm/build.rs b/src/librustc_llvm/build.rs index 7d5887e699fd7..a8def4bafd864 100644 --- a/src/librustc_llvm/build.rs +++ b/src/librustc_llvm/build.rs @@ -217,6 +217,9 @@ fn main() { // hack around this by replacing the host triple with the target and pray // that those -L directories are the same! let mut cmd = Command::new(&llvm_config); + if let Some(link_arg) = llvm_link_arg { + cmd.arg(link_arg); + } cmd.arg("--ldflags"); for lib in output(&mut cmd).split_whitespace() { if lib.starts_with("-LIBPATH:") {