We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e3258bd + bcf1a17 commit 608436bCopy full SHA for 608436b
src/bootstrap/bin/rustdoc.rs
@@ -35,7 +35,7 @@ fn main() {
35
.arg("--cfg")
36
.arg("dox")
37
.arg("--sysroot")
38
- .arg(sysroot)
+ .arg(&sysroot)
39
.env(bootstrap::util::dylib_path_var(),
40
env::join_paths(&dylib_path).unwrap());
41
@@ -72,7 +72,13 @@ fn main() {
72
}
73
74
if verbose > 1 {
75
- eprintln!("rustdoc command: {:?}", cmd);
+ eprintln!(
76
+ "rustdoc command: {:?}={:?} {:?}",
77
+ bootstrap::util::dylib_path_var(),
78
+ env::join_paths(&dylib_path).unwrap(),
79
+ cmd,
80
+ );
81
+ eprintln!("sysroot: {:?}", sysroot);
82
eprintln!("libdir: {:?}", libdir);
83
84
0 commit comments