]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/doc.rs
bootstrap: convert llvm-tools to use Tarball
[rust.git] / src / bootstrap / doc.rs
1 //! Documentation generation for rustbuilder.
2 //!
3 //! This module implements generation for all bits and pieces of documentation
4 //! for the Rust project. This notably includes suites like the rust book, the
5 //! nomicon, rust by example, standalone documentation, etc.
6 //!
7 //! Everything here is basically just a shim around calling either `rustbook` or
8 //! `rustdoc`.
9
10 use std::collections::HashSet;
11 use std::fs;
12 use std::io;
13 use std::path::{Path, PathBuf};
14
15 use crate::Mode;
16 use build_helper::{t, up_to_date};
17
18 use crate::builder::{Builder, Compiler, RunConfig, ShouldRun, Step};
19 use crate::cache::{Interned, INTERNER};
20 use crate::compile;
21 use crate::config::{Config, TargetSelection};
22 use crate::tool::{self, prepare_tool_cargo, SourceType, Tool};
23 use crate::util::symlink_dir;
24
25 macro_rules! book {
26     ($($name:ident, $path:expr, $book_name:expr;)+) => {
27         $(
28             #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
29         pub struct $name {
30             target: TargetSelection,
31         }
32
33         impl Step for $name {
34             type Output = ();
35             const DEFAULT: bool = true;
36
37             fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
38                 let builder = run.builder;
39                 run.path($path).default_condition(builder.config.docs)
40             }
41
42             fn make_run(run: RunConfig<'_>) {
43                 run.builder.ensure($name {
44                     target: run.target,
45                 });
46             }
47
48             fn run(self, builder: &Builder<'_>) {
49                 builder.ensure(RustbookSrc {
50                     target: self.target,
51                     name: INTERNER.intern_str($book_name),
52                     src: INTERNER.intern_path(builder.src.join($path)),
53                 })
54             }
55         }
56         )+
57     }
58 }
59
60 // NOTE: When adding a book here, make sure to ALSO build the book by
61 // adding a build step in `src/bootstrap/builder.rs`!
62 book!(
63     CargoBook, "src/tools/cargo/src/doc", "cargo";
64     EditionGuide, "src/doc/edition-guide", "edition-guide";
65     EmbeddedBook, "src/doc/embedded-book", "embedded-book";
66     Nomicon, "src/doc/nomicon", "nomicon";
67     Reference, "src/doc/reference", "reference";
68     RustByExample, "src/doc/rust-by-example", "rust-by-example";
69     RustdocBook, "src/doc/rustdoc", "rustdoc";
70 );
71
72 fn open(builder: &Builder<'_>, path: impl AsRef<Path>) {
73     if builder.config.dry_run || !builder.config.cmd.open() {
74         return;
75     }
76
77     let path = path.as_ref();
78     builder.info(&format!("Opening doc {}", path.display()));
79     if let Err(err) = opener::open(path) {
80         builder.info(&format!("{}\n", err));
81     }
82 }
83
84 // "library/std" -> ["library", "std"]
85 //
86 // Used for deciding whether a particular step is one requested by the user on
87 // the `x.py doc` command line, which determines whether `--open` will open that
88 // page.
89 fn components_simplified(path: &PathBuf) -> Vec<&str> {
90     path.iter().map(|component| component.to_str().unwrap_or("???")).collect()
91 }
92
93 fn is_explicit_request(builder: &Builder<'_>, path: &str) -> bool {
94     builder
95         .paths
96         .iter()
97         .map(components_simplified)
98         .any(|requested| requested.iter().copied().eq(path.split('/')))
99 }
100
101 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
102 pub struct UnstableBook {
103     target: TargetSelection,
104 }
105
106 impl Step for UnstableBook {
107     type Output = ();
108     const DEFAULT: bool = true;
109
110     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
111         let builder = run.builder;
112         run.path("src/doc/unstable-book").default_condition(builder.config.docs)
113     }
114
115     fn make_run(run: RunConfig<'_>) {
116         run.builder.ensure(UnstableBook { target: run.target });
117     }
118
119     fn run(self, builder: &Builder<'_>) {
120         builder.ensure(UnstableBookGen { target: self.target });
121         builder.ensure(RustbookSrc {
122             target: self.target,
123             name: INTERNER.intern_str("unstable-book"),
124             src: INTERNER.intern_path(builder.md_doc_out(self.target).join("unstable-book")),
125         })
126     }
127 }
128
129 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
130 struct RustbookSrc {
131     target: TargetSelection,
132     name: Interned<String>,
133     src: Interned<PathBuf>,
134 }
135
136 impl Step for RustbookSrc {
137     type Output = ();
138
139     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
140         run.never()
141     }
142
143     /// Invoke `rustbook` for `target` for the doc book `name` from the `src` path.
144     ///
145     /// This will not actually generate any documentation if the documentation has
146     /// already been generated.
147     fn run(self, builder: &Builder<'_>) {
148         let target = self.target;
149         let name = self.name;
150         let src = self.src;
151         let out = builder.doc_out(target);
152         t!(fs::create_dir_all(&out));
153
154         let out = out.join(name);
155         let index = out.join("index.html");
156         let rustbook = builder.tool_exe(Tool::Rustbook);
157         let mut rustbook_cmd = builder.tool_cmd(Tool::Rustbook);
158         if builder.config.dry_run || up_to_date(&src, &index) && up_to_date(&rustbook, &index) {
159             return;
160         }
161         builder.info(&format!("Rustbook ({}) - {}", target, name));
162         let _ = fs::remove_dir_all(&out);
163
164         builder.run(rustbook_cmd.arg("build").arg(&src).arg("-d").arg(out));
165     }
166 }
167
168 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
169 pub struct TheBook {
170     compiler: Compiler,
171     target: TargetSelection,
172 }
173
174 impl Step for TheBook {
175     type Output = ();
176     const DEFAULT: bool = true;
177
178     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
179         let builder = run.builder;
180         run.path("src/doc/book").default_condition(builder.config.docs)
181     }
182
183     fn make_run(run: RunConfig<'_>) {
184         run.builder.ensure(TheBook {
185             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
186             target: run.target,
187         });
188     }
189
190     /// Builds the book and associated stuff.
191     ///
192     /// We need to build:
193     ///
194     /// * Book
195     /// * Older edition redirects
196     /// * Version info and CSS
197     /// * Index page
198     /// * Redirect pages
199     fn run(self, builder: &Builder<'_>) {
200         let compiler = self.compiler;
201         let target = self.target;
202
203         // build book
204         builder.ensure(RustbookSrc {
205             target,
206             name: INTERNER.intern_str("book"),
207             src: INTERNER.intern_path(builder.src.join("src/doc/book")),
208         });
209
210         // building older edition redirects
211         for edition in &["first-edition", "second-edition", "2018-edition"] {
212             builder.ensure(RustbookSrc {
213                 target,
214                 name: INTERNER.intern_string(format!("book/{}", edition)),
215                 src: INTERNER.intern_path(builder.src.join("src/doc/book").join(edition)),
216             });
217         }
218
219         // build the version info page and CSS
220         builder.ensure(Standalone { compiler, target });
221
222         // build the redirect pages
223         builder.info(&format!("Documenting book redirect pages ({})", target));
224         for file in t!(fs::read_dir(builder.src.join("src/doc/book/redirects"))) {
225             let file = t!(file);
226             let path = file.path();
227             let path = path.to_str().unwrap();
228
229             invoke_rustdoc(builder, compiler, target, path);
230         }
231
232         if is_explicit_request(builder, "src/doc/book") {
233             let out = builder.doc_out(target);
234             let index = out.join("book").join("index.html");
235             open(builder, &index);
236         }
237     }
238 }
239
240 fn invoke_rustdoc(
241     builder: &Builder<'_>,
242     compiler: Compiler,
243     target: TargetSelection,
244     markdown: &str,
245 ) {
246     let out = builder.doc_out(target);
247
248     let path = builder.src.join("src/doc").join(markdown);
249
250     let header = builder.src.join("src/doc/redirect.inc");
251     let footer = builder.src.join("src/doc/footer.inc");
252     let version_info = out.join("version_info.html");
253
254     let mut cmd = builder.rustdoc_cmd(compiler);
255
256     let out = out.join("book");
257
258     cmd.arg("--html-after-content")
259         .arg(&footer)
260         .arg("--html-before-content")
261         .arg(&version_info)
262         .arg("--html-in-header")
263         .arg(&header)
264         .arg("--markdown-no-toc")
265         .arg("--markdown-playground-url")
266         .arg("https://play.rust-lang.org/")
267         .arg("-o")
268         .arg(&out)
269         .arg(&path)
270         .arg("--markdown-css")
271         .arg("../rust.css");
272
273     builder.run(&mut cmd);
274 }
275
276 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
277 pub struct Standalone {
278     compiler: Compiler,
279     target: TargetSelection,
280 }
281
282 impl Step for Standalone {
283     type Output = ();
284     const DEFAULT: bool = true;
285
286     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
287         let builder = run.builder;
288         run.path("src/doc").default_condition(builder.config.docs)
289     }
290
291     fn make_run(run: RunConfig<'_>) {
292         run.builder.ensure(Standalone {
293             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
294             target: run.target,
295         });
296     }
297
298     /// Generates all standalone documentation as compiled by the rustdoc in `stage`
299     /// for the `target` into `out`.
300     ///
301     /// This will list all of `src/doc` looking for markdown files and appropriately
302     /// perform transformations like substituting `VERSION`, `SHORT_HASH`, and
303     /// `STAMP` along with providing the various header/footer HTML we've customized.
304     ///
305     /// In the end, this is just a glorified wrapper around rustdoc!
306     fn run(self, builder: &Builder<'_>) {
307         let target = self.target;
308         let compiler = self.compiler;
309         builder.info(&format!("Documenting standalone ({})", target));
310         let out = builder.doc_out(target);
311         t!(fs::create_dir_all(&out));
312
313         let favicon = builder.src.join("src/doc/favicon.inc");
314         let footer = builder.src.join("src/doc/footer.inc");
315         let full_toc = builder.src.join("src/doc/full-toc.inc");
316         t!(fs::copy(builder.src.join("src/doc/rust.css"), out.join("rust.css")));
317
318         let version_input = builder.src.join("src/doc/version_info.html.template");
319         let version_info = out.join("version_info.html");
320
321         if !builder.config.dry_run && !up_to_date(&version_input, &version_info) {
322             let info = t!(fs::read_to_string(&version_input))
323                 .replace("VERSION", &builder.rust_release())
324                 .replace("SHORT_HASH", builder.rust_info.sha_short().unwrap_or(""))
325                 .replace("STAMP", builder.rust_info.sha().unwrap_or(""));
326             t!(fs::write(&version_info, &info));
327         }
328
329         for file in t!(fs::read_dir(builder.src.join("src/doc"))) {
330             let file = t!(file);
331             let path = file.path();
332             let filename = path.file_name().unwrap().to_str().unwrap();
333             if !filename.ends_with(".md") || filename == "README.md" {
334                 continue;
335             }
336
337             let html = out.join(filename).with_extension("html");
338             let rustdoc = builder.rustdoc(compiler);
339             if up_to_date(&path, &html)
340                 && up_to_date(&footer, &html)
341                 && up_to_date(&favicon, &html)
342                 && up_to_date(&full_toc, &html)
343                 && (builder.config.dry_run || up_to_date(&version_info, &html))
344                 && (builder.config.dry_run || up_to_date(&rustdoc, &html))
345             {
346                 continue;
347             }
348
349             let mut cmd = builder.rustdoc_cmd(compiler);
350             // Needed for --index-page flag
351             cmd.arg("-Z").arg("unstable-options");
352
353             cmd.arg("--html-after-content")
354                 .arg(&footer)
355                 .arg("--html-before-content")
356                 .arg(&version_info)
357                 .arg("--html-in-header")
358                 .arg(&favicon)
359                 .arg("--markdown-no-toc")
360                 .arg("--index-page")
361                 .arg(&builder.src.join("src/doc/index.md"))
362                 .arg("--markdown-playground-url")
363                 .arg("https://play.rust-lang.org/")
364                 .arg("-o")
365                 .arg(&out)
366                 .arg(&path);
367
368             if filename == "not_found.md" {
369                 cmd.arg("--markdown-css").arg("https://doc.rust-lang.org/rust.css");
370             } else {
371                 cmd.arg("--markdown-css").arg("rust.css");
372             }
373             builder.run(&mut cmd);
374         }
375
376         // We open doc/index.html as the default if invoked as `x.py doc --open`
377         // with no particular explicit doc requested (e.g. library/core).
378         if builder.paths.is_empty() || is_explicit_request(builder, "src/doc") {
379             let index = out.join("index.html");
380             open(builder, &index);
381         }
382     }
383 }
384
385 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
386 pub struct Std {
387     pub stage: u32,
388     pub target: TargetSelection,
389 }
390
391 impl Step for Std {
392     type Output = ();
393     const DEFAULT: bool = true;
394
395     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
396         let builder = run.builder;
397         run.all_krates("test").default_condition(builder.config.docs)
398     }
399
400     fn make_run(run: RunConfig<'_>) {
401         run.builder.ensure(Std { stage: run.builder.top_stage, target: run.target });
402     }
403
404     /// Compile all standard library documentation.
405     ///
406     /// This will generate all documentation for the standard library and its
407     /// dependencies. This is largely just a wrapper around `cargo doc`.
408     fn run(self, builder: &Builder<'_>) {
409         let stage = self.stage;
410         let target = self.target;
411         builder.info(&format!("Documenting stage{} std ({})", stage, target));
412         let out = builder.doc_out(target);
413         t!(fs::create_dir_all(&out));
414         let compiler = builder.compiler(stage, builder.config.build);
415
416         builder.ensure(compile::Std { compiler, target });
417         let out_dir = builder.stage_out(compiler, Mode::Std).join(target.triple).join("doc");
418
419         t!(fs::copy(builder.src.join("src/doc/rust.css"), out.join("rust.css")));
420
421         let run_cargo_rustdoc_for = |package: &str| {
422             let mut cargo =
423                 builder.cargo(compiler, Mode::Std, SourceType::InTree, target, "rustdoc");
424             compile::std_cargo(builder, target, compiler.stage, &mut cargo);
425
426             cargo
427                 .arg("-p")
428                 .arg(package)
429                 .arg("--")
430                 .arg("--markdown-css")
431                 .arg("rust.css")
432                 .arg("--markdown-no-toc")
433                 .arg("-Z")
434                 .arg("unstable-options")
435                 .arg("--resource-suffix")
436                 .arg(&builder.version)
437                 .arg("--index-page")
438                 .arg(&builder.src.join("src/doc/index.md"));
439
440             builder.run(&mut cargo.into());
441         };
442         // Only build the following crates. While we could just iterate over the
443         // folder structure, that would also build internal crates that we do
444         // not want to show in documentation. These crates will later be visited
445         // by the rustc step, so internal documentation will show them.
446         //
447         // Note that the order here is important! The crates need to be
448         // processed starting from the leaves, otherwise rustdoc will not
449         // create correct links between crates because rustdoc depends on the
450         // existence of the output directories to know if it should be a local
451         // or remote link.
452         let krates = ["core", "alloc", "std", "proc_macro", "test"];
453         for krate in &krates {
454             run_cargo_rustdoc_for(krate);
455         }
456         builder.cp_r(&out_dir, &out);
457
458         // Look for library/std, library/core etc in the `x.py doc` arguments and
459         // open the corresponding rendered docs.
460         for path in builder.paths.iter().map(components_simplified) {
461             if path.get(0) == Some(&"library") {
462                 let requested_crate = &path[1];
463                 if krates.contains(&requested_crate) {
464                     let index = out.join(requested_crate).join("index.html");
465                     open(builder, &index);
466                 }
467             }
468         }
469     }
470 }
471
472 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
473 pub struct Rustc {
474     stage: u32,
475     target: TargetSelection,
476 }
477
478 impl Step for Rustc {
479     type Output = ();
480     const DEFAULT: bool = true;
481     const ONLY_HOSTS: bool = true;
482
483     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
484         let builder = run.builder;
485         run.krate("rustc-main").default_condition(builder.config.docs)
486     }
487
488     fn make_run(run: RunConfig<'_>) {
489         run.builder.ensure(Rustc { stage: run.builder.top_stage, target: run.target });
490     }
491
492     /// Generates compiler documentation.
493     ///
494     /// This will generate all documentation for compiler and dependencies.
495     /// Compiler documentation is distributed separately, so we make sure
496     /// we do not merge it with the other documentation from std, test and
497     /// proc_macros. This is largely just a wrapper around `cargo doc`.
498     fn run(self, builder: &Builder<'_>) {
499         let stage = self.stage;
500         let target = self.target;
501         builder.info(&format!("Documenting stage{} compiler ({})", stage, target));
502
503         // This is the intended out directory for compiler documentation.
504         let out = builder.compiler_doc_out(target);
505         t!(fs::create_dir_all(&out));
506
507         let compiler = builder.compiler(stage, builder.config.build);
508
509         if !builder.config.compiler_docs {
510             builder.info("\tskipping - compiler/librustdoc docs disabled");
511             return;
512         }
513
514         // Build rustc.
515         builder.ensure(compile::Rustc { compiler, target });
516
517         // This uses a shared directory so that librustdoc documentation gets
518         // correctly built and merged with the rustc documentation. This is
519         // needed because rustdoc is built in a different directory from
520         // rustc. rustdoc needs to be able to see everything, for example when
521         // merging the search index, or generating local (relative) links.
522         let out_dir = builder.stage_out(compiler, Mode::Rustc).join(target.triple).join("doc");
523         t!(symlink_dir_force(&builder.config, &out, &out_dir));
524
525         // Build cargo command.
526         let mut cargo = builder.cargo(compiler, Mode::Rustc, SourceType::InTree, target, "doc");
527         cargo.rustdocflag("--document-private-items");
528         cargo.rustdocflag("--enable-index-page");
529         cargo.rustdocflag("-Zunstable-options");
530         // cfg(not(bootstrap)), can be removed on the next beta bump
531         if stage != 0 {
532             cargo.rustdocflag("-Znormalize-docs");
533         }
534         compile::rustc_cargo(builder, &mut cargo, target);
535
536         // Only include compiler crates, no dependencies of those, such as `libc`.
537         cargo.arg("--no-deps");
538
539         // Find dependencies for top level crates.
540         let mut compiler_crates = HashSet::new();
541         for root_crate in &["rustc_driver", "rustc_codegen_llvm", "rustc_codegen_ssa"] {
542             compiler_crates.extend(
543                 builder
544                     .in_tree_crates(root_crate, Some(target))
545                     .into_iter()
546                     .map(|krate| krate.name),
547             );
548         }
549
550         for krate in &compiler_crates {
551             // Create all crate output directories first to make sure rustdoc uses
552             // relative links.
553             // FIXME: Cargo should probably do this itself.
554             t!(fs::create_dir_all(out_dir.join(krate)));
555             cargo.arg("-p").arg(krate);
556         }
557
558         builder.run(&mut cargo.into());
559     }
560 }
561
562 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
563 pub struct Rustdoc {
564     stage: u32,
565     target: TargetSelection,
566 }
567
568 impl Step for Rustdoc {
569     type Output = ();
570     const DEFAULT: bool = true;
571     const ONLY_HOSTS: bool = true;
572
573     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
574         run.krate("rustdoc-tool")
575     }
576
577     fn make_run(run: RunConfig<'_>) {
578         run.builder.ensure(Rustdoc { stage: run.builder.top_stage, target: run.target });
579     }
580
581     /// Generates compiler documentation.
582     ///
583     /// This will generate all documentation for compiler and dependencies.
584     /// Compiler documentation is distributed separately, so we make sure
585     /// we do not merge it with the other documentation from std, test and
586     /// proc_macros. This is largely just a wrapper around `cargo doc`.
587     fn run(self, builder: &Builder<'_>) {
588         let stage = self.stage;
589         let target = self.target;
590         builder.info(&format!("Documenting stage{} rustdoc ({})", stage, target));
591
592         // This is the intended out directory for compiler documentation.
593         let out = builder.compiler_doc_out(target);
594         t!(fs::create_dir_all(&out));
595
596         let compiler = builder.compiler(stage, builder.config.build);
597
598         if !builder.config.compiler_docs {
599             builder.info("\tskipping - compiler/librustdoc docs disabled");
600             return;
601         }
602
603         // Build rustc docs so that we generate relative links.
604         builder.ensure(Rustc { stage, target });
605
606         // Build rustdoc.
607         builder.ensure(tool::Rustdoc { compiler });
608
609         // Symlink compiler docs to the output directory of rustdoc documentation.
610         let out_dir = builder.stage_out(compiler, Mode::ToolRustc).join(target.triple).join("doc");
611         t!(fs::create_dir_all(&out_dir));
612         t!(symlink_dir_force(&builder.config, &out, &out_dir));
613
614         // Build cargo command.
615         let mut cargo = prepare_tool_cargo(
616             builder,
617             compiler,
618             Mode::ToolRustc,
619             target,
620             "doc",
621             "src/tools/rustdoc",
622             SourceType::InTree,
623             &[],
624         );
625
626         // Only include compiler crates, no dependencies of those, such as `libc`.
627         cargo.arg("--no-deps");
628         cargo.arg("-p").arg("rustdoc");
629
630         cargo.rustdocflag("--document-private-items");
631         builder.run(&mut cargo.into());
632     }
633 }
634
635 #[derive(Ord, PartialOrd, Debug, Copy, Clone, Hash, PartialEq, Eq)]
636 pub struct ErrorIndex {
637     pub compiler: Compiler,
638     pub target: TargetSelection,
639 }
640
641 impl Step for ErrorIndex {
642     type Output = ();
643     const DEFAULT: bool = true;
644     const ONLY_HOSTS: bool = true;
645
646     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
647         let builder = run.builder;
648         run.path("src/tools/error_index_generator").default_condition(builder.config.docs)
649     }
650
651     fn make_run(run: RunConfig<'_>) {
652         let target = run.target;
653         // error_index_generator depends on librustdoc. Use the compiler that
654         // is normally used to build rustdoc for other documentation so that
655         // it shares the same artifacts.
656         let compiler =
657             run.builder.compiler_for(run.builder.top_stage, run.builder.config.build, target);
658         run.builder.ensure(ErrorIndex { compiler, target });
659     }
660
661     /// Generates the HTML rendered error-index by running the
662     /// `error_index_generator` tool.
663     fn run(self, builder: &Builder<'_>) {
664         builder.info(&format!("Documenting error index ({})", self.target));
665         let out = builder.doc_out(self.target);
666         t!(fs::create_dir_all(&out));
667         let mut index = tool::ErrorIndex::command(builder, self.compiler);
668         index.arg("html");
669         index.arg(out.join("error-index.html"));
670         index.arg(&builder.version);
671
672         builder.run(&mut index);
673     }
674 }
675
676 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
677 pub struct UnstableBookGen {
678     target: TargetSelection,
679 }
680
681 impl Step for UnstableBookGen {
682     type Output = ();
683     const DEFAULT: bool = true;
684     const ONLY_HOSTS: bool = true;
685
686     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
687         let builder = run.builder;
688         run.path("src/tools/unstable-book-gen").default_condition(builder.config.docs)
689     }
690
691     fn make_run(run: RunConfig<'_>) {
692         run.builder.ensure(UnstableBookGen { target: run.target });
693     }
694
695     fn run(self, builder: &Builder<'_>) {
696         let target = self.target;
697
698         builder.info(&format!("Generating unstable book md files ({})", target));
699         let out = builder.md_doc_out(target).join("unstable-book");
700         builder.create_dir(&out);
701         builder.remove_dir(&out);
702         let mut cmd = builder.tool_cmd(Tool::UnstableBookGen);
703         cmd.arg(builder.src.join("library"));
704         cmd.arg(builder.src.join("compiler"));
705         cmd.arg(builder.src.join("src"));
706         cmd.arg(out);
707
708         builder.run(&mut cmd);
709     }
710 }
711
712 fn symlink_dir_force(config: &Config, src: &Path, dst: &Path) -> io::Result<()> {
713     if config.dry_run {
714         return Ok(());
715     }
716     if let Ok(m) = fs::symlink_metadata(dst) {
717         if m.file_type().is_dir() {
718             fs::remove_dir_all(dst)?;
719         } else {
720             // handle directory junctions on windows by falling back to
721             // `remove_dir`.
722             fs::remove_file(dst).or_else(|_| fs::remove_dir(dst))?;
723         }
724     }
725
726     symlink_dir(config, src, dst)
727 }
728
729 #[derive(Ord, PartialOrd, Debug, Copy, Clone, Hash, PartialEq, Eq)]
730 pub struct RustcBook {
731     pub compiler: Compiler,
732     pub target: TargetSelection,
733     pub validate: bool,
734 }
735
736 impl Step for RustcBook {
737     type Output = ();
738     const DEFAULT: bool = true;
739     const ONLY_HOSTS: bool = true;
740
741     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
742         let builder = run.builder;
743         run.path("src/doc/rustc").default_condition(builder.config.docs)
744     }
745
746     fn make_run(run: RunConfig<'_>) {
747         run.builder.ensure(RustcBook {
748             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
749             target: run.target,
750             validate: false,
751         });
752     }
753
754     /// Builds the rustc book.
755     ///
756     /// The lints are auto-generated by a tool, and then merged into the book
757     /// in the "md-doc" directory in the build output directory. Then
758     /// "rustbook" is used to convert it to HTML.
759     fn run(self, builder: &Builder<'_>) {
760         let out_base = builder.md_doc_out(self.target).join("rustc");
761         t!(fs::create_dir_all(&out_base));
762         let out_listing = out_base.join("src/lints");
763         builder.cp_r(&builder.src.join("src/doc/rustc"), &out_base);
764         builder.info(&format!("Generating lint docs ({})", self.target));
765
766         let rustc = builder.rustc(self.compiler);
767         // The tool runs `rustc` for extracting output examples, so it needs a
768         // functional sysroot.
769         builder.ensure(compile::Std { compiler: self.compiler, target: self.target });
770         let mut cmd = builder.tool_cmd(Tool::LintDocs);
771         cmd.arg("--src");
772         cmd.arg(builder.src.join("compiler"));
773         cmd.arg("--out");
774         cmd.arg(&out_listing);
775         cmd.arg("--rustc");
776         cmd.arg(&rustc);
777         cmd.arg("--rustc-target").arg(&self.target.rustc_target_arg());
778         if builder.config.verbose() {
779             cmd.arg("--verbose");
780         }
781         if self.validate {
782             cmd.arg("--validate");
783         }
784         // If the lib directories are in an unusual location (changed in
785         // config.toml), then this needs to explicitly update the dylib search
786         // path.
787         builder.add_rustc_lib_path(self.compiler, &mut cmd);
788         builder.run(&mut cmd);
789         // Run rustbook/mdbook to generate the HTML pages.
790         builder.ensure(RustbookSrc {
791             target: self.target,
792             name: INTERNER.intern_str("rustc"),
793             src: INTERNER.intern_path(out_base),
794         });
795         if is_explicit_request(builder, "src/doc/rustc") {
796             let out = builder.doc_out(self.target);
797             let index = out.join("rustc").join("index.html");
798             open(builder, &index);
799         }
800     }
801 }