]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/tool.rs
Rollup merge of #93582 - WaffleLapkin:rpitirpit, r=compiler-errors
[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     JsonDocLint, "src/tools/jsondoclint", "jsondoclint";
380     HtmlChecker, "src/tools/html-checker", "html-checker";
381     BumpStage0, "src/tools/bump-stage0", "bump-stage0";
382     ReplaceVersionPlaceholder, "src/tools/replace-version-placeholder", "replace-version-placeholder";
383 );
384
385 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq, Ord, PartialOrd)]
386 pub struct ErrorIndex {
387     pub compiler: Compiler,
388 }
389
390 impl ErrorIndex {
391     pub fn command(builder: &Builder<'_>) -> Command {
392         // Error-index-generator links with the rustdoc library, so we need to add `rustc_lib_paths`
393         // for rustc_private and libLLVM.so, and `sysroot_lib` for libstd, etc.
394         let host = builder.config.build;
395         let compiler = builder.compiler_for(builder.top_stage, host, host);
396         let mut cmd = Command::new(builder.ensure(ErrorIndex { compiler }));
397         let mut dylib_paths = builder.rustc_lib_paths(compiler);
398         dylib_paths.push(PathBuf::from(&builder.sysroot_libdir(compiler, compiler.host)));
399         add_dylib_path(dylib_paths, &mut cmd);
400         cmd
401     }
402 }
403
404 impl Step for ErrorIndex {
405     type Output = PathBuf;
406
407     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
408         run.path("src/tools/error_index_generator")
409     }
410
411     fn make_run(run: RunConfig<'_>) {
412         // Compile the error-index in the same stage as rustdoc to avoid
413         // recompiling rustdoc twice if we can.
414         //
415         // NOTE: This `make_run` isn't used in normal situations, only if you
416         // manually build the tool with `x.py build
417         // src/tools/error-index-generator` which almost nobody does.
418         // Normally, `x.py test` or `x.py doc` will use the
419         // `ErrorIndex::command` function instead.
420         let compiler =
421             run.builder.compiler(run.builder.top_stage.saturating_sub(1), run.builder.config.build);
422         run.builder.ensure(ErrorIndex { compiler });
423     }
424
425     fn run(self, builder: &Builder<'_>) -> PathBuf {
426         builder
427             .ensure(ToolBuild {
428                 compiler: self.compiler,
429                 target: self.compiler.host,
430                 tool: "error_index_generator",
431                 mode: Mode::ToolRustc,
432                 path: "src/tools/error_index_generator",
433                 is_optional_tool: false,
434                 source_type: SourceType::InTree,
435                 extra_features: Vec::new(),
436             })
437             .expect("expected to build -- essential tool")
438     }
439 }
440
441 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
442 pub struct RemoteTestServer {
443     pub compiler: Compiler,
444     pub target: TargetSelection,
445 }
446
447 impl Step for RemoteTestServer {
448     type Output = PathBuf;
449
450     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
451         run.path("src/tools/remote-test-server")
452     }
453
454     fn make_run(run: RunConfig<'_>) {
455         run.builder.ensure(RemoteTestServer {
456             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
457             target: run.target,
458         });
459     }
460
461     fn run(self, builder: &Builder<'_>) -> PathBuf {
462         builder
463             .ensure(ToolBuild {
464                 compiler: self.compiler,
465                 target: self.target,
466                 tool: "remote-test-server",
467                 mode: Mode::ToolStd,
468                 path: "src/tools/remote-test-server",
469                 is_optional_tool: false,
470                 source_type: SourceType::InTree,
471                 extra_features: Vec::new(),
472             })
473             .expect("expected to build -- essential tool")
474     }
475 }
476
477 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq, Ord, PartialOrd)]
478 pub struct Rustdoc {
479     /// This should only ever be 0 or 2.
480     /// We sometimes want to reference the "bootstrap" rustdoc, which is why this option is here.
481     pub compiler: Compiler,
482 }
483
484 impl Step for Rustdoc {
485     type Output = PathBuf;
486     const DEFAULT: bool = true;
487     const ONLY_HOSTS: bool = true;
488
489     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
490         run.path("src/tools/rustdoc").path("src/librustdoc")
491     }
492
493     fn make_run(run: RunConfig<'_>) {
494         run.builder.ensure(Rustdoc {
495             // Note: this is somewhat unique in that we actually want a *target*
496             // compiler here, because rustdoc *is* a compiler. We won't be using
497             // this as the compiler to build with, but rather this is "what
498             // compiler are we producing"?
499             compiler: run.builder.compiler(run.builder.top_stage, run.target),
500         });
501     }
502
503     fn run(self, builder: &Builder<'_>) -> PathBuf {
504         let target_compiler = self.compiler;
505         if target_compiler.stage == 0 {
506             if !target_compiler.is_snapshot(builder) {
507                 panic!("rustdoc in stage 0 must be snapshot rustdoc");
508             }
509             return builder.initial_rustc.with_file_name(exe("rustdoc", target_compiler.host));
510         }
511         let target = target_compiler.host;
512         // Similar to `compile::Assemble`, build with the previous stage's compiler. Otherwise
513         // we'd have stageN/bin/rustc and stageN/bin/rustdoc be effectively different stage
514         // compilers, which isn't what we want. Rustdoc should be linked in the same way as the
515         // rustc compiler it's paired with, so it must be built with the previous stage compiler.
516         let build_compiler = builder.compiler(target_compiler.stage - 1, builder.config.build);
517
518         // When using `download-rustc` and a stage0 build_compiler, copying rustc doesn't actually
519         // build stage0 libstd (because the libstd in sysroot has the wrong ABI). Explicitly build
520         // it.
521         builder.ensure(compile::Std::new(build_compiler, target_compiler.host));
522         builder.ensure(compile::Rustc::new(build_compiler, target_compiler.host));
523         // NOTE: this implies that `download-rustc` is pretty useless when compiling with the stage0
524         // compiler, since you do just as much work.
525         if !builder.config.dry_run && builder.download_rustc() && build_compiler.stage == 0 {
526             println!(
527                 "warning: `download-rustc` does nothing when building stage1 tools; consider using `--stage 2` instead"
528             );
529         }
530
531         // The presence of `target_compiler` ensures that the necessary libraries (codegen backends,
532         // compiler libraries, ...) are built. Rustdoc does not require the presence of any
533         // libraries within sysroot_libdir (i.e., rustlib), though doctests may want it (since
534         // they'll be linked to those libraries). As such, don't explicitly `ensure` any additional
535         // libraries here. The intuition here is that If we've built a compiler, we should be able
536         // to build rustdoc.
537         //
538         let mut features = Vec::new();
539         if builder.config.jemalloc {
540             features.push("jemalloc".to_string());
541         }
542
543         let cargo = prepare_tool_cargo(
544             builder,
545             build_compiler,
546             Mode::ToolRustc,
547             target,
548             "build",
549             "src/tools/rustdoc",
550             SourceType::InTree,
551             features.as_slice(),
552         );
553
554         builder.info(&format!(
555             "Building rustdoc for stage{} ({})",
556             target_compiler.stage, target_compiler.host
557         ));
558         builder.run(&mut cargo.into());
559
560         // Cargo adds a number of paths to the dylib search path on windows, which results in
561         // the wrong rustdoc being executed. To avoid the conflicting rustdocs, we name the "tool"
562         // rustdoc a different name.
563         let tool_rustdoc = builder
564             .cargo_out(build_compiler, Mode::ToolRustc, target)
565             .join(exe("rustdoc_tool_binary", target_compiler.host));
566
567         // don't create a stage0-sysroot/bin directory.
568         if target_compiler.stage > 0 {
569             let sysroot = builder.sysroot(target_compiler);
570             let bindir = sysroot.join("bin");
571             t!(fs::create_dir_all(&bindir));
572             let bin_rustdoc = bindir.join(exe("rustdoc", target_compiler.host));
573             let _ = fs::remove_file(&bin_rustdoc);
574             builder.copy(&tool_rustdoc, &bin_rustdoc);
575             bin_rustdoc
576         } else {
577             tool_rustdoc
578         }
579     }
580 }
581
582 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
583 pub struct Cargo {
584     pub compiler: Compiler,
585     pub target: TargetSelection,
586 }
587
588 impl Step for Cargo {
589     type Output = PathBuf;
590     const DEFAULT: bool = true;
591     const ONLY_HOSTS: bool = true;
592
593     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
594         let builder = run.builder;
595         run.path("src/tools/cargo").default_condition(
596             builder.config.extended
597                 && builder.config.tools.as_ref().map_or(
598                     true,
599                     // If `tools` is set, search list for this tool.
600                     |tools| tools.iter().any(|tool| tool == "cargo"),
601                 ),
602         )
603     }
604
605     fn make_run(run: RunConfig<'_>) {
606         run.builder.ensure(Cargo {
607             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
608             target: run.target,
609         });
610     }
611
612     fn run(self, builder: &Builder<'_>) -> PathBuf {
613         let cargo_bin_path = builder
614             .ensure(ToolBuild {
615                 compiler: self.compiler,
616                 target: self.target,
617                 tool: "cargo",
618                 mode: Mode::ToolRustc,
619                 path: "src/tools/cargo",
620                 is_optional_tool: false,
621                 source_type: SourceType::Submodule,
622                 extra_features: Vec::new(),
623             })
624             .expect("expected to build -- essential tool");
625
626         let build_cred = |name, path| {
627             // These credential helpers are currently experimental.
628             // Any build failures will be ignored.
629             let _ = builder.ensure(ToolBuild {
630                 compiler: self.compiler,
631                 target: self.target,
632                 tool: name,
633                 mode: Mode::ToolRustc,
634                 path,
635                 is_optional_tool: true,
636                 source_type: SourceType::Submodule,
637                 extra_features: Vec::new(),
638             });
639         };
640
641         if self.target.contains("windows") {
642             build_cred(
643                 "cargo-credential-wincred",
644                 "src/tools/cargo/crates/credential/cargo-credential-wincred",
645             );
646         }
647         if self.target.contains("apple-darwin") {
648             build_cred(
649                 "cargo-credential-macos-keychain",
650                 "src/tools/cargo/crates/credential/cargo-credential-macos-keychain",
651             );
652         }
653         build_cred(
654             "cargo-credential-1password",
655             "src/tools/cargo/crates/credential/cargo-credential-1password",
656         );
657         cargo_bin_path
658     }
659 }
660
661 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
662 pub struct LldWrapper {
663     pub compiler: Compiler,
664     pub target: TargetSelection,
665 }
666
667 impl Step for LldWrapper {
668     type Output = PathBuf;
669
670     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
671         run.never()
672     }
673
674     fn run(self, builder: &Builder<'_>) -> PathBuf {
675         let src_exe = builder
676             .ensure(ToolBuild {
677                 compiler: self.compiler,
678                 target: self.target,
679                 tool: "lld-wrapper",
680                 mode: Mode::ToolStd,
681                 path: "src/tools/lld-wrapper",
682                 is_optional_tool: false,
683                 source_type: SourceType::InTree,
684                 extra_features: Vec::new(),
685             })
686             .expect("expected to build -- essential tool");
687
688         src_exe
689     }
690 }
691
692 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
693 pub struct RustAnalyzer {
694     pub compiler: Compiler,
695     pub target: TargetSelection,
696 }
697
698 impl Step for RustAnalyzer {
699     type Output = Option<PathBuf>;
700     const DEFAULT: bool = true;
701     const ONLY_HOSTS: bool = true;
702
703     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
704         let builder = run.builder;
705         run.path("src/tools/rust-analyzer").default_condition(
706             builder.config.extended
707                 && builder
708                     .config
709                     .tools
710                     .as_ref()
711                     .map_or(true, |tools| tools.iter().any(|tool| tool == "rust-analyzer")),
712         )
713     }
714
715     fn make_run(run: RunConfig<'_>) {
716         run.builder.ensure(RustAnalyzer {
717             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
718             target: run.target,
719         });
720     }
721
722     fn run(self, builder: &Builder<'_>) -> Option<PathBuf> {
723         builder.ensure(ToolBuild {
724             compiler: self.compiler,
725             target: self.target,
726             tool: "rust-analyzer",
727             mode: Mode::ToolStd,
728             path: "src/tools/rust-analyzer",
729             extra_features: vec!["rust-analyzer/in-rust-tree".to_owned()],
730             is_optional_tool: false,
731             source_type: SourceType::InTree,
732         })
733     }
734 }
735
736 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
737 pub struct RustAnalyzerProcMacroSrv {
738     pub compiler: Compiler,
739     pub target: TargetSelection,
740 }
741
742 impl Step for RustAnalyzerProcMacroSrv {
743     type Output = Option<PathBuf>;
744     const DEFAULT: bool = true;
745     const ONLY_HOSTS: bool = true;
746
747     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
748         let builder = run.builder;
749
750         // Allow building `rust-analyzer-proc-macro-srv` both as part of the `rust-analyzer` and as a stand-alone tool.
751         run.path("src/tools/rust-analyzer")
752             .path("src/tools/rust-analyzer/crates/proc-macro-srv-cli")
753             .default_condition(
754                 builder.config.extended
755                     && builder.config.tools.as_ref().map_or(true, |tools| {
756                         tools.iter().any(|tool| {
757                             tool == "rust-analyzer" || tool == "rust-analyzer-proc-macro-srv"
758                         })
759                     }),
760             )
761     }
762
763     fn make_run(run: RunConfig<'_>) {
764         run.builder.ensure(RustAnalyzerProcMacroSrv {
765             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
766             target: run.target,
767         });
768     }
769
770     fn run(self, builder: &Builder<'_>) -> Option<PathBuf> {
771         let path = builder.ensure(ToolBuild {
772             compiler: self.compiler,
773             target: self.target,
774             tool: "rust-analyzer-proc-macro-srv",
775             mode: Mode::ToolStd,
776             path: "src/tools/rust-analyzer/crates/proc-macro-srv-cli",
777             extra_features: vec!["proc-macro-srv/sysroot-abi".to_owned()],
778             is_optional_tool: false,
779             source_type: SourceType::InTree,
780         })?;
781
782         // Copy `rust-analyzer-proc-macro-srv` to `<sysroot>/libexec/`
783         // so that r-a can use it.
784         let libexec_path = builder.sysroot(self.compiler).join("libexec");
785         t!(fs::create_dir_all(&libexec_path));
786         builder.copy(&path, &libexec_path.join("rust-analyzer-proc-macro-srv"));
787
788         Some(path)
789     }
790 }
791
792 macro_rules! tool_extended {
793     (($sel:ident, $builder:ident),
794        $($name:ident,
795        $path:expr,
796        $tool_name:expr,
797        stable = $stable:expr,
798        $(in_tree = $in_tree:expr,)?
799        $(tool_std = $tool_std:literal,)?
800        $extra_deps:block;)+) => {
801         $(
802             #[derive(Debug, Clone, Hash, PartialEq, Eq)]
803         pub struct $name {
804             pub compiler: Compiler,
805             pub target: TargetSelection,
806             pub extra_features: Vec<String>,
807         }
808
809         impl Step for $name {
810             type Output = Option<PathBuf>;
811             const DEFAULT: bool = true; // Overwritten below
812             const ONLY_HOSTS: bool = true;
813
814             fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
815                 let builder = run.builder;
816                 run.path($path).default_condition(
817                     builder.config.extended
818                         && builder.config.tools.as_ref().map_or(
819                             // By default, on nightly/dev enable all tools, else only
820                             // build stable tools.
821                             $stable || builder.build.unstable_features(),
822                             // If `tools` is set, search list for this tool.
823                             |tools| {
824                                 tools.iter().any(|tool| match tool.as_ref() {
825                                     "clippy" => $tool_name == "clippy-driver",
826                                     x => $tool_name == x,
827                             })
828                         }),
829                 )
830             }
831
832             fn make_run(run: RunConfig<'_>) {
833                 run.builder.ensure($name {
834                     compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
835                     target: run.target,
836                     extra_features: Vec::new(),
837                 });
838             }
839
840             #[allow(unused_mut)]
841             fn run(mut $sel, $builder: &Builder<'_>) -> Option<PathBuf> {
842                 $extra_deps
843                 $builder.ensure(ToolBuild {
844                     compiler: $sel.compiler,
845                     target: $sel.target,
846                     tool: $tool_name,
847                     mode: if false $(|| $tool_std)? { Mode::ToolStd } else { Mode::ToolRustc },
848                     path: $path,
849                     extra_features: $sel.extra_features,
850                     is_optional_tool: true,
851                     source_type: if false $(|| $in_tree)* {
852                         SourceType::InTree
853                     } else {
854                         SourceType::Submodule
855                     },
856                 })
857             }
858         }
859         )+
860     }
861 }
862
863 // Note: tools need to be also added to `Builder::get_step_descriptions` in `builder.rs`
864 // to make `./x.py build <tool>` work.
865 // Note: Most submodule updates for tools are handled by bootstrap.py, since they're needed just to
866 // invoke Cargo to build bootstrap. See the comment there for more details.
867 tool_extended!((self, builder),
868     Cargofmt, "src/tools/rustfmt", "cargo-fmt", stable=true, in_tree=true, {};
869     CargoClippy, "src/tools/clippy", "cargo-clippy", stable=true, in_tree=true, {};
870     Clippy, "src/tools/clippy", "clippy-driver", stable=true, in_tree=true, {};
871     Miri, "src/tools/miri", "miri", stable=false, in_tree=true, {};
872     CargoMiri, "src/tools/miri/cargo-miri", "cargo-miri", stable=false, in_tree=true, {};
873     // FIXME: tool_std is not quite right, we shouldn't allow nightly features.
874     // But `builder.cargo` doesn't know how to handle ToolBootstrap in stages other than 0,
875     // and this is close enough for now.
876     Rls, "src/tools/rls", "rls", stable=true, in_tree=true, tool_std=true, {};
877     RustDemangler, "src/tools/rust-demangler", "rust-demangler", stable=false, in_tree=true, tool_std=true, {};
878     Rustfmt, "src/tools/rustfmt", "rustfmt", stable=true, in_tree=true, {};
879 );
880
881 impl<'a> Builder<'a> {
882     /// Gets a `Command` which is ready to run `tool` in `stage` built for
883     /// `host`.
884     pub fn tool_cmd(&self, tool: Tool) -> Command {
885         let mut cmd = Command::new(self.tool_exe(tool));
886         let compiler = self.compiler(0, self.config.build);
887         let host = &compiler.host;
888         // Prepares the `cmd` provided to be able to run the `compiler` provided.
889         //
890         // Notably this munges the dynamic library lookup path to point to the
891         // right location to run `compiler`.
892         let mut lib_paths: Vec<PathBuf> = vec![
893             self.build.rustc_snapshot_libdir(),
894             self.cargo_out(compiler, Mode::ToolBootstrap, *host).join("deps"),
895         ];
896
897         // On MSVC a tool may invoke a C compiler (e.g., compiletest in run-make
898         // mode) and that C compiler may need some extra PATH modification. Do
899         // so here.
900         if compiler.host.contains("msvc") {
901             let curpaths = env::var_os("PATH").unwrap_or_default();
902             let curpaths = env::split_paths(&curpaths).collect::<Vec<_>>();
903             for &(ref k, ref v) in self.cc[&compiler.host].env() {
904                 if k != "PATH" {
905                     continue;
906                 }
907                 for path in env::split_paths(v) {
908                     if !curpaths.contains(&path) {
909                         lib_paths.push(path);
910                     }
911                 }
912             }
913         }
914
915         add_dylib_path(lib_paths, &mut cmd);
916
917         // Provide a RUSTC for this command to use.
918         cmd.env("RUSTC", &self.initial_rustc);
919
920         cmd
921     }
922 }