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.
1 parent 825cf51 commit d6336dfCopy full SHA for d6336df
src/bootstrap/doc.rs
@@ -478,7 +478,11 @@ impl Step for Rustc {
478
479
// Build cargo command.
480
let mut cargo = builder.cargo(compiler, Mode::Rustc, target, "doc");
481
- cargo.env("RUSTDOCFLAGS", "--document-private-items");
+ cargo.env(
482
+ "RUSTDOCFLAGS",
483
+ "--document-private-items \
484
+ --enable-index-page -Zunstable-options",
485
+ );
486
compile::rustc_cargo(builder, &mut cargo, target);
487
488
// Only include compiler crates, no dependencies of those, such as `libc`.
0 commit comments