Rollup merge of #68039 - euclio:remove-strip-hidden, r=dtolnay
remove explicit strip-hidden pass from compiler doc generation `strip-hidden` is now implied by `--document-private-items` with #67875, so there's no need to specify it anymore.
This commit is contained in:
commit
93f0ba970f
1 changed files with 1 additions and 1 deletions
|
@ -531,7 +531,7 @@ impl Step for Rustc {
|
|||
|
||||
// Build cargo command.
|
||||
let mut cargo = builder.cargo(compiler, Mode::Rustc, target, "doc");
|
||||
cargo.env("RUSTDOCFLAGS", "--document-private-items --passes strip-hidden");
|
||||
cargo.env("RUSTDOCFLAGS", "--document-private-items");
|
||||
compile::rustc_cargo(builder, &mut cargo, target);
|
||||
|
||||
// Only include compiler crates, no dependencies of those, such as `libc`.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue