]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/tool.rs
Rollup merge of #100126 - petrochenkov:screname, r=davidtwco
[rust.git] / src / bootstrap / tool.rs
1 use std::collections::HashSet;
2 use std::env;
3 use std::fs;
4 use std::path::PathBuf;
5 use std::process::Command;
6
7 use crate::builder::{Builder, Cargo as CargoCommand, RunConfig, ShouldRun, Step};
8 use crate::channel::GitInfo;
9 use crate::compile;
10 use crate::config::TargetSelection;
11 use crate::toolstate::ToolState;
12 use crate::util::{add_dylib_path, exe, t};
13 use crate::Compiler;
14 use crate::Mode;
15
16 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
17 pub enum SourceType {
18     InTree,
19     Submodule,
20 }
21
22 #[derive(Debug, Clone, Hash, PartialEq, Eq)]
23 struct ToolBuild {
24     compiler: Compiler,
25     target: TargetSelection,
26     tool: &'static str,
27     path: &'static str,
28     mode: Mode,
29     is_optional_tool: bool,
30     source_type: SourceType,
31     extra_features: Vec<String>,
32 }
33
34 impl Step for ToolBuild {
35     type Output = Option<PathBuf>;
36
37     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
38         run.never()
39     }
40
41     /// Builds a tool in `src/tools`
42     ///
43     /// This will build the specified tool with the specified `host` compiler in
44     /// `stage` into the normal cargo output directory.
45     fn run(self, builder: &Builder<'_>) -> Option<PathBuf> {
46         let compiler = self.compiler;
47         let target = self.target;
48         let mut tool = self.tool;
49         let path = self.path;
50         let is_optional_tool = self.is_optional_tool;
51
52         match self.mode {
53             Mode::ToolRustc => {
54                 builder.ensure(compile::Std::new(compiler, compiler.host));
55                 builder.ensure(compile::Rustc::new(compiler, target));
56             }
57             Mode::ToolStd => builder.ensure(compile::Std::new(compiler, target)),
58             Mode::ToolBootstrap => {} // uses downloaded stage0 compiler libs
59             _ => panic!("unexpected Mode for tool build"),
60         }
61
62         let cargo = prepare_tool_cargo(
63             builder,
64             compiler,
65             self.mode,
66             target,
67             "build",
68             path,
69             self.source_type,
70             &self.extra_features,
71         );
72
73         builder.info(&format!("Building stage{} tool {} ({})", compiler.stage, tool, target));
74         let mut duplicates = Vec::new();
75         let is_expected = compile::stream_cargo(builder, cargo, vec![], &mut |msg| {
76             // Only care about big things like the RLS/Cargo for now
77             match tool {
78                 "rls" | "cargo" | "clippy-driver" | "miri" | "rustfmt" => {}
79
80                 _ => return,
81             }
82             let (id, features, filenames) = match msg {
83                 compile::CargoMessage::CompilerArtifact {
84                     package_id,
85                     features,
86                     filenames,
87                     target: _,
88                 } => (package_id, features, filenames),
89                 _ => return,
90             };
91             let features = features.iter().map(|s| s.to_string()).collect::<Vec<_>>();
92
93             for path in filenames {
94                 let val = (tool, PathBuf::from(&*path), features.clone());
95                 // we're only interested in deduplicating rlibs for now
96                 if val.1.extension().and_then(|s| s.to_str()) != Some("rlib") {
97                     continue;
98                 }
99
100                 // Don't worry about compiles that turn out to be host
101                 // dependencies or build scripts. To skip these we look for
102                 // anything that goes in `.../release/deps` but *doesn't* go in
103                 // `$target/release/deps`. This ensure that outputs in
104                 // `$target/release` are still considered candidates for
105                 // deduplication.
106                 if let Some(parent) = val.1.parent() {
107                     if parent.ends_with("release/deps") {
108                         let maybe_target = parent
109                             .parent()
110                             .and_then(|p| p.parent())
111                             .and_then(|p| p.file_name())
112                             .and_then(|p| p.to_str())
113                             .unwrap();
114                         if maybe_target != &*target.triple {
115                             continue;
116                         }
117                     }
118                 }
119
120                 // Record that we've built an artifact for `id`, and if one was
121                 // already listed then we need to see if we reused the same
122                 // artifact or produced a duplicate.
123                 let mut artifacts = builder.tool_artifacts.borrow_mut();
124                 let prev_artifacts = artifacts.entry(target).or_default();
125                 let prev = match prev_artifacts.get(&*id) {
126                     Some(prev) => prev,
127                     None => {
128                         prev_artifacts.insert(id.to_string(), val);
129                         continue;
130                     }
131                 };
132                 if prev.1 == val.1 {
133                     return; // same path, same artifact
134                 }
135
136                 // If the paths are different and one of them *isn't* inside of
137                 // `release/deps`, then it means it's probably in
138                 // `$target/release`, or it's some final artifact like
139                 // `libcargo.rlib`. In these situations Cargo probably just
140                 // copied it up from `$target/release/deps/libcargo-xxxx.rlib`,
141                 // so if the features are equal we can just skip it.
142                 let prev_no_hash = prev.1.parent().unwrap().ends_with("release/deps");
143                 let val_no_hash = val.1.parent().unwrap().ends_with("release/deps");
144                 if prev.2 == val.2 || !prev_no_hash || !val_no_hash {
145                     return;
146                 }
147
148                 // ... and otherwise this looks like we duplicated some sort of
149                 // compilation, so record it to generate an error later.
150                 duplicates.push((id.to_string(), val, prev.clone()));
151             }
152         });
153
154         if is_expected && !duplicates.is_empty() {
155             eprintln!(
156                 "duplicate artifacts found when compiling a tool, this \
157                       typically means that something was recompiled because \
158                       a transitive dependency has different features activated \
159                       than in a previous build:\n"
160             );
161             let (same, different): (Vec<_>, Vec<_>) =
162                 duplicates.into_iter().partition(|(_, cur, prev)| cur.2 == prev.2);
163             if !same.is_empty() {
164                 eprintln!(
165                     "the following dependencies are duplicated although they \
166                       have the same features enabled:"
167                 );
168                 for (id, cur, prev) in same {
169                     eprintln!("  {}", id);
170                     // same features
171                     eprintln!("    `{}` ({:?})\n    `{}` ({:?})", cur.0, cur.1, prev.0, prev.1);
172                 }
173             }
174             if !different.is_empty() {
175                 eprintln!("the following dependencies have different features:");
176                 for (id, cur, prev) in different {
177                     eprintln!("  {}", id);
178                     let cur_features: HashSet<_> = cur.2.into_iter().collect();
179                     let prev_features: HashSet<_> = prev.2.into_iter().collect();
180                     eprintln!(
181                         "    `{}` additionally enabled features {:?} at {:?}",
182                         cur.0,
183                         &cur_features - &prev_features,
184                         cur.1
185                     );
186                     eprintln!(
187                         "    `{}` additionally enabled features {:?} at {:?}",
188                         prev.0,
189                         &prev_features - &cur_features,
190                         prev.1
191                     );
192                 }
193             }
194             eprintln!();
195             eprintln!(
196                 "to fix this you will probably want to edit the local \
197                       src/tools/rustc-workspace-hack/Cargo.toml crate, as \
198                       that will update the dependency graph to ensure that \
199                       these crates all share the same feature set"
200             );
201             panic!("tools should not compile multiple copies of the same crate");
202         }
203
204         builder.save_toolstate(
205             tool,
206             if is_expected { ToolState::TestFail } else { ToolState::BuildFail },
207         );
208
209         if !is_expected {
210             if !is_optional_tool {
211                 crate::detail_exit(1);
212             } else {
213                 None
214             }
215         } else {
216             // HACK(#82501): on Windows, the tools directory gets added to PATH when running tests, and
217             // compiletest confuses HTML tidy with the in-tree tidy. Name the in-tree tidy something
218             // different so the problem doesn't come up.
219             if tool == "tidy" {
220                 tool = "rust-tidy";
221             }
222             let cargo_out = builder.cargo_out(compiler, self.mode, target).join(exe(tool, target));
223             let bin = builder.tools_dir(compiler).join(exe(tool, target));
224             builder.copy(&cargo_out, &bin);
225             Some(bin)
226         }
227     }
228 }
229
230 pub fn prepare_tool_cargo(
231     builder: &Builder<'_>,
232     compiler: Compiler,
233     mode: Mode,
234     target: TargetSelection,
235     command: &'static str,
236     path: &'static str,
237     source_type: SourceType,
238     extra_features: &[String],
239 ) -> CargoCommand {
240     let mut cargo = builder.cargo(compiler, mode, source_type, target, command);
241     let dir = builder.src.join(path);
242     cargo.arg("--manifest-path").arg(dir.join("Cargo.toml"));
243
244     let mut features = extra_features.to_vec();
245     if builder.build.config.cargo_native_static {
246         if path.ends_with("cargo")
247             || path.ends_with("rls")
248             || path.ends_with("clippy")
249             || path.ends_with("miri")
250             || path.ends_with("rustfmt")
251         {
252             cargo.env("LIBZ_SYS_STATIC", "1");
253             features.push("rustc-workspace-hack/all-static".to_string());
254         }
255     }
256
257     // clippy tests need to know about the stage sysroot. Set them consistently while building to
258     // avoid rebuilding when running tests.
259     cargo.env("SYSROOT", builder.sysroot(compiler));
260
261     // if tools are using lzma we want to force the build script to build its
262     // own copy
263     cargo.env("LZMA_API_STATIC", "1");
264
265     // CFG_RELEASE is needed by rustfmt (and possibly other tools) which
266     // import rustc-ap-rustc_attr which requires this to be set for the
267     // `#[cfg(version(...))]` attribute.
268     cargo.env("CFG_RELEASE", builder.rust_release());
269     cargo.env("CFG_RELEASE_CHANNEL", &builder.config.channel);
270     cargo.env("CFG_VERSION", builder.rust_version());
271     cargo.env("CFG_RELEASE_NUM", &builder.version);
272     cargo.env("DOC_RUST_LANG_ORG_CHANNEL", builder.doc_rust_lang_org_channel());
273
274     let info = GitInfo::new(builder.config.ignore_git, &dir);
275     if let Some(sha) = info.sha() {
276         cargo.env("CFG_COMMIT_HASH", sha);
277     }
278     if let Some(sha_short) = info.sha_short() {
279         cargo.env("CFG_SHORT_COMMIT_HASH", sha_short);
280     }
281     if let Some(date) = info.commit_date() {
282         cargo.env("CFG_COMMIT_DATE", date);
283     }
284     if !features.is_empty() {
285         cargo.arg("--features").arg(&features.join(", "));
286     }
287     cargo
288 }
289
290 macro_rules! bootstrap_tool {
291     ($(
292         $name:ident, $path:expr, $tool_name:expr
293         $(,is_external_tool = $external:expr)*
294         $(,is_unstable_tool = $unstable:expr)*
295         ;
296     )+) => {
297         #[derive(Copy, PartialEq, Eq, Clone)]
298         pub enum Tool {
299             $(
300                 $name,
301             )+
302         }
303
304         impl<'a> Builder<'a> {
305             pub fn tool_exe(&self, tool: Tool) -> PathBuf {
306                 match tool {
307                     $(Tool::$name =>
308                         self.ensure($name {
309                             compiler: self.compiler(0, self.config.build),
310                             target: self.config.build,
311                         }),
312                     )+
313                 }
314             }
315         }
316
317         $(
318             #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
319         pub struct $name {
320             pub compiler: Compiler,
321             pub target: TargetSelection,
322         }
323
324         impl Step for $name {
325             type Output = PathBuf;
326
327             fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
328                 run.path($path)
329             }
330
331             fn make_run(run: RunConfig<'_>) {
332                 run.builder.ensure($name {
333                     // snapshot compiler
334                     compiler: run.builder.compiler(0, run.builder.config.build),
335                     target: run.target,
336                 });
337             }
338
339             fn run(self, builder: &Builder<'_>) -> PathBuf {
340                 builder.ensure(ToolBuild {
341                     compiler: self.compiler,
342                     target: self.target,
343                     tool: $tool_name,
344                     mode: if false $(|| $unstable)* {
345                         // use in-tree libraries for unstable features
346                         Mode::ToolStd
347                     } else {
348                         Mode::ToolBootstrap
349                     },
350                     path: $path,
351                     is_optional_tool: false,
352                     source_type: if false $(|| $external)* {
353                         SourceType::Submodule
354                     } else {
355                         SourceType::InTree
356                     },
357                     extra_features: vec![],
358                 }).expect("expected to build -- essential tool")
359             }
360         }
361         )+
362     }
363 }
364
365 bootstrap_tool!(
366     Rustbook, "src/tools/rustbook", "rustbook";
367     UnstableBookGen, "src/tools/unstable-book-gen", "unstable-book-gen";
368     Tidy, "src/tools/tidy", "tidy";
369     Linkchecker, "src/tools/linkchecker", "linkchecker";
370     CargoTest, "src/tools/cargotest", "cargotest";
371     Compiletest, "src/tools/compiletest", "compiletest", is_unstable_tool = true;
372     BuildManifest, "src/tools/build-manifest", "build-manifest";
373     RemoteTestClient, "src/tools/remote-test-client", "remote-test-client";
374     RustInstaller, "src/tools/rust-installer", "rust-installer", is_external_tool = true;
375     RustdocTheme, "src/tools/rustdoc-themes", "rustdoc-themes";
376     ExpandYamlAnchors, "src/tools/expand-yaml-anchors", "expand-yaml-anchors";
377     LintDocs, "src/tools/lint-docs", "lint-docs";
378     JsonDocCk, "src/tools/jsondocck", "jsondocck";
379     HtmlChecker, "src/tools/html-checker", "html-checker";
380     BumpStage0, "src/tools/bump-stage0", "bump-stage0";
381 );
382
383 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq, Ord, PartialOrd)]
384 pub struct ErrorIndex {
385     pub compiler: Compiler,
386 }
387
388 impl ErrorIndex {
389     pub fn command(builder: &Builder<'_>) -> Command {
390         // Error-index-generator links with the rustdoc library, so we need to add `rustc_lib_paths`
391         // for rustc_private and libLLVM.so, and `sysroot_lib` for libstd, etc.
392         let host = builder.config.build;
393         let compiler = builder.compiler_for(builder.top_stage, host, host);
394         let mut cmd = Command::new(builder.ensure(ErrorIndex { compiler }));
395         let mut dylib_paths = builder.rustc_lib_paths(compiler);
396         dylib_paths.push(PathBuf::from(&builder.sysroot_libdir(compiler, compiler.host)));
397         add_dylib_path(dylib_paths, &mut cmd);
398         cmd
399     }
400 }
401
402 impl Step for ErrorIndex {
403     type Output = PathBuf;
404
405     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
406         run.path("src/tools/error_index_generator")
407     }
408
409     fn make_run(run: RunConfig<'_>) {
410         // Compile the error-index in the same stage as rustdoc to avoid
411         // recompiling rustdoc twice if we can.
412         //
413         // NOTE: This `make_run` isn't used in normal situations, only if you
414         // manually build the tool with `x.py build
415         // src/tools/error-index-generator` which almost nobody does.
416         // Normally, `x.py test` or `x.py doc` will use the
417         // `ErrorIndex::command` function instead.
418         let compiler =
419             run.builder.compiler(run.builder.top_stage.saturating_sub(1), run.builder.config.build);
420         run.builder.ensure(ErrorIndex { compiler });
421     }
422
423     fn run(self, builder: &Builder<'_>) -> PathBuf {
424         builder
425             .ensure(ToolBuild {
426                 compiler: self.compiler,
427                 target: self.compiler.host,
428                 tool: "error_index_generator",
429                 mode: Mode::ToolRustc,
430                 path: "src/tools/error_index_generator",
431                 is_optional_tool: false,
432                 source_type: SourceType::InTree,
433                 extra_features: Vec::new(),
434             })
435             .expect("expected to build -- essential tool")
436     }
437 }
438
439 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
440 pub struct RemoteTestServer {
441     pub compiler: Compiler,
442     pub target: TargetSelection,
443 }
444
445 impl Step for RemoteTestServer {
446     type Output = PathBuf;
447
448     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
449         run.path("src/tools/remote-test-server")
450     }
451
452     fn make_run(run: RunConfig<'_>) {
453         run.builder.ensure(RemoteTestServer {
454             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
455             target: run.target,
456         });
457     }
458
459     fn run(self, builder: &Builder<'_>) -> PathBuf {
460         builder
461             .ensure(ToolBuild {
462                 compiler: self.compiler,
463                 target: self.target,
464                 tool: "remote-test-server",
465                 mode: Mode::ToolStd,
466                 path: "src/tools/remote-test-server",
467                 is_optional_tool: false,
468                 source_type: SourceType::InTree,
469                 extra_features: Vec::new(),
470             })
471             .expect("expected to build -- essential tool")
472     }
473 }
474
475 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq, Ord, PartialOrd)]
476 pub struct Rustdoc {
477     /// This should only ever be 0 or 2.
478     /// We sometimes want to reference the "bootstrap" rustdoc, which is why this option is here.
479     pub compiler: Compiler,
480 }
481
482 impl Step for Rustdoc {
483     type Output = PathBuf;
484     const DEFAULT: bool = true;
485     const ONLY_HOSTS: bool = true;
486
487     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
488         run.path("src/tools/rustdoc").path("src/librustdoc")
489     }
490
491     fn make_run(run: RunConfig<'_>) {
492         run.builder.ensure(Rustdoc {
493             // Note: this is somewhat unique in that we actually want a *target*
494             // compiler here, because rustdoc *is* a compiler. We won't be using
495             // this as the compiler to build with, but rather this is "what
496             // compiler are we producing"?
497             compiler: run.builder.compiler(run.builder.top_stage, run.target),
498         });
499     }
500
501     fn run(self, builder: &Builder<'_>) -> PathBuf {
502         let target_compiler = self.compiler;
503         if target_compiler.stage == 0 {
504             if !target_compiler.is_snapshot(builder) {
505                 panic!("rustdoc in stage 0 must be snapshot rustdoc");
506             }
507             return builder.initial_rustc.with_file_name(exe("rustdoc", target_compiler.host));
508         }
509         let target = target_compiler.host;
510         // Similar to `compile::Assemble`, build with the previous stage's compiler. Otherwise
511         // we'd have stageN/bin/rustc and stageN/bin/rustdoc be effectively different stage
512         // compilers, which isn't what we want. Rustdoc should be linked in the same way as the
513         // rustc compiler it's paired with, so it must be built with the previous stage compiler.
514         let build_compiler = builder.compiler(target_compiler.stage - 1, builder.config.build);
515
516         // When using `download-rustc` and a stage0 build_compiler, copying rustc doesn't actually
517         // build stage0 libstd (because the libstd in sysroot has the wrong ABI). Explicitly build
518         // it.
519         builder.ensure(compile::Std::new(build_compiler, target_compiler.host));
520         builder.ensure(compile::Rustc::new(build_compiler, target_compiler.host));
521         // NOTE: this implies that `download-rustc` is pretty useless when compiling with the stage0
522         // compiler, since you do just as much work.
523         if !builder.config.dry_run && builder.download_rustc() && build_compiler.stage == 0 {
524             println!(
525                 "warning: `download-rustc` does nothing when building stage1 tools; consider using `--stage 2` instead"
526             );
527         }
528
529         // The presence of `target_compiler` ensures that the necessary libraries (codegen backends,
530         // compiler libraries, ...) are built. Rustdoc does not require the presence of any
531         // libraries within sysroot_libdir (i.e., rustlib), though doctests may want it (since
532         // they'll be linked to those libraries). As such, don't explicitly `ensure` any additional
533         // libraries here. The intuition here is that If we've built a compiler, we should be able
534         // to build rustdoc.
535         //
536         let mut features = Vec::new();
537         if builder.config.jemalloc {
538             features.push("jemalloc".to_string());
539         }
540
541         let cargo = prepare_tool_cargo(
542             builder,
543             build_compiler,
544             Mode::ToolRustc,
545             target,
546             "build",
547             "src/tools/rustdoc",
548             SourceType::InTree,
549             features.as_slice(),
550         );
551
552         builder.info(&format!(
553             "Building rustdoc for stage{} ({})",
554             target_compiler.stage, target_compiler.host
555         ));
556         builder.run(&mut cargo.into());
557
558         // Cargo adds a number of paths to the dylib search path on windows, which results in
559         // the wrong rustdoc being executed. To avoid the conflicting rustdocs, we name the "tool"
560         // rustdoc a different name.
561         let tool_rustdoc = builder
562             .cargo_out(build_compiler, Mode::ToolRustc, target)
563             .join(exe("rustdoc_tool_binary", target_compiler.host));
564
565         // don't create a stage0-sysroot/bin directory.
566         if target_compiler.stage > 0 {
567             let sysroot = builder.sysroot(target_compiler);
568             let bindir = sysroot.join("bin");
569             t!(fs::create_dir_all(&bindir));
570             let bin_rustdoc = bindir.join(exe("rustdoc", target_compiler.host));
571             let _ = fs::remove_file(&bin_rustdoc);
572             builder.copy(&tool_rustdoc, &bin_rustdoc);
573             bin_rustdoc
574         } else {
575             tool_rustdoc
576         }
577     }
578 }
579
580 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
581 pub struct Cargo {
582     pub compiler: Compiler,
583     pub target: TargetSelection,
584 }
585
586 impl Step for Cargo {
587     type Output = PathBuf;
588     const DEFAULT: bool = true;
589     const ONLY_HOSTS: bool = true;
590
591     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
592         let builder = run.builder;
593         run.path("src/tools/cargo").default_condition(
594             builder.config.extended
595                 && builder.config.tools.as_ref().map_or(
596                     true,
597                     // If `tools` is set, search list for this tool.
598                     |tools| tools.iter().any(|tool| tool == "cargo"),
599                 ),
600         )
601     }
602
603     fn make_run(run: RunConfig<'_>) {
604         run.builder.ensure(Cargo {
605             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
606             target: run.target,
607         });
608     }
609
610     fn run(self, builder: &Builder<'_>) -> PathBuf {
611         let cargo_bin_path = builder
612             .ensure(ToolBuild {
613                 compiler: self.compiler,
614                 target: self.target,
615                 tool: "cargo",
616                 mode: Mode::ToolRustc,
617                 path: "src/tools/cargo",
618                 is_optional_tool: false,
619                 source_type: SourceType::Submodule,
620                 extra_features: Vec::new(),
621             })
622             .expect("expected to build -- essential tool");
623
624         let build_cred = |name, path| {
625             // These credential helpers are currently experimental.
626             // Any build failures will be ignored.
627             let _ = builder.ensure(ToolBuild {
628                 compiler: self.compiler,
629                 target: self.target,
630                 tool: name,
631                 mode: Mode::ToolRustc,
632                 path,
633                 is_optional_tool: true,
634                 source_type: SourceType::Submodule,
635                 extra_features: Vec::new(),
636             });
637         };
638
639         if self.target.contains("windows") {
640             build_cred(
641                 "cargo-credential-wincred",
642                 "src/tools/cargo/crates/credential/cargo-credential-wincred",
643             );
644         }
645         if self.target.contains("apple-darwin") {
646             build_cred(
647                 "cargo-credential-macos-keychain",
648                 "src/tools/cargo/crates/credential/cargo-credential-macos-keychain",
649             );
650         }
651         build_cred(
652             "cargo-credential-1password",
653             "src/tools/cargo/crates/credential/cargo-credential-1password",
654         );
655         cargo_bin_path
656     }
657 }
658
659 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
660 pub struct LldWrapper {
661     pub compiler: Compiler,
662     pub target: TargetSelection,
663 }
664
665 impl Step for LldWrapper {
666     type Output = PathBuf;
667
668     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
669         run.never()
670     }
671
672     fn run(self, builder: &Builder<'_>) -> PathBuf {
673         let src_exe = builder
674             .ensure(ToolBuild {
675                 compiler: self.compiler,
676                 target: self.target,
677                 tool: "lld-wrapper",
678                 mode: Mode::ToolStd,
679                 path: "src/tools/lld-wrapper",
680                 is_optional_tool: false,
681                 source_type: SourceType::InTree,
682                 extra_features: Vec::new(),
683             })
684             .expect("expected to build -- essential tool");
685
686         src_exe
687     }
688 }
689
690 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
691 pub struct RustAnalyzer {
692     pub compiler: Compiler,
693     pub target: TargetSelection,
694 }
695
696 impl Step for RustAnalyzer {
697     type Output = Option<PathBuf>;
698     const DEFAULT: bool = true;
699     const ONLY_HOSTS: bool = false;
700
701     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
702         let builder = run.builder;
703         run.path("src/tools/rust-analyzer").default_condition(
704             builder.config.extended
705                 && builder
706                     .config
707                     .tools
708                     .as_ref()
709                     .map_or(true, |tools| tools.iter().any(|tool| tool == "rust-analyzer")),
710         )
711     }
712
713     fn make_run(run: RunConfig<'_>) {
714         run.builder.ensure(RustAnalyzer {
715             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
716             target: run.target,
717         });
718     }
719
720     fn run(self, builder: &Builder<'_>) -> Option<PathBuf> {
721         builder.ensure(ToolBuild {
722             compiler: self.compiler,
723             target: self.target,
724             tool: "rust-analyzer",
725             mode: Mode::ToolStd,
726             path: "src/tools/rust-analyzer",
727             extra_features: vec!["rust-analyzer/in-rust-tree".to_owned()],
728             is_optional_tool: false,
729             source_type: SourceType::InTree,
730         })
731     }
732 }
733
734 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
735 pub struct RustAnalyzerProcMacroSrv {
736     pub compiler: Compiler,
737     pub target: TargetSelection,
738 }
739
740 impl Step for RustAnalyzerProcMacroSrv {
741     type Output = Option<PathBuf>;
742     const DEFAULT: bool = true;
743     const ONLY_HOSTS: bool = false;
744
745     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
746         let builder = run.builder;
747         run.path("src/tools/rust-analyzer").default_condition(
748             builder.config.extended
749                 && builder
750                     .config
751                     .tools
752                     .as_ref()
753                     .map_or(true, |tools| tools.iter().any(|tool| tool == "rust-analyzer")),
754         )
755     }
756
757     fn make_run(run: RunConfig<'_>) {
758         run.builder.ensure(RustAnalyzerProcMacroSrv {
759             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
760             target: run.target,
761         });
762     }
763
764     fn run(self, builder: &Builder<'_>) -> Option<PathBuf> {
765         builder.ensure(ToolBuild {
766             compiler: self.compiler,
767             target: self.target,
768             tool: "rust-analyzer-proc-macro-srv",
769             mode: Mode::ToolStd,
770             path: "src/tools/rust-analyzer/crates/proc-macro-srv-cli",
771             extra_features: vec!["proc-macro-srv/sysroot-abi".to_owned()],
772             is_optional_tool: false,
773             source_type: SourceType::InTree,
774         })
775     }
776 }
777
778 macro_rules! tool_extended {
779     (($sel:ident, $builder:ident),
780        $($name:ident,
781        $toolstate:ident,
782        $path:expr,
783        $tool_name:expr,
784        stable = $stable:expr,
785        $(in_tree = $in_tree:expr,)?
786        $(submodule = $submodule:literal,)?
787        $(tool_std = $tool_std:literal,)?
788        $extra_deps:block;)+) => {
789         $(
790             #[derive(Debug, Clone, Hash, PartialEq, Eq)]
791         pub struct $name {
792             pub compiler: Compiler,
793             pub target: TargetSelection,
794             pub extra_features: Vec<String>,
795         }
796
797         impl Step for $name {
798             type Output = Option<PathBuf>;
799             const DEFAULT: bool = true; // Overwritten below
800             const ONLY_HOSTS: bool = true;
801
802             fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
803                 let builder = run.builder;
804                 run.path($path).default_condition(
805                     builder.config.extended
806                         && builder.config.tools.as_ref().map_or(
807                             // By default, on nightly/dev enable all tools, else only
808                             // build stable tools.
809                             $stable || builder.build.unstable_features(),
810                             // If `tools` is set, search list for this tool.
811                             |tools| {
812                                 tools.iter().any(|tool| match tool.as_ref() {
813                                     "clippy" => $tool_name == "clippy-driver",
814                                     x => $tool_name == x,
815                             })
816                         }),
817                 )
818             }
819
820             fn make_run(run: RunConfig<'_>) {
821                 run.builder.ensure($name {
822                     compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
823                     target: run.target,
824                     extra_features: Vec::new(),
825                 });
826             }
827
828             #[allow(unused_mut)]
829             fn run(mut $sel, $builder: &Builder<'_>) -> Option<PathBuf> {
830                 $extra_deps
831                 $( $builder.update_submodule(&Path::new("src").join("tools").join($submodule)); )?
832                 $builder.ensure(ToolBuild {
833                     compiler: $sel.compiler,
834                     target: $sel.target,
835                     tool: $tool_name,
836                     mode: if false $(|| $tool_std)? { Mode::ToolStd } else { Mode::ToolRustc },
837                     path: $path,
838                     extra_features: $sel.extra_features,
839                     is_optional_tool: true,
840                     source_type: if false $(|| $in_tree)* {
841                         SourceType::InTree
842                     } else {
843                         SourceType::Submodule
844                     },
845                 })
846             }
847         }
848         )+
849     }
850 }
851
852 // Note: tools need to be also added to `Builder::get_step_descriptions` in `builder.rs`
853 // to make `./x.py build <tool>` work.
854 // Note: Most submodule updates for tools are handled by bootstrap.py, since they're needed just to
855 // invoke Cargo to build bootstrap. See the comment there for more details.
856 tool_extended!((self, builder),
857     Cargofmt, rustfmt, "src/tools/rustfmt", "cargo-fmt", stable=true, in_tree=true, {};
858     CargoClippy, clippy, "src/tools/clippy", "cargo-clippy", stable=true, in_tree=true, {};
859     Clippy, clippy, "src/tools/clippy", "clippy-driver", stable=true, in_tree=true, {};
860     Miri, miri, "src/tools/miri", "miri", stable=false, {};
861     CargoMiri, miri, "src/tools/miri/cargo-miri", "cargo-miri", stable=false, {};
862     Rls, rls, "src/tools/rls", "rls", stable=true, {
863         builder.ensure(Clippy {
864             compiler: self.compiler,
865             target: self.target,
866             extra_features: Vec::new(),
867         });
868         self.extra_features.push("clippy".to_owned());
869     };
870     // FIXME: tool_std is not quite right, we shouldn't allow nightly features.
871     // But `builder.cargo` doesn't know how to handle ToolBootstrap in stages other than 0,
872     // and this is close enough for now.
873     RustDemangler, rust_demangler, "src/tools/rust-demangler", "rust-demangler", stable=false, in_tree=true, tool_std=true, {};
874     Rustfmt, rustfmt, "src/tools/rustfmt", "rustfmt", stable=true, in_tree=true, {};
875 );
876
877 impl<'a> Builder<'a> {
878     /// Gets a `Command` which is ready to run `tool` in `stage` built for
879     /// `host`.
880     pub fn tool_cmd(&self, tool: Tool) -> Command {
881         let mut cmd = Command::new(self.tool_exe(tool));
882         let compiler = self.compiler(0, self.config.build);
883         let host = &compiler.host;
884         // Prepares the `cmd` provided to be able to run the `compiler` provided.
885         //
886         // Notably this munges the dynamic library lookup path to point to the
887         // right location to run `compiler`.
888         let mut lib_paths: Vec<PathBuf> = vec![
889             self.build.rustc_snapshot_libdir(),
890             self.cargo_out(compiler, Mode::ToolBootstrap, *host).join("deps"),
891         ];
892
893         // On MSVC a tool may invoke a C compiler (e.g., compiletest in run-make
894         // mode) and that C compiler may need some extra PATH modification. Do
895         // so here.
896         if compiler.host.contains("msvc") {
897             let curpaths = env::var_os("PATH").unwrap_or_default();
898             let curpaths = env::split_paths(&curpaths).collect::<Vec<_>>();
899             for &(ref k, ref v) in self.cc[&compiler.host].env() {
900                 if k != "PATH" {
901                     continue;
902                 }
903                 for path in env::split_paths(v) {
904                     if !curpaths.contains(&path) {
905                         lib_paths.push(path);
906                     }
907                 }
908             }
909         }
910
911         add_dylib_path(lib_paths, &mut cmd);
912
913         // Provide a RUSTC for this command to use.
914         cmd.env("RUSTC", &self.initial_rustc);
915
916         cmd
917     }
918 }