Skip to content

Commit 5bf3a5d

Browse files
committed
Make compiler-docs only control the default instead of being a hard off-switch
This also fixes `x doc src/tools/clippy` when compiler-docs is disabled.
1 parent 90a273b commit 5bf3a5d

File tree

2 files changed

+5
-16
lines changed

2 files changed

+5
-16
lines changed

src/bootstrap/dist.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ impl Step for RustcDocs {
9696
const DEFAULT: bool = true;
9797

9898
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
99-
run.path("src/librustc")
99+
let builder = run.builder;
100+
run.path("rustc-docs").default_condition(builder.config.compiler_docs)
100101
}
101102

102103
fn make_run(run: RunConfig<'_>) {
@@ -106,9 +107,6 @@ impl Step for RustcDocs {
106107
/// Builds the `rustc-docs` installer component.
107108
fn run(self, builder: &Builder<'_>) -> Option<GeneratedTarball> {
108109
let host = self.host;
109-
if !builder.config.compiler_docs {
110-
return None;
111-
}
112110
builder.default_doc(&[]);
113111

114112
let mut tarball = Tarball::new(builder, "rustc-docs", &host.triple);

src/bootstrap/doc.rs

+3-12
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ impl Step for Rustc {
529529

530530
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
531531
let builder = run.builder;
532-
run.krate("rustc-main").path("compiler").default_condition(builder.config.docs)
532+
run.krate("rustc-main").path("compiler").default_condition(builder.config.compiler_docs)
533533
}
534534

535535
fn make_run(run: RunConfig<'_>) {
@@ -560,11 +560,6 @@ impl Step for Rustc {
560560
})
561561
.collect::<Vec<_>>();
562562

563-
if !builder.config.compiler_docs && !builder.was_invoked_explicitly::<Self>() {
564-
builder.info("\tskipping - compiler/librustdoc docs disabled");
565-
return;
566-
}
567-
568563
// This is the intended out directory for compiler documentation.
569564
let out = builder.compiler_doc_out(target);
570565
t!(fs::create_dir_all(&out));
@@ -674,7 +669,8 @@ macro_rules! tool_doc {
674669
const ONLY_HOSTS: bool = true;
675670

676671
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
677-
run.krate($should_run)
672+
let builder = run.builder;
673+
run.krate($should_run).default_condition(builder.config.compiler_docs)
678674
}
679675

680676
fn make_run(run: RunConfig<'_>) {
@@ -705,11 +701,6 @@ macro_rules! tool_doc {
705701

706702
let compiler = builder.compiler(stage, builder.config.build);
707703

708-
if !builder.config.compiler_docs && !builder.was_invoked_explicitly::<Self>() {
709-
builder.info("\tskipping - compiler/tool docs disabled");
710-
return;
711-
}
712-
713704
// Build rustc docs so that we generate relative links.
714705
builder.ensure(Rustc { stage, target });
715706

0 commit comments

Comments
 (0)