45 lines
1.6 KiB
Diff
45 lines
1.6 KiB
Diff
From c4c6747beb14cc96e7ce9d88018cef42533155df Mon Sep 17 00:00:00 2001
|
|
From: Samuel Holland <samuel@sholland.org>
|
|
Date: Sat, 2 Dec 2017 17:25:44 -0600
|
|
Subject: [PATCH 02/16] Allow rustdoc to work when cross-compiling on musl
|
|
|
|
musl can't handle foreign-architecture libraries in LD_LIBRARY_PATH.
|
|
---
|
|
src/bootstrap/bin/rustdoc.rs | 7 ++-----
|
|
1 file changed, 2 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/src/bootstrap/bin/rustdoc.rs b/src/bootstrap/bin/rustdoc.rs
|
|
index 6937fb92..ce787609 100644
|
|
--- a/src/bootstrap/bin/rustdoc.rs
|
|
+++ b/src/bootstrap/bin/rustdoc.rs
|
|
@@ -22,9 +22,6 @@ fn main() {
|
|
Err(_) => 0,
|
|
};
|
|
|
|
- let mut dylib_path = bootstrap::util::dylib_path();
|
|
- dylib_path.insert(0, PathBuf::from(libdir.clone()));
|
|
-
|
|
//FIXME(misdreavus): once stdsimd uses cfg(doc) instead of cfg(dox), remove the `--cfg dox`
|
|
//arguments here
|
|
let mut cmd = Command::new(rustdoc);
|
|
@@ -36,7 +33,7 @@ fn main() {
|
|
.arg("--sysroot")
|
|
.arg(&sysroot)
|
|
.env(bootstrap::util::dylib_path_var(),
|
|
- env::join_paths(&dylib_path).unwrap());
|
|
+ PathBuf::from(libdir.clone()));
|
|
|
|
// Force all crates compiled by this compiler to (a) be unstable and (b)
|
|
// allow the `rustc_private` feature to link to other unstable crates
|
|
@@ -87,7 +84,7 @@ fn main() {
|
|
eprintln!(
|
|
"rustdoc command: {:?}={:?} {:?}",
|
|
bootstrap::util::dylib_path_var(),
|
|
- env::join_paths(&dylib_path).unwrap(),
|
|
+ PathBuf::from(libdir.clone()),
|
|
cmd,
|
|
);
|
|
eprintln!("sysroot: {:?}", sysroot);
|
|
--
|
|
2.25.0
|
|
|