diff options
| author | Andy Russell <arussell123@gmail.com> | 2020-01-08 21:43:54 -0500 |
|---|---|---|
| committer | Andy Russell <arussell123@gmail.com> | 2020-01-08 21:43:54 -0500 |
| commit | 826780772e3fdd8fa5f491647f849d0be4cb6356 (patch) | |
| tree | c5c46ae65438451403f4ccc35b1f74acb7f1d429 /src/bootstrap | |
| parent | caa231d998a5e853c7ba1455d7a05b500df9d63c (diff) | |
| download | rust-826780772e3fdd8fa5f491647f849d0be4cb6356.tar.gz rust-826780772e3fdd8fa5f491647f849d0be4cb6356.zip | |
remove strip-hidden pass from compiler doc generation
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/doc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/doc.rs b/src/bootstrap/doc.rs index 8cd7fc2c172..e98ac8d6f47 100644 --- a/src/bootstrap/doc.rs +++ b/src/bootstrap/doc.rs @@ -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`. |
