]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/builder.rs
Rollup merge of #104614 - Nilstrieb:type-ascribe!, r=TaKO8Ki
[rust.git] / src / bootstrap / builder.rs
1 use std::any::{type_name, Any};
2 use std::cell::{Cell, RefCell};
3 use std::collections::BTreeSet;
4 use std::env;
5 use std::ffi::OsStr;
6 use std::fmt::{Debug, Write};
7 use std::fs::{self};
8 use std::hash::Hash;
9 use std::ops::Deref;
10 use std::path::{Component, Path, PathBuf};
11 use std::process::Command;
12 use std::time::{Duration, Instant};
13
14 use crate::cache::{Cache, Interned, INTERNER};
15 use crate::config::{SplitDebuginfo, TargetSelection};
16 use crate::dist;
17 use crate::doc;
18 use crate::flags::{Color, Subcommand};
19 use crate::install;
20 use crate::native;
21 use crate::run;
22 use crate::test;
23 use crate::tool::{self, SourceType};
24 use crate::util::{self, add_dylib_path, add_link_lib_path, exe, libdir, output, t};
25 use crate::EXTRA_CHECK_CFGS;
26 use crate::{check, compile, Crate};
27 use crate::{Build, CLang, DocTests, GitRepo, Mode};
28
29 pub use crate::Compiler;
30 // FIXME: replace with std::lazy after it gets stabilized and reaches beta
31 use once_cell::sync::Lazy;
32
33 pub struct Builder<'a> {
34     pub build: &'a Build,
35     pub top_stage: u32,
36     pub kind: Kind,
37     cache: Cache,
38     stack: RefCell<Vec<Box<dyn Any>>>,
39     time_spent_on_dependencies: Cell<Duration>,
40     pub paths: Vec<PathBuf>,
41 }
42
43 impl<'a> Deref for Builder<'a> {
44     type Target = Build;
45
46     fn deref(&self) -> &Self::Target {
47         self.build
48     }
49 }
50
51 pub trait Step: 'static + Clone + Debug + PartialEq + Eq + Hash {
52     /// `PathBuf` when directories are created or to return a `Compiler` once
53     /// it's been assembled.
54     type Output: Clone;
55
56     /// Whether this step is run by default as part of its respective phase.
57     /// `true` here can still be overwritten by `should_run` calling `default_condition`.
58     const DEFAULT: bool = false;
59
60     /// If true, then this rule should be skipped if --target was specified, but --host was not
61     const ONLY_HOSTS: bool = false;
62
63     /// Primary function to execute this rule. Can call `builder.ensure()`
64     /// with other steps to run those.
65     fn run(self, builder: &Builder<'_>) -> Self::Output;
66
67     /// When bootstrap is passed a set of paths, this controls whether this rule
68     /// will execute. However, it does not get called in a "default" context
69     /// when we are not passed any paths; in that case, `make_run` is called
70     /// directly.
71     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_>;
72
73     /// Builds up a "root" rule, either as a default rule or from a path passed
74     /// to us.
75     ///
76     /// When path is `None`, we are executing in a context where no paths were
77     /// passed. When `./x.py build` is run, for example, this rule could get
78     /// called if it is in the correct list below with a path of `None`.
79     fn make_run(_run: RunConfig<'_>) {
80         // It is reasonable to not have an implementation of make_run for rules
81         // who do not want to get called from the root context. This means that
82         // they are likely dependencies (e.g., sysroot creation) or similar, and
83         // as such calling them from ./x.py isn't logical.
84         unimplemented!()
85     }
86 }
87
88 pub struct RunConfig<'a> {
89     pub builder: &'a Builder<'a>,
90     pub target: TargetSelection,
91     pub paths: Vec<PathSet>,
92 }
93
94 impl RunConfig<'_> {
95     pub fn build_triple(&self) -> TargetSelection {
96         self.builder.build.build
97     }
98 }
99
100 struct StepDescription {
101     default: bool,
102     only_hosts: bool,
103     should_run: fn(ShouldRun<'_>) -> ShouldRun<'_>,
104     make_run: fn(RunConfig<'_>),
105     name: &'static str,
106     kind: Kind,
107 }
108
109 #[derive(Clone, PartialOrd, Ord, PartialEq, Eq)]
110 pub struct TaskPath {
111     pub path: PathBuf,
112     pub kind: Option<Kind>,
113 }
114
115 impl TaskPath {
116     pub fn parse(path: impl Into<PathBuf>) -> TaskPath {
117         let mut kind = None;
118         let mut path = path.into();
119
120         let mut components = path.components();
121         if let Some(Component::Normal(os_str)) = components.next() {
122             if let Some(str) = os_str.to_str() {
123                 if let Some((found_kind, found_prefix)) = str.split_once("::") {
124                     if found_kind.is_empty() {
125                         panic!("empty kind in task path {}", path.display());
126                     }
127                     kind = Kind::parse(found_kind);
128                     assert!(kind.is_some());
129                     path = Path::new(found_prefix).join(components.as_path());
130                 }
131             }
132         }
133
134         TaskPath { path, kind }
135     }
136 }
137
138 impl Debug for TaskPath {
139     fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
140         if let Some(kind) = &self.kind {
141             write!(f, "{}::", kind.as_str())?;
142         }
143         write!(f, "{}", self.path.display())
144     }
145 }
146
147 /// Collection of paths used to match a task rule.
148 #[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq)]
149 pub enum PathSet {
150     /// A collection of individual paths or aliases.
151     ///
152     /// These are generally matched as a path suffix. For example, a
153     /// command-line value of `std` will match if `library/std` is in the
154     /// set.
155     ///
156     /// NOTE: the paths within a set should always be aliases of one another.
157     /// For example, `src/librustdoc` and `src/tools/rustdoc` should be in the same set,
158     /// but `library/core` and `library/std` generally should not, unless there's no way (for that Step)
159     /// to build them separately.
160     Set(BTreeSet<TaskPath>),
161     /// A "suite" of paths.
162     ///
163     /// These can match as a path suffix (like `Set`), or as a prefix. For
164     /// example, a command-line value of `src/test/ui/abi/variadic-ffi.rs`
165     /// will match `src/test/ui`. A command-line value of `ui` would also
166     /// match `src/test/ui`.
167     Suite(TaskPath),
168 }
169
170 impl PathSet {
171     fn empty() -> PathSet {
172         PathSet::Set(BTreeSet::new())
173     }
174
175     fn one<P: Into<PathBuf>>(path: P, kind: Kind) -> PathSet {
176         let mut set = BTreeSet::new();
177         set.insert(TaskPath { path: path.into(), kind: Some(kind) });
178         PathSet::Set(set)
179     }
180
181     fn has(&self, needle: &Path, module: Option<Kind>) -> bool {
182         match self {
183             PathSet::Set(set) => set.iter().any(|p| Self::check(p, needle, module)),
184             PathSet::Suite(suite) => Self::check(suite, needle, module),
185         }
186     }
187
188     // internal use only
189     fn check(p: &TaskPath, needle: &Path, module: Option<Kind>) -> bool {
190         if let (Some(p_kind), Some(kind)) = (&p.kind, module) {
191             p.path.ends_with(needle) && *p_kind == kind
192         } else {
193             p.path.ends_with(needle)
194         }
195     }
196
197     /// Return all `TaskPath`s in `Self` that contain any of the `needles`, removing the
198     /// matched needles.
199     ///
200     /// This is used for `StepDescription::krate`, which passes all matching crates at once to
201     /// `Step::make_run`, rather than calling it many times with a single crate.
202     /// See `tests.rs` for examples.
203     fn intersection_removing_matches(
204         &self,
205         needles: &mut Vec<&Path>,
206         module: Option<Kind>,
207     ) -> PathSet {
208         let mut check = |p| {
209             for (i, n) in needles.iter().enumerate() {
210                 let matched = Self::check(p, n, module);
211                 if matched {
212                     needles.remove(i);
213                     return true;
214                 }
215             }
216             false
217         };
218         match self {
219             PathSet::Set(set) => PathSet::Set(set.iter().filter(|&p| check(p)).cloned().collect()),
220             PathSet::Suite(suite) => {
221                 if check(suite) {
222                     self.clone()
223                 } else {
224                     PathSet::empty()
225                 }
226             }
227         }
228     }
229
230     /// A convenience wrapper for Steps which know they have no aliases and all their sets contain only a single path.
231     ///
232     /// This can be used with [`ShouldRun::krate`], [`ShouldRun::path`], or [`ShouldRun::alias`].
233     #[track_caller]
234     pub fn assert_single_path(&self) -> &TaskPath {
235         match self {
236             PathSet::Set(set) => {
237                 assert_eq!(set.len(), 1, "called assert_single_path on multiple paths");
238                 set.iter().next().unwrap()
239             }
240             PathSet::Suite(_) => unreachable!("called assert_single_path on a Suite path"),
241         }
242     }
243 }
244
245 impl StepDescription {
246     fn from<S: Step>(kind: Kind) -> StepDescription {
247         StepDescription {
248             default: S::DEFAULT,
249             only_hosts: S::ONLY_HOSTS,
250             should_run: S::should_run,
251             make_run: S::make_run,
252             name: std::any::type_name::<S>(),
253             kind,
254         }
255     }
256
257     fn maybe_run(&self, builder: &Builder<'_>, pathsets: Vec<PathSet>) {
258         if pathsets.iter().any(|set| self.is_excluded(builder, set)) {
259             return;
260         }
261
262         // Determine the targets participating in this rule.
263         let targets = if self.only_hosts { &builder.hosts } else { &builder.targets };
264
265         for target in targets {
266             let run = RunConfig { builder, paths: pathsets.clone(), target: *target };
267             (self.make_run)(run);
268         }
269     }
270
271     fn is_excluded(&self, builder: &Builder<'_>, pathset: &PathSet) -> bool {
272         if builder.config.exclude.iter().any(|e| pathset.has(&e.path, e.kind)) {
273             println!("Skipping {:?} because it is excluded", pathset);
274             return true;
275         }
276
277         if !builder.config.exclude.is_empty() {
278             builder.verbose(&format!(
279                 "{:?} not skipped for {:?} -- not in {:?}",
280                 pathset, self.name, builder.config.exclude
281             ));
282         }
283         false
284     }
285
286     fn run(v: &[StepDescription], builder: &Builder<'_>, paths: &[PathBuf]) {
287         let should_runs = v
288             .iter()
289             .map(|desc| (desc.should_run)(ShouldRun::new(builder, desc.kind)))
290             .collect::<Vec<_>>();
291
292         // sanity checks on rules
293         for (desc, should_run) in v.iter().zip(&should_runs) {
294             assert!(
295                 !should_run.paths.is_empty(),
296                 "{:?} should have at least one pathset",
297                 desc.name
298             );
299         }
300
301         if paths.is_empty() || builder.config.include_default_paths {
302             for (desc, should_run) in v.iter().zip(&should_runs) {
303                 if desc.default && should_run.is_really_default() {
304                     desc.maybe_run(builder, should_run.paths.iter().cloned().collect());
305                 }
306             }
307         }
308
309         // strip CurDir prefix if present
310         let mut paths: Vec<_> =
311             paths.into_iter().map(|p| p.strip_prefix(".").unwrap_or(p)).collect();
312
313         // Handle all test suite paths.
314         // (This is separate from the loop below to avoid having to handle multiple paths in `is_suite_path` somehow.)
315         paths.retain(|path| {
316             for (desc, should_run) in v.iter().zip(&should_runs) {
317                 if let Some(suite) = should_run.is_suite_path(&path) {
318                     desc.maybe_run(builder, vec![suite.clone()]);
319                     return false;
320                 }
321             }
322             true
323         });
324
325         if paths.is_empty() {
326             return;
327         }
328
329         // Handle all PathSets.
330         for (desc, should_run) in v.iter().zip(&should_runs) {
331             let pathsets = should_run.pathset_for_paths_removing_matches(&mut paths, desc.kind);
332             if !pathsets.is_empty() {
333                 desc.maybe_run(builder, pathsets);
334             }
335         }
336
337         if !paths.is_empty() {
338             eprintln!("error: no `{}` rules matched {:?}", builder.kind.as_str(), paths,);
339             eprintln!(
340                 "help: run `x.py {} --help --verbose` to show a list of available paths",
341                 builder.kind.as_str()
342             );
343             eprintln!(
344                 "note: if you are adding a new Step to bootstrap itself, make sure you register it with `describe!`"
345             );
346             crate::detail_exit(1);
347         }
348     }
349 }
350
351 enum ReallyDefault<'a> {
352     Bool(bool),
353     Lazy(Lazy<bool, Box<dyn Fn() -> bool + 'a>>),
354 }
355
356 pub struct ShouldRun<'a> {
357     pub builder: &'a Builder<'a>,
358     kind: Kind,
359
360     // use a BTreeSet to maintain sort order
361     paths: BTreeSet<PathSet>,
362
363     // If this is a default rule, this is an additional constraint placed on
364     // its run. Generally something like compiler docs being enabled.
365     is_really_default: ReallyDefault<'a>,
366 }
367
368 impl<'a> ShouldRun<'a> {
369     fn new(builder: &'a Builder<'_>, kind: Kind) -> ShouldRun<'a> {
370         ShouldRun {
371             builder,
372             kind,
373             paths: BTreeSet::new(),
374             is_really_default: ReallyDefault::Bool(true), // by default no additional conditions
375         }
376     }
377
378     pub fn default_condition(mut self, cond: bool) -> Self {
379         self.is_really_default = ReallyDefault::Bool(cond);
380         self
381     }
382
383     pub fn lazy_default_condition(mut self, lazy_cond: Box<dyn Fn() -> bool + 'a>) -> Self {
384         self.is_really_default = ReallyDefault::Lazy(Lazy::new(lazy_cond));
385         self
386     }
387
388     pub fn is_really_default(&self) -> bool {
389         match &self.is_really_default {
390             ReallyDefault::Bool(val) => *val,
391             ReallyDefault::Lazy(lazy) => *lazy.deref(),
392         }
393     }
394
395     /// Indicates it should run if the command-line selects the given crate or
396     /// any of its (local) dependencies.
397     ///
398     /// Compared to `krate`, this treats the dependencies as aliases for the
399     /// same job. Generally it is preferred to use `krate`, and treat each
400     /// individual path separately. For example `./x.py test src/liballoc`
401     /// (which uses `krate`) will test just `liballoc`. However, `./x.py check
402     /// src/liballoc` (which uses `all_krates`) will check all of `libtest`.
403     /// `all_krates` should probably be removed at some point.
404     pub fn all_krates(mut self, name: &str) -> Self {
405         let mut set = BTreeSet::new();
406         for krate in self.builder.in_tree_crates(name, None) {
407             let path = krate.local_path(self.builder);
408             set.insert(TaskPath { path, kind: Some(self.kind) });
409         }
410         self.paths.insert(PathSet::Set(set));
411         self
412     }
413
414     /// Indicates it should run if the command-line selects the given crate or
415     /// any of its (local) dependencies.
416     ///
417     /// `make_run` will be called a single time with all matching command-line paths.
418     pub fn crate_or_deps(self, name: &str) -> Self {
419         let crates = self.builder.in_tree_crates(name, None);
420         self.crates(crates)
421     }
422
423     /// Indicates it should run if the command-line selects any of the given crates.
424     ///
425     /// `make_run` will be called a single time with all matching command-line paths.
426     pub(crate) fn crates(mut self, crates: Vec<&Crate>) -> Self {
427         for krate in crates {
428             let path = krate.local_path(self.builder);
429             self.paths.insert(PathSet::one(path, self.kind));
430         }
431         self
432     }
433
434     // single alias, which does not correspond to any on-disk path
435     pub fn alias(mut self, alias: &str) -> Self {
436         assert!(
437             !self.builder.src.join(alias).exists(),
438             "use `builder.path()` for real paths: {}",
439             alias
440         );
441         self.paths.insert(PathSet::Set(
442             std::iter::once(TaskPath { path: alias.into(), kind: Some(self.kind) }).collect(),
443         ));
444         self
445     }
446
447     // single, non-aliased path
448     pub fn path(self, path: &str) -> Self {
449         self.paths(&[path])
450     }
451
452     // multiple aliases for the same job
453     pub fn paths(mut self, paths: &[&str]) -> Self {
454         self.paths.insert(PathSet::Set(
455             paths
456                 .iter()
457                 .map(|p| {
458                     // FIXME(#96188): make sure this is actually a path.
459                     // This currently breaks for paths within submodules.
460                     //assert!(
461                     //    self.builder.src.join(p).exists(),
462                     //    "`should_run.paths` should correspond to real on-disk paths - use `alias` if there is no relevant path: {}",
463                     //    p
464                     //);
465                     TaskPath { path: p.into(), kind: Some(self.kind) }
466                 })
467                 .collect(),
468         ));
469         self
470     }
471
472     /// Handles individual files (not directories) within a test suite.
473     fn is_suite_path(&self, requested_path: &Path) -> Option<&PathSet> {
474         self.paths.iter().find(|pathset| match pathset {
475             PathSet::Suite(suite) => requested_path.starts_with(&suite.path),
476             PathSet::Set(_) => false,
477         })
478     }
479
480     pub fn suite_path(mut self, suite: &str) -> Self {
481         self.paths.insert(PathSet::Suite(TaskPath { path: suite.into(), kind: Some(self.kind) }));
482         self
483     }
484
485     // allows being more explicit about why should_run in Step returns the value passed to it
486     pub fn never(mut self) -> ShouldRun<'a> {
487         self.paths.insert(PathSet::empty());
488         self
489     }
490
491     /// Given a set of requested paths, return the subset which match the Step for this `ShouldRun`,
492     /// removing the matches from `paths`.
493     ///
494     /// NOTE: this returns multiple PathSets to allow for the possibility of multiple units of work
495     /// within the same step. For example, `test::Crate` allows testing multiple crates in the same
496     /// cargo invocation, which are put into separate sets because they aren't aliases.
497     ///
498     /// The reason we return PathSet instead of PathBuf is to allow for aliases that mean the same thing
499     /// (for now, just `all_krates` and `paths`, but we may want to add an `aliases` function in the future?)
500     fn pathset_for_paths_removing_matches(
501         &self,
502         paths: &mut Vec<&Path>,
503         kind: Kind,
504     ) -> Vec<PathSet> {
505         let mut sets = vec![];
506         for pathset in &self.paths {
507             let subset = pathset.intersection_removing_matches(paths, Some(kind));
508             if subset != PathSet::empty() {
509                 sets.push(subset);
510             }
511         }
512         sets
513     }
514 }
515
516 #[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Debug)]
517 pub enum Kind {
518     Build,
519     Check,
520     Clippy,
521     Fix,
522     Format,
523     Test,
524     Bench,
525     Doc,
526     Clean,
527     Dist,
528     Install,
529     Run,
530     Setup,
531 }
532
533 impl Kind {
534     pub fn parse(string: &str) -> Option<Kind> {
535         // these strings, including the one-letter aliases, must match the x.py help text
536         Some(match string {
537             "build" | "b" => Kind::Build,
538             "check" | "c" => Kind::Check,
539             "clippy" => Kind::Clippy,
540             "fix" => Kind::Fix,
541             "fmt" => Kind::Format,
542             "test" | "t" => Kind::Test,
543             "bench" => Kind::Bench,
544             "doc" | "d" => Kind::Doc,
545             "clean" => Kind::Clean,
546             "dist" => Kind::Dist,
547             "install" => Kind::Install,
548             "run" | "r" => Kind::Run,
549             "setup" => Kind::Setup,
550             _ => return None,
551         })
552     }
553
554     pub fn as_str(&self) -> &'static str {
555         match self {
556             Kind::Build => "build",
557             Kind::Check => "check",
558             Kind::Clippy => "clippy",
559             Kind::Fix => "fix",
560             Kind::Format => "fmt",
561             Kind::Test => "test",
562             Kind::Bench => "bench",
563             Kind::Doc => "doc",
564             Kind::Clean => "clean",
565             Kind::Dist => "dist",
566             Kind::Install => "install",
567             Kind::Run => "run",
568             Kind::Setup => "setup",
569         }
570     }
571 }
572
573 impl<'a> Builder<'a> {
574     fn get_step_descriptions(kind: Kind) -> Vec<StepDescription> {
575         macro_rules! describe {
576             ($($rule:ty),+ $(,)?) => {{
577                 vec![$(StepDescription::from::<$rule>(kind)),+]
578             }};
579         }
580         match kind {
581             Kind::Build => describe!(
582                 compile::Std,
583                 compile::Rustc,
584                 compile::Assemble,
585                 compile::CodegenBackend,
586                 compile::StartupObjects,
587                 tool::BuildManifest,
588                 tool::Rustbook,
589                 tool::ErrorIndex,
590                 tool::UnstableBookGen,
591                 tool::Tidy,
592                 tool::Linkchecker,
593                 tool::CargoTest,
594                 tool::Compiletest,
595                 tool::RemoteTestServer,
596                 tool::RemoteTestClient,
597                 tool::RustInstaller,
598                 tool::Cargo,
599                 tool::Rls,
600                 tool::RustAnalyzer,
601                 tool::RustAnalyzerProcMacroSrv,
602                 tool::RustDemangler,
603                 tool::Rustdoc,
604                 tool::Clippy,
605                 tool::CargoClippy,
606                 native::Llvm,
607                 native::Sanitizers,
608                 tool::Rustfmt,
609                 tool::Miri,
610                 tool::CargoMiri,
611                 native::Lld,
612                 native::CrtBeginEnd
613             ),
614             Kind::Check | Kind::Clippy | Kind::Fix => describe!(
615                 check::Std,
616                 check::Rustc,
617                 check::Rustdoc,
618                 check::CodegenBackend,
619                 check::Clippy,
620                 check::Miri,
621                 check::CargoMiri,
622                 check::MiroptTestTools,
623                 check::Rls,
624                 check::RustAnalyzer,
625                 check::Rustfmt,
626                 check::Bootstrap
627             ),
628             Kind::Test => describe!(
629                 crate::toolstate::ToolStateCheck,
630                 test::ExpandYamlAnchors,
631                 test::Tidy,
632                 test::Ui,
633                 test::RunPassValgrind,
634                 test::MirOpt,
635                 test::Codegen,
636                 test::CodegenUnits,
637                 test::Assembly,
638                 test::Incremental,
639                 test::Debuginfo,
640                 test::UiFullDeps,
641                 test::Rustdoc,
642                 test::Pretty,
643                 test::Crate,
644                 test::CrateLibrustc,
645                 test::CrateRustdoc,
646                 test::CrateRustdocJsonTypes,
647                 test::CrateJsonDocLint,
648                 test::Linkcheck,
649                 test::TierCheck,
650                 test::ReplacePlaceholderTest,
651                 test::Cargotest,
652                 test::Cargo,
653                 test::RustAnalyzer,
654                 test::ErrorIndex,
655                 test::Distcheck,
656                 test::RunMakeFullDeps,
657                 test::Nomicon,
658                 test::Reference,
659                 test::RustdocBook,
660                 test::RustByExample,
661                 test::TheBook,
662                 test::UnstableBook,
663                 test::RustcBook,
664                 test::LintDocs,
665                 test::RustcGuide,
666                 test::EmbeddedBook,
667                 test::EditionGuide,
668                 test::Rustfmt,
669                 test::Miri,
670                 test::Clippy,
671                 test::RustDemangler,
672                 test::CompiletestTest,
673                 test::RustdocJSStd,
674                 test::RustdocJSNotStd,
675                 test::RustdocGUI,
676                 test::RustdocTheme,
677                 test::RustdocUi,
678                 test::RustdocJson,
679                 test::HtmlCheck,
680                 // Run bootstrap close to the end as it's unlikely to fail
681                 test::Bootstrap,
682                 // Run run-make last, since these won't pass without make on Windows
683                 test::RunMake,
684             ),
685             Kind::Bench => describe!(test::Crate, test::CrateLibrustc),
686             Kind::Doc => describe!(
687                 doc::UnstableBook,
688                 doc::UnstableBookGen,
689                 doc::TheBook,
690                 doc::Standalone,
691                 doc::Std,
692                 doc::Rustc,
693                 doc::Rustdoc,
694                 doc::Rustfmt,
695                 doc::ErrorIndex,
696                 doc::Nomicon,
697                 doc::Reference,
698                 doc::RustdocBook,
699                 doc::RustByExample,
700                 doc::RustcBook,
701                 doc::CargoBook,
702                 doc::Clippy,
703                 doc::ClippyBook,
704                 doc::Miri,
705                 doc::EmbeddedBook,
706                 doc::EditionGuide,
707                 doc::StyleGuide,
708             ),
709             Kind::Dist => describe!(
710                 dist::Docs,
711                 dist::RustcDocs,
712                 dist::JsonDocs,
713                 dist::Mingw,
714                 dist::Rustc,
715                 dist::Std,
716                 dist::RustcDev,
717                 dist::Analysis,
718                 dist::Src,
719                 dist::Cargo,
720                 dist::Rls,
721                 dist::RustAnalyzer,
722                 dist::Rustfmt,
723                 dist::RustDemangler,
724                 dist::Clippy,
725                 dist::Miri,
726                 dist::LlvmTools,
727                 dist::RustDev,
728                 dist::Bootstrap,
729                 dist::Extended,
730                 // It seems that PlainSourceTarball somehow changes how some of the tools
731                 // perceive their dependencies (see #93033) which would invalidate fingerprints
732                 // and force us to rebuild tools after vendoring dependencies.
733                 // To work around this, create the Tarball after building all the tools.
734                 dist::PlainSourceTarball,
735                 dist::BuildManifest,
736                 dist::ReproducibleArtifacts,
737             ),
738             Kind::Install => describe!(
739                 install::Docs,
740                 install::Std,
741                 install::Cargo,
742                 install::RustAnalyzer,
743                 install::Rustfmt,
744                 install::RustDemangler,
745                 install::Clippy,
746                 install::Miri,
747                 install::Analysis,
748                 install::Src,
749                 install::Rustc
750             ),
751             Kind::Run => describe!(
752                 run::ExpandYamlAnchors,
753                 run::BuildManifest,
754                 run::BumpStage0,
755                 run::ReplaceVersionPlaceholder,
756                 run::Miri,
757             ),
758             // These commands either don't use paths, or they're special-cased in Build::build()
759             Kind::Clean | Kind::Format | Kind::Setup => vec![],
760         }
761     }
762
763     pub fn get_help(build: &Build, kind: Kind) -> Option<String> {
764         let step_descriptions = Builder::get_step_descriptions(kind);
765         if step_descriptions.is_empty() {
766             return None;
767         }
768
769         let builder = Self::new_internal(build, kind, vec![]);
770         let builder = &builder;
771         // The "build" kind here is just a placeholder, it will be replaced with something else in
772         // the following statement.
773         let mut should_run = ShouldRun::new(builder, Kind::Build);
774         for desc in step_descriptions {
775             should_run.kind = desc.kind;
776             should_run = (desc.should_run)(should_run);
777         }
778         let mut help = String::from("Available paths:\n");
779         let mut add_path = |path: &Path| {
780             t!(write!(help, "    ./x.py {} {}\n", kind.as_str(), path.display()));
781         };
782         for pathset in should_run.paths {
783             match pathset {
784                 PathSet::Set(set) => {
785                     for path in set {
786                         add_path(&path.path);
787                     }
788                 }
789                 PathSet::Suite(path) => {
790                     add_path(&path.path.join("..."));
791                 }
792             }
793         }
794         Some(help)
795     }
796
797     fn new_internal(build: &Build, kind: Kind, paths: Vec<PathBuf>) -> Builder<'_> {
798         Builder {
799             build,
800             top_stage: build.config.stage,
801             kind,
802             cache: Cache::new(),
803             stack: RefCell::new(Vec::new()),
804             time_spent_on_dependencies: Cell::new(Duration::new(0, 0)),
805             paths,
806         }
807     }
808
809     pub fn new(build: &Build) -> Builder<'_> {
810         let (kind, paths) = match build.config.cmd {
811             Subcommand::Build { ref paths } => (Kind::Build, &paths[..]),
812             Subcommand::Check { ref paths } => (Kind::Check, &paths[..]),
813             Subcommand::Clippy { ref paths, .. } => (Kind::Clippy, &paths[..]),
814             Subcommand::Fix { ref paths } => (Kind::Fix, &paths[..]),
815             Subcommand::Doc { ref paths, .. } => (Kind::Doc, &paths[..]),
816             Subcommand::Test { ref paths, .. } => (Kind::Test, &paths[..]),
817             Subcommand::Bench { ref paths, .. } => (Kind::Bench, &paths[..]),
818             Subcommand::Dist { ref paths } => (Kind::Dist, &paths[..]),
819             Subcommand::Install { ref paths } => (Kind::Install, &paths[..]),
820             Subcommand::Run { ref paths, .. } => (Kind::Run, &paths[..]),
821             Subcommand::Format { .. } => (Kind::Format, &[][..]),
822             Subcommand::Clean { .. } | Subcommand::Setup { .. } => {
823                 panic!()
824             }
825         };
826
827         Self::new_internal(build, kind, paths.to_owned())
828     }
829
830     pub fn execute_cli(&self) {
831         self.run_step_descriptions(&Builder::get_step_descriptions(self.kind), &self.paths);
832     }
833
834     pub fn default_doc(&self, paths: &[PathBuf]) {
835         self.run_step_descriptions(&Builder::get_step_descriptions(Kind::Doc), paths);
836     }
837
838     /// NOTE: keep this in sync with `rustdoc::clean::utils::doc_rust_lang_org_channel`, or tests will fail on beta/stable.
839     pub fn doc_rust_lang_org_channel(&self) -> String {
840         let channel = match &*self.config.channel {
841             "stable" => &self.version,
842             "beta" => "beta",
843             "nightly" | "dev" => "nightly",
844             // custom build of rustdoc maybe? link to the latest stable docs just in case
845             _ => "stable",
846         };
847         "https://doc.rust-lang.org/".to_owned() + channel
848     }
849
850     fn run_step_descriptions(&self, v: &[StepDescription], paths: &[PathBuf]) {
851         StepDescription::run(v, self, paths);
852     }
853
854     /// Obtain a compiler at a given stage and for a given host. Explicitly does
855     /// not take `Compiler` since all `Compiler` instances are meant to be
856     /// obtained through this function, since it ensures that they are valid
857     /// (i.e., built and assembled).
858     pub fn compiler(&self, stage: u32, host: TargetSelection) -> Compiler {
859         self.ensure(compile::Assemble { target_compiler: Compiler { stage, host } })
860     }
861
862     /// Similar to `compiler`, except handles the full-bootstrap option to
863     /// silently use the stage1 compiler instead of a stage2 compiler if one is
864     /// requested.
865     ///
866     /// Note that this does *not* have the side effect of creating
867     /// `compiler(stage, host)`, unlike `compiler` above which does have such
868     /// a side effect. The returned compiler here can only be used to compile
869     /// new artifacts, it can't be used to rely on the presence of a particular
870     /// sysroot.
871     ///
872     /// See `force_use_stage1` for documentation on what each argument is.
873     pub fn compiler_for(
874         &self,
875         stage: u32,
876         host: TargetSelection,
877         target: TargetSelection,
878     ) -> Compiler {
879         if self.build.force_use_stage1(Compiler { stage, host }, target) {
880             self.compiler(1, self.config.build)
881         } else {
882             self.compiler(stage, host)
883         }
884     }
885
886     pub fn sysroot(&self, compiler: Compiler) -> Interned<PathBuf> {
887         self.ensure(compile::Sysroot { compiler })
888     }
889
890     /// Returns the libdir where the standard library and other artifacts are
891     /// found for a compiler's sysroot.
892     pub fn sysroot_libdir(&self, compiler: Compiler, target: TargetSelection) -> Interned<PathBuf> {
893         #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
894         struct Libdir {
895             compiler: Compiler,
896             target: TargetSelection,
897         }
898         impl Step for Libdir {
899             type Output = Interned<PathBuf>;
900
901             fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
902                 run.never()
903             }
904
905             fn run(self, builder: &Builder<'_>) -> Interned<PathBuf> {
906                 let lib = builder.sysroot_libdir_relative(self.compiler);
907                 let sysroot = builder
908                     .sysroot(self.compiler)
909                     .join(lib)
910                     .join("rustlib")
911                     .join(self.target.triple)
912                     .join("lib");
913                 // Avoid deleting the rustlib/ directory we just copied
914                 // (in `impl Step for Sysroot`).
915                 if !builder.download_rustc() {
916                     let _ = fs::remove_dir_all(&sysroot);
917                     t!(fs::create_dir_all(&sysroot));
918                 }
919                 INTERNER.intern_path(sysroot)
920             }
921         }
922         self.ensure(Libdir { compiler, target })
923     }
924
925     pub fn sysroot_codegen_backends(&self, compiler: Compiler) -> PathBuf {
926         self.sysroot_libdir(compiler, compiler.host).with_file_name("codegen-backends")
927     }
928
929     /// Returns the compiler's libdir where it stores the dynamic libraries that
930     /// it itself links against.
931     ///
932     /// For example this returns `<sysroot>/lib` on Unix and `<sysroot>/bin` on
933     /// Windows.
934     pub fn rustc_libdir(&self, compiler: Compiler) -> PathBuf {
935         if compiler.is_snapshot(self) {
936             self.rustc_snapshot_libdir()
937         } else {
938             match self.config.libdir_relative() {
939                 Some(relative_libdir) if compiler.stage >= 1 => {
940                     self.sysroot(compiler).join(relative_libdir)
941                 }
942                 _ => self.sysroot(compiler).join(libdir(compiler.host)),
943             }
944         }
945     }
946
947     /// Returns the compiler's relative libdir where it stores the dynamic libraries that
948     /// it itself links against.
949     ///
950     /// For example this returns `lib` on Unix and `bin` on
951     /// Windows.
952     pub fn libdir_relative(&self, compiler: Compiler) -> &Path {
953         if compiler.is_snapshot(self) {
954             libdir(self.config.build).as_ref()
955         } else {
956             match self.config.libdir_relative() {
957                 Some(relative_libdir) if compiler.stage >= 1 => relative_libdir,
958                 _ => libdir(compiler.host).as_ref(),
959             }
960         }
961     }
962
963     /// Returns the compiler's relative libdir where the standard library and other artifacts are
964     /// found for a compiler's sysroot.
965     ///
966     /// For example this returns `lib` on Unix and Windows.
967     pub fn sysroot_libdir_relative(&self, compiler: Compiler) -> &Path {
968         match self.config.libdir_relative() {
969             Some(relative_libdir) if compiler.stage >= 1 => relative_libdir,
970             _ if compiler.stage == 0 => &self.build.initial_libdir,
971             _ => Path::new("lib"),
972         }
973     }
974
975     pub fn rustc_lib_paths(&self, compiler: Compiler) -> Vec<PathBuf> {
976         let mut dylib_dirs = vec![self.rustc_libdir(compiler)];
977
978         // Ensure that the downloaded LLVM libraries can be found.
979         if self.config.llvm_from_ci {
980             let ci_llvm_lib = self.out.join(&*compiler.host.triple).join("ci-llvm").join("lib");
981             dylib_dirs.push(ci_llvm_lib);
982         }
983
984         dylib_dirs
985     }
986
987     /// Adds the compiler's directory of dynamic libraries to `cmd`'s dynamic
988     /// library lookup path.
989     pub fn add_rustc_lib_path(&self, compiler: Compiler, cmd: &mut Command) {
990         // Windows doesn't need dylib path munging because the dlls for the
991         // compiler live next to the compiler and the system will find them
992         // automatically.
993         if cfg!(windows) {
994             return;
995         }
996
997         add_dylib_path(self.rustc_lib_paths(compiler), cmd);
998     }
999
1000     /// Gets a path to the compiler specified.
1001     pub fn rustc(&self, compiler: Compiler) -> PathBuf {
1002         if compiler.is_snapshot(self) {
1003             self.initial_rustc.clone()
1004         } else {
1005             self.sysroot(compiler).join("bin").join(exe("rustc", compiler.host))
1006         }
1007     }
1008
1009     /// Gets the paths to all of the compiler's codegen backends.
1010     fn codegen_backends(&self, compiler: Compiler) -> impl Iterator<Item = PathBuf> {
1011         fs::read_dir(self.sysroot_codegen_backends(compiler))
1012             .into_iter()
1013             .flatten()
1014             .filter_map(Result::ok)
1015             .map(|entry| entry.path())
1016     }
1017
1018     pub fn rustdoc(&self, compiler: Compiler) -> PathBuf {
1019         self.ensure(tool::Rustdoc { compiler })
1020     }
1021
1022     pub fn rustdoc_cmd(&self, compiler: Compiler) -> Command {
1023         let mut cmd = Command::new(&self.bootstrap_out.join("rustdoc"));
1024         cmd.env("RUSTC_STAGE", compiler.stage.to_string())
1025             .env("RUSTC_SYSROOT", self.sysroot(compiler))
1026             // Note that this is *not* the sysroot_libdir because rustdoc must be linked
1027             // equivalently to rustc.
1028             .env("RUSTDOC_LIBDIR", self.rustc_libdir(compiler))
1029             .env("CFG_RELEASE_CHANNEL", &self.config.channel)
1030             .env("RUSTDOC_REAL", self.rustdoc(compiler))
1031             .env("RUSTC_BOOTSTRAP", "1");
1032
1033         cmd.arg("-Wrustdoc::invalid_codeblock_attributes");
1034
1035         if self.config.deny_warnings {
1036             cmd.arg("-Dwarnings");
1037         }
1038         cmd.arg("-Znormalize-docs");
1039
1040         // Remove make-related flags that can cause jobserver problems.
1041         cmd.env_remove("MAKEFLAGS");
1042         cmd.env_remove("MFLAGS");
1043
1044         if let Some(linker) = self.linker(compiler.host) {
1045             cmd.env("RUSTDOC_LINKER", linker);
1046         }
1047         if self.is_fuse_ld_lld(compiler.host) {
1048             cmd.env("RUSTDOC_FUSE_LD_LLD", "1");
1049         }
1050         cmd
1051     }
1052
1053     /// Return the path to `llvm-config` for the target, if it exists.
1054     ///
1055     /// Note that this returns `None` if LLVM is disabled, or if we're in a
1056     /// check build or dry-run, where there's no need to build all of LLVM.
1057     fn llvm_config(&self, target: TargetSelection) -> Option<PathBuf> {
1058         if self.config.llvm_enabled() && self.kind != Kind::Check && !self.config.dry_run() {
1059             let llvm_config = self.ensure(native::Llvm { target });
1060             if llvm_config.is_file() {
1061                 return Some(llvm_config);
1062             }
1063         }
1064         None
1065     }
1066
1067     /// Prepares an invocation of `cargo` to be run.
1068     ///
1069     /// This will create a `Command` that represents a pending execution of
1070     /// Cargo. This cargo will be configured to use `compiler` as the actual
1071     /// rustc compiler, its output will be scoped by `mode`'s output directory,
1072     /// it will pass the `--target` flag for the specified `target`, and will be
1073     /// executing the Cargo command `cmd`.
1074     pub fn cargo(
1075         &self,
1076         compiler: Compiler,
1077         mode: Mode,
1078         source_type: SourceType,
1079         target: TargetSelection,
1080         cmd: &str,
1081     ) -> Cargo {
1082         let mut cargo = Command::new(&self.initial_cargo);
1083         let out_dir = self.stage_out(compiler, mode);
1084         // Run cargo from the source root so it can find .cargo/config.
1085         // This matters when using vendoring and the working directory is outside the repository.
1086         cargo.current_dir(&self.src);
1087
1088         // Codegen backends are not yet tracked by -Zbinary-dep-depinfo,
1089         // so we need to explicitly clear out if they've been updated.
1090         for backend in self.codegen_backends(compiler) {
1091             self.clear_if_dirty(&out_dir, &backend);
1092         }
1093
1094         if cmd == "doc" || cmd == "rustdoc" {
1095             let my_out = match mode {
1096                 // This is the intended out directory for compiler documentation.
1097                 Mode::Rustc | Mode::ToolRustc => self.compiler_doc_out(target),
1098                 Mode::Std => {
1099                     if self.config.cmd.json() {
1100                         out_dir.join(target.triple).join("json-doc")
1101                     } else {
1102                         out_dir.join(target.triple).join("doc")
1103                     }
1104                 }
1105                 _ => panic!("doc mode {:?} not expected", mode),
1106             };
1107             let rustdoc = self.rustdoc(compiler);
1108             self.clear_if_dirty(&my_out, &rustdoc);
1109         }
1110
1111         cargo.env("CARGO_TARGET_DIR", &out_dir).arg(cmd);
1112
1113         let profile_var = |name: &str| {
1114             let profile = if self.config.rust_optimize { "RELEASE" } else { "DEV" };
1115             format!("CARGO_PROFILE_{}_{}", profile, name)
1116         };
1117
1118         // See comment in rustc_llvm/build.rs for why this is necessary, largely llvm-config
1119         // needs to not accidentally link to libLLVM in stage0/lib.
1120         cargo.env("REAL_LIBRARY_PATH_VAR", &util::dylib_path_var());
1121         if let Some(e) = env::var_os(util::dylib_path_var()) {
1122             cargo.env("REAL_LIBRARY_PATH", e);
1123         }
1124
1125         // Found with `rg "init_env_logger\("`. If anyone uses `init_env_logger`
1126         // from out of tree it shouldn't matter, since x.py is only used for
1127         // building in-tree.
1128         let color_logs = ["RUSTDOC_LOG_COLOR", "RUSTC_LOG_COLOR", "RUST_LOG_COLOR"];
1129         match self.build.config.color {
1130             Color::Always => {
1131                 cargo.arg("--color=always");
1132                 for log in &color_logs {
1133                     cargo.env(log, "always");
1134                 }
1135             }
1136             Color::Never => {
1137                 cargo.arg("--color=never");
1138                 for log in &color_logs {
1139                     cargo.env(log, "never");
1140                 }
1141             }
1142             Color::Auto => {} // nothing to do
1143         }
1144
1145         if cmd != "install" {
1146             cargo.arg("--target").arg(target.rustc_target_arg());
1147         } else {
1148             assert_eq!(target, compiler.host);
1149         }
1150
1151         // Set a flag for `check`/`clippy`/`fix`, so that certain build
1152         // scripts can do less work (i.e. not building/requiring LLVM).
1153         if cmd == "check" || cmd == "clippy" || cmd == "fix" {
1154             // If we've not yet built LLVM, or it's stale, then bust
1155             // the rustc_llvm cache. That will always work, even though it
1156             // may mean that on the next non-check build we'll need to rebuild
1157             // rustc_llvm. But if LLVM is stale, that'll be a tiny amount
1158             // of work comparatively, and we'd likely need to rebuild it anyway,
1159             // so that's okay.
1160             if crate::native::prebuilt_llvm_config(self, target).is_err() {
1161                 cargo.env("RUST_CHECK", "1");
1162             }
1163         }
1164
1165         let stage = if compiler.stage == 0 && self.local_rebuild {
1166             // Assume the local-rebuild rustc already has stage1 features.
1167             1
1168         } else {
1169             compiler.stage
1170         };
1171
1172         let mut rustflags = Rustflags::new(target);
1173         if stage != 0 {
1174             if let Ok(s) = env::var("CARGOFLAGS_NOT_BOOTSTRAP") {
1175                 cargo.args(s.split_whitespace());
1176             }
1177             rustflags.env("RUSTFLAGS_NOT_BOOTSTRAP");
1178         } else {
1179             if let Ok(s) = env::var("CARGOFLAGS_BOOTSTRAP") {
1180                 cargo.args(s.split_whitespace());
1181             }
1182             rustflags.env("RUSTFLAGS_BOOTSTRAP");
1183             if cmd == "clippy" {
1184                 // clippy overwrites sysroot if we pass it to cargo.
1185                 // Pass it directly to clippy instead.
1186                 // NOTE: this can't be fixed in clippy because we explicitly don't set `RUSTC`,
1187                 // so it has no way of knowing the sysroot.
1188                 rustflags.arg("--sysroot");
1189                 rustflags.arg(
1190                     self.sysroot(compiler)
1191                         .as_os_str()
1192                         .to_str()
1193                         .expect("sysroot must be valid UTF-8"),
1194                 );
1195                 // Only run clippy on a very limited subset of crates (in particular, not build scripts).
1196                 cargo.arg("-Zunstable-options");
1197                 // Explicitly does *not* set `--cfg=bootstrap`, since we're using a nightly clippy.
1198                 let host_version = Command::new("rustc").arg("--version").output().map_err(|_| ());
1199                 let output = host_version.and_then(|output| {
1200                     if output.status.success() {
1201                         Ok(output)
1202                     } else {
1203                         Err(())
1204                     }
1205                 }).unwrap_or_else(|_| {
1206                     eprintln!(
1207                         "error: `x.py clippy` requires a host `rustc` toolchain with the `clippy` component"
1208                     );
1209                     eprintln!("help: try `rustup component add clippy`");
1210                     crate::detail_exit(1);
1211                 });
1212                 if !t!(std::str::from_utf8(&output.stdout)).contains("nightly") {
1213                     rustflags.arg("--cfg=bootstrap");
1214                 }
1215             } else {
1216                 rustflags.arg("--cfg=bootstrap");
1217             }
1218         }
1219
1220         let use_new_symbol_mangling = match self.config.rust_new_symbol_mangling {
1221             Some(setting) => {
1222                 // If an explicit setting is given, use that
1223                 setting
1224             }
1225             None => {
1226                 if mode == Mode::Std {
1227                     // The standard library defaults to the legacy scheme
1228                     false
1229                 } else {
1230                     // The compiler and tools default to the new scheme
1231                     true
1232                 }
1233             }
1234         };
1235
1236         if use_new_symbol_mangling {
1237             rustflags.arg("-Csymbol-mangling-version=v0");
1238         } else {
1239             rustflags.arg("-Csymbol-mangling-version=legacy");
1240             rustflags.arg("-Zunstable-options");
1241         }
1242
1243         // Enable cfg checking of cargo features for everything but std and also enable cfg
1244         // checking of names and values.
1245         //
1246         // Note: `std`, `alloc` and `core` imports some dependencies by #[path] (like
1247         // backtrace, core_simd, std_float, ...), those dependencies have their own
1248         // features but cargo isn't involved in the #[path] process and so cannot pass the
1249         // complete list of features, so for that reason we don't enable checking of
1250         // features for std crates.
1251         cargo.arg(if mode != Mode::Std {
1252             "-Zcheck-cfg=names,values,output,features"
1253         } else {
1254             "-Zcheck-cfg=names,values,output"
1255         });
1256
1257         // Add extra cfg not defined in/by rustc
1258         //
1259         // Note: Altrough it would seems that "-Zunstable-options" to `rustflags` is useless as
1260         // cargo would implicitly add it, it was discover that sometimes bootstrap only use
1261         // `rustflags` without `cargo` making it required.
1262         rustflags.arg("-Zunstable-options");
1263         for (restricted_mode, name, values) in EXTRA_CHECK_CFGS {
1264             if *restricted_mode == None || *restricted_mode == Some(mode) {
1265                 // Creating a string of the values by concatenating each value:
1266                 // ',"tvos","watchos"' or '' (nothing) when there are no values
1267                 let values = match values {
1268                     Some(values) => values
1269                         .iter()
1270                         .map(|val| [",", "\"", val, "\""])
1271                         .flatten()
1272                         .collect::<String>(),
1273                     None => String::new(),
1274                 };
1275                 rustflags.arg(&format!("--check-cfg=values({name}{values})"));
1276             }
1277         }
1278
1279         // FIXME: It might be better to use the same value for both `RUSTFLAGS` and `RUSTDOCFLAGS`,
1280         // but this breaks CI. At the very least, stage0 `rustdoc` needs `--cfg bootstrap`. See
1281         // #71458.
1282         let mut rustdocflags = rustflags.clone();
1283         rustdocflags.propagate_cargo_env("RUSTDOCFLAGS");
1284         if stage == 0 {
1285             rustdocflags.env("RUSTDOCFLAGS_BOOTSTRAP");
1286         } else {
1287             rustdocflags.env("RUSTDOCFLAGS_NOT_BOOTSTRAP");
1288         }
1289
1290         if let Ok(s) = env::var("CARGOFLAGS") {
1291             cargo.args(s.split_whitespace());
1292         }
1293
1294         match mode {
1295             Mode::Std | Mode::ToolBootstrap | Mode::ToolStd => {}
1296             Mode::Rustc | Mode::Codegen | Mode::ToolRustc => {
1297                 // Build proc macros both for the host and the target
1298                 if target != compiler.host && cmd != "check" {
1299                     cargo.arg("-Zdual-proc-macros");
1300                     rustflags.arg("-Zdual-proc-macros");
1301                 }
1302             }
1303         }
1304
1305         // This tells Cargo (and in turn, rustc) to output more complete
1306         // dependency information.  Most importantly for rustbuild, this
1307         // includes sysroot artifacts, like libstd, which means that we don't
1308         // need to track those in rustbuild (an error prone process!). This
1309         // feature is currently unstable as there may be some bugs and such, but
1310         // it represents a big improvement in rustbuild's reliability on
1311         // rebuilds, so we're using it here.
1312         //
1313         // For some additional context, see #63470 (the PR originally adding
1314         // this), as well as #63012 which is the tracking issue for this
1315         // feature on the rustc side.
1316         cargo.arg("-Zbinary-dep-depinfo");
1317         match mode {
1318             Mode::ToolBootstrap => {
1319                 // Restrict the allowed features to those passed by rustbuild, so we don't depend on nightly accidentally.
1320                 rustflags.arg("-Zallow-features=binary-dep-depinfo");
1321             }
1322             Mode::ToolStd => {
1323                 // Right now this is just compiletest and a few other tools that build on stable.
1324                 // Allow them to use `feature(test)`, but nothing else.
1325                 rustflags.arg("-Zallow-features=binary-dep-depinfo,test,proc_macro_internals,proc_macro_diagnostic,proc_macro_span");
1326             }
1327             Mode::Std | Mode::Rustc | Mode::Codegen | Mode::ToolRustc => {}
1328         }
1329
1330         cargo.arg("-j").arg(self.jobs().to_string());
1331         // Remove make-related flags to ensure Cargo can correctly set things up
1332         cargo.env_remove("MAKEFLAGS");
1333         cargo.env_remove("MFLAGS");
1334
1335         // FIXME: Temporary fix for https://github.com/rust-lang/cargo/issues/3005
1336         // Force cargo to output binaries with disambiguating hashes in the name
1337         let mut metadata = if compiler.stage == 0 {
1338             // Treat stage0 like a special channel, whether it's a normal prior-
1339             // release rustc or a local rebuild with the same version, so we
1340             // never mix these libraries by accident.
1341             "bootstrap".to_string()
1342         } else {
1343             self.config.channel.to_string()
1344         };
1345         // We want to make sure that none of the dependencies between
1346         // std/test/rustc unify with one another. This is done for weird linkage
1347         // reasons but the gist of the problem is that if librustc, libtest, and
1348         // libstd all depend on libc from crates.io (which they actually do) we
1349         // want to make sure they all get distinct versions. Things get really
1350         // weird if we try to unify all these dependencies right now, namely
1351         // around how many times the library is linked in dynamic libraries and
1352         // such. If rustc were a static executable or if we didn't ship dylibs
1353         // this wouldn't be a problem, but we do, so it is. This is in general
1354         // just here to make sure things build right. If you can remove this and
1355         // things still build right, please do!
1356         match mode {
1357             Mode::Std => metadata.push_str("std"),
1358             // When we're building rustc tools, they're built with a search path
1359             // that contains things built during the rustc build. For example,
1360             // bitflags is built during the rustc build, and is a dependency of
1361             // rustdoc as well. We're building rustdoc in a different target
1362             // directory, though, which means that Cargo will rebuild the
1363             // dependency. When we go on to build rustdoc, we'll look for
1364             // bitflags, and find two different copies: one built during the
1365             // rustc step and one that we just built. This isn't always a
1366             // problem, somehow -- not really clear why -- but we know that this
1367             // fixes things.
1368             Mode::ToolRustc => metadata.push_str("tool-rustc"),
1369             // Same for codegen backends.
1370             Mode::Codegen => metadata.push_str("codegen"),
1371             _ => {}
1372         }
1373         cargo.env("__CARGO_DEFAULT_LIB_METADATA", &metadata);
1374
1375         if cmd == "clippy" {
1376             rustflags.arg("-Zforce-unstable-if-unmarked");
1377         }
1378
1379         rustflags.arg("-Zmacro-backtrace");
1380
1381         let want_rustdoc = self.doc_tests != DocTests::No;
1382
1383         // We synthetically interpret a stage0 compiler used to build tools as a
1384         // "raw" compiler in that it's the exact snapshot we download. Normally
1385         // the stage0 build means it uses libraries build by the stage0
1386         // compiler, but for tools we just use the precompiled libraries that
1387         // we've downloaded
1388         let use_snapshot = mode == Mode::ToolBootstrap;
1389         assert!(!use_snapshot || stage == 0 || self.local_rebuild);
1390
1391         let maybe_sysroot = self.sysroot(compiler);
1392         let sysroot = if use_snapshot { self.rustc_snapshot_sysroot() } else { &maybe_sysroot };
1393         let libdir = self.rustc_libdir(compiler);
1394
1395         // Clear the output directory if the real rustc we're using has changed;
1396         // Cargo cannot detect this as it thinks rustc is bootstrap/debug/rustc.
1397         //
1398         // Avoid doing this during dry run as that usually means the relevant
1399         // compiler is not yet linked/copied properly.
1400         //
1401         // Only clear out the directory if we're compiling std; otherwise, we
1402         // should let Cargo take care of things for us (via depdep info)
1403         if !self.config.dry_run() && mode == Mode::Std && cmd == "build" {
1404             self.clear_if_dirty(&out_dir, &self.rustc(compiler));
1405         }
1406
1407         // Customize the compiler we're running. Specify the compiler to cargo
1408         // as our shim and then pass it some various options used to configure
1409         // how the actual compiler itself is called.
1410         //
1411         // These variables are primarily all read by
1412         // src/bootstrap/bin/{rustc.rs,rustdoc.rs}
1413         cargo
1414             .env("RUSTBUILD_NATIVE_DIR", self.native_dir(target))
1415             .env("RUSTC_REAL", self.rustc(compiler))
1416             .env("RUSTC_STAGE", stage.to_string())
1417             .env("RUSTC_SYSROOT", &sysroot)
1418             .env("RUSTC_LIBDIR", &libdir)
1419             .env("RUSTDOC", self.bootstrap_out.join("rustdoc"))
1420             .env(
1421                 "RUSTDOC_REAL",
1422                 if cmd == "doc" || cmd == "rustdoc" || (cmd == "test" && want_rustdoc) {
1423                     self.rustdoc(compiler)
1424                 } else {
1425                     PathBuf::from("/path/to/nowhere/rustdoc/not/required")
1426                 },
1427             )
1428             .env("RUSTC_ERROR_METADATA_DST", self.extended_error_dir())
1429             .env("RUSTC_BREAK_ON_ICE", "1");
1430         // Clippy support is a hack and uses the default `cargo-clippy` in path.
1431         // Don't override RUSTC so that the `cargo-clippy` in path will be run.
1432         if cmd != "clippy" {
1433             cargo.env("RUSTC", self.bootstrap_out.join("rustc"));
1434         }
1435
1436         // Dealing with rpath here is a little special, so let's go into some
1437         // detail. First off, `-rpath` is a linker option on Unix platforms
1438         // which adds to the runtime dynamic loader path when looking for
1439         // dynamic libraries. We use this by default on Unix platforms to ensure
1440         // that our nightlies behave the same on Windows, that is they work out
1441         // of the box. This can be disabled, of course, but basically that's why
1442         // we're gated on RUSTC_RPATH here.
1443         //
1444         // Ok, so the astute might be wondering "why isn't `-C rpath` used
1445         // here?" and that is indeed a good question to ask. This codegen
1446         // option is the compiler's current interface to generating an rpath.
1447         // Unfortunately it doesn't quite suffice for us. The flag currently
1448         // takes no value as an argument, so the compiler calculates what it
1449         // should pass to the linker as `-rpath`. This unfortunately is based on
1450         // the **compile time** directory structure which when building with
1451         // Cargo will be very different than the runtime directory structure.
1452         //
1453         // All that's a really long winded way of saying that if we use
1454         // `-Crpath` then the executables generated have the wrong rpath of
1455         // something like `$ORIGIN/deps` when in fact the way we distribute
1456         // rustc requires the rpath to be `$ORIGIN/../lib`.
1457         //
1458         // So, all in all, to set up the correct rpath we pass the linker
1459         // argument manually via `-C link-args=-Wl,-rpath,...`. Plus isn't it
1460         // fun to pass a flag to a tool to pass a flag to pass a flag to a tool
1461         // to change a flag in a binary?
1462         if self.config.rust_rpath && util::use_host_linker(target) {
1463             let rpath = if target.contains("apple") {
1464                 // Note that we need to take one extra step on macOS to also pass
1465                 // `-Wl,-instal_name,@rpath/...` to get things to work right. To
1466                 // do that we pass a weird flag to the compiler to get it to do
1467                 // so. Note that this is definitely a hack, and we should likely
1468                 // flesh out rpath support more fully in the future.
1469                 rustflags.arg("-Zosx-rpath-install-name");
1470                 Some("-Wl,-rpath,@loader_path/../lib")
1471             } else if !target.contains("windows") {
1472                 rustflags.arg("-Clink-args=-Wl,-z,origin");
1473                 Some("-Wl,-rpath,$ORIGIN/../lib")
1474             } else {
1475                 None
1476             };
1477             if let Some(rpath) = rpath {
1478                 rustflags.arg(&format!("-Clink-args={}", rpath));
1479             }
1480         }
1481
1482         if let Some(host_linker) = self.linker(compiler.host) {
1483             cargo.env("RUSTC_HOST_LINKER", host_linker);
1484         }
1485         if self.is_fuse_ld_lld(compiler.host) {
1486             cargo.env("RUSTC_HOST_FUSE_LD_LLD", "1");
1487             cargo.env("RUSTDOC_FUSE_LD_LLD", "1");
1488         }
1489
1490         if let Some(target_linker) = self.linker(target) {
1491             let target = crate::envify(&target.triple);
1492             cargo.env(&format!("CARGO_TARGET_{}_LINKER", target), target_linker);
1493         }
1494         if self.is_fuse_ld_lld(target) {
1495             rustflags.arg("-Clink-args=-fuse-ld=lld");
1496         }
1497         self.lld_flags(target).for_each(|flag| {
1498             rustdocflags.arg(&flag);
1499         });
1500
1501         if !(["build", "check", "clippy", "fix", "rustc"].contains(&cmd)) && want_rustdoc {
1502             cargo.env("RUSTDOC_LIBDIR", self.rustc_libdir(compiler));
1503         }
1504
1505         let debuginfo_level = match mode {
1506             Mode::Rustc | Mode::Codegen => self.config.rust_debuginfo_level_rustc,
1507             Mode::Std => self.config.rust_debuginfo_level_std,
1508             Mode::ToolBootstrap | Mode::ToolStd | Mode::ToolRustc => {
1509                 self.config.rust_debuginfo_level_tools
1510             }
1511         };
1512         cargo.env(profile_var("DEBUG"), debuginfo_level.to_string());
1513         cargo.env(
1514             profile_var("DEBUG_ASSERTIONS"),
1515             if mode == Mode::Std {
1516                 self.config.rust_debug_assertions_std.to_string()
1517             } else {
1518                 self.config.rust_debug_assertions.to_string()
1519             },
1520         );
1521         cargo.env(
1522             profile_var("OVERFLOW_CHECKS"),
1523             if mode == Mode::Std {
1524                 self.config.rust_overflow_checks_std.to_string()
1525             } else {
1526                 self.config.rust_overflow_checks.to_string()
1527             },
1528         );
1529
1530         let split_debuginfo_is_stable = target.contains("linux")
1531             || target.contains("apple")
1532             || (target.contains("msvc")
1533                 && self.config.rust_split_debuginfo == SplitDebuginfo::Packed)
1534             || (target.contains("windows")
1535                 && self.config.rust_split_debuginfo == SplitDebuginfo::Off);
1536
1537         if !split_debuginfo_is_stable {
1538             rustflags.arg("-Zunstable-options");
1539         }
1540         match self.config.rust_split_debuginfo {
1541             SplitDebuginfo::Packed => rustflags.arg("-Csplit-debuginfo=packed"),
1542             SplitDebuginfo::Unpacked => rustflags.arg("-Csplit-debuginfo=unpacked"),
1543             SplitDebuginfo::Off => rustflags.arg("-Csplit-debuginfo=off"),
1544         };
1545
1546         if self.config.cmd.bless() {
1547             // Bless `expect!` tests.
1548             cargo.env("UPDATE_EXPECT", "1");
1549         }
1550
1551         if !mode.is_tool() {
1552             cargo.env("RUSTC_FORCE_UNSTABLE", "1");
1553         }
1554
1555         if let Some(x) = self.crt_static(target) {
1556             if x {
1557                 rustflags.arg("-Ctarget-feature=+crt-static");
1558             } else {
1559                 rustflags.arg("-Ctarget-feature=-crt-static");
1560             }
1561         }
1562
1563         if let Some(x) = self.crt_static(compiler.host) {
1564             cargo.env("RUSTC_HOST_CRT_STATIC", x.to_string());
1565         }
1566
1567         if let Some(map_to) = self.build.debuginfo_map_to(GitRepo::Rustc) {
1568             let map = format!("{}={}", self.build.src.display(), map_to);
1569             cargo.env("RUSTC_DEBUGINFO_MAP", map);
1570
1571             // `rustc` needs to know the virtual `/rustc/$hash` we're mapping to,
1572             // in order to opportunistically reverse it later.
1573             cargo.env("CFG_VIRTUAL_RUST_SOURCE_BASE_DIR", map_to);
1574         }
1575
1576         // Enable usage of unstable features
1577         cargo.env("RUSTC_BOOTSTRAP", "1");
1578         self.add_rust_test_threads(&mut cargo);
1579
1580         // Almost all of the crates that we compile as part of the bootstrap may
1581         // have a build script, including the standard library. To compile a
1582         // build script, however, it itself needs a standard library! This
1583         // introduces a bit of a pickle when we're compiling the standard
1584         // library itself.
1585         //
1586         // To work around this we actually end up using the snapshot compiler
1587         // (stage0) for compiling build scripts of the standard library itself.
1588         // The stage0 compiler is guaranteed to have a libstd available for use.
1589         //
1590         // For other crates, however, we know that we've already got a standard
1591         // library up and running, so we can use the normal compiler to compile
1592         // build scripts in that situation.
1593         if mode == Mode::Std {
1594             cargo
1595                 .env("RUSTC_SNAPSHOT", &self.initial_rustc)
1596                 .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_snapshot_libdir());
1597         } else {
1598             cargo
1599                 .env("RUSTC_SNAPSHOT", self.rustc(compiler))
1600                 .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_libdir(compiler));
1601         }
1602
1603         // Tools that use compiler libraries may inherit the `-lLLVM` link
1604         // requirement, but the `-L` library path is not propagated across
1605         // separate Cargo projects. We can add LLVM's library path to the
1606         // platform-specific environment variable as a workaround.
1607         if mode == Mode::ToolRustc || mode == Mode::Codegen {
1608             if let Some(llvm_config) = self.llvm_config(target) {
1609                 let llvm_libdir = output(Command::new(&llvm_config).arg("--libdir"));
1610                 add_link_lib_path(vec![llvm_libdir.trim().into()], &mut cargo);
1611             }
1612         }
1613
1614         // Compile everything except libraries and proc macros with the more
1615         // efficient initial-exec TLS model. This doesn't work with `dlopen`,
1616         // so we can't use it by default in general, but we can use it for tools
1617         // and our own internal libraries.
1618         if !mode.must_support_dlopen() && !target.triple.starts_with("powerpc-") {
1619             cargo.env("RUSTC_TLS_MODEL_INITIAL_EXEC", "1");
1620         }
1621
1622         if self.config.incremental {
1623             cargo.env("CARGO_INCREMENTAL", "1");
1624         } else {
1625             // Don't rely on any default setting for incr. comp. in Cargo
1626             cargo.env("CARGO_INCREMENTAL", "0");
1627         }
1628
1629         if let Some(ref on_fail) = self.config.on_fail {
1630             cargo.env("RUSTC_ON_FAIL", on_fail);
1631         }
1632
1633         if self.config.print_step_timings {
1634             cargo.env("RUSTC_PRINT_STEP_TIMINGS", "1");
1635         }
1636
1637         if self.config.print_step_rusage {
1638             cargo.env("RUSTC_PRINT_STEP_RUSAGE", "1");
1639         }
1640
1641         if self.config.backtrace_on_ice {
1642             cargo.env("RUSTC_BACKTRACE_ON_ICE", "1");
1643         }
1644
1645         cargo.env("RUSTC_VERBOSE", self.verbosity.to_string());
1646
1647         if source_type == SourceType::InTree {
1648             let mut lint_flags = Vec::new();
1649             // When extending this list, add the new lints to the RUSTFLAGS of the
1650             // build_bootstrap function of src/bootstrap/bootstrap.py as well as
1651             // some code doesn't go through this `rustc` wrapper.
1652             lint_flags.push("-Wrust_2018_idioms");
1653             lint_flags.push("-Wunused_lifetimes");
1654             lint_flags.push("-Wsemicolon_in_expressions_from_macros");
1655
1656             if self.config.deny_warnings {
1657                 lint_flags.push("-Dwarnings");
1658                 rustdocflags.arg("-Dwarnings");
1659             }
1660
1661             // This does not use RUSTFLAGS due to caching issues with Cargo.
1662             // Clippy is treated as an "in tree" tool, but shares the same
1663             // cache as other "submodule" tools. With these options set in
1664             // RUSTFLAGS, that causes *every* shared dependency to be rebuilt.
1665             // By injecting this into the rustc wrapper, this circumvents
1666             // Cargo's fingerprint detection. This is fine because lint flags
1667             // are always ignored in dependencies. Eventually this should be
1668             // fixed via better support from Cargo.
1669             cargo.env("RUSTC_LINT_FLAGS", lint_flags.join(" "));
1670
1671             rustdocflags.arg("-Wrustdoc::invalid_codeblock_attributes");
1672         }
1673
1674         if mode == Mode::Rustc {
1675             rustflags.arg("-Zunstable-options");
1676             rustflags.arg("-Wrustc::internal");
1677         }
1678
1679         // Throughout the build Cargo can execute a number of build scripts
1680         // compiling C/C++ code and we need to pass compilers, archivers, flags, etc
1681         // obtained previously to those build scripts.
1682         // Build scripts use either the `cc` crate or `configure/make` so we pass
1683         // the options through environment variables that are fetched and understood by both.
1684         //
1685         // FIXME: the guard against msvc shouldn't need to be here
1686         if target.contains("msvc") {
1687             if let Some(ref cl) = self.config.llvm_clang_cl {
1688                 cargo.env("CC", cl).env("CXX", cl);
1689             }
1690         } else {
1691             let ccache = self.config.ccache.as_ref();
1692             let ccacheify = |s: &Path| {
1693                 let ccache = match ccache {
1694                     Some(ref s) => s,
1695                     None => return s.display().to_string(),
1696                 };
1697                 // FIXME: the cc-rs crate only recognizes the literal strings
1698                 // `ccache` and `sccache` when doing caching compilations, so we
1699                 // mirror that here. It should probably be fixed upstream to
1700                 // accept a new env var or otherwise work with custom ccache
1701                 // vars.
1702                 match &ccache[..] {
1703                     "ccache" | "sccache" => format!("{} {}", ccache, s.display()),
1704                     _ => s.display().to_string(),
1705                 }
1706             };
1707             let triple_underscored = target.triple.replace("-", "_");
1708             let cc = ccacheify(&self.cc(target));
1709             cargo.env(format!("CC_{}", triple_underscored), &cc);
1710
1711             let cflags = self.cflags(target, GitRepo::Rustc, CLang::C).join(" ");
1712             cargo.env(format!("CFLAGS_{}", triple_underscored), &cflags);
1713
1714             if let Some(ar) = self.ar(target) {
1715                 let ranlib = format!("{} s", ar.display());
1716                 cargo
1717                     .env(format!("AR_{}", triple_underscored), ar)
1718                     .env(format!("RANLIB_{}", triple_underscored), ranlib);
1719             }
1720
1721             if let Ok(cxx) = self.cxx(target) {
1722                 let cxx = ccacheify(&cxx);
1723                 let cxxflags = self.cflags(target, GitRepo::Rustc, CLang::Cxx).join(" ");
1724                 cargo
1725                     .env(format!("CXX_{}", triple_underscored), &cxx)
1726                     .env(format!("CXXFLAGS_{}", triple_underscored), cxxflags);
1727             }
1728         }
1729
1730         if mode == Mode::Std && self.config.extended && compiler.is_final_stage(self) {
1731             rustflags.arg("-Zsave-analysis");
1732             cargo.env(
1733                 "RUST_SAVE_ANALYSIS_CONFIG",
1734                 "{\"output_file\": null,\"full_docs\": false,\
1735                        \"pub_only\": true,\"reachable_only\": false,\
1736                        \"distro_crate\": true,\"signatures\": false,\"borrow_data\": false}",
1737             );
1738         }
1739
1740         // If Control Flow Guard is enabled, pass the `control-flow-guard` flag to rustc
1741         // when compiling the standard library, since this might be linked into the final outputs
1742         // produced by rustc. Since this mitigation is only available on Windows, only enable it
1743         // for the standard library in case the compiler is run on a non-Windows platform.
1744         // This is not needed for stage 0 artifacts because these will only be used for building
1745         // the stage 1 compiler.
1746         if cfg!(windows)
1747             && mode == Mode::Std
1748             && self.config.control_flow_guard
1749             && compiler.stage >= 1
1750         {
1751             rustflags.arg("-Ccontrol-flow-guard");
1752         }
1753
1754         // For `cargo doc` invocations, make rustdoc print the Rust version into the docs
1755         // This replaces spaces with newlines because RUSTDOCFLAGS does not
1756         // support arguments with regular spaces. Hopefully someday Cargo will
1757         // have space support.
1758         let rust_version = self.rust_version().replace(' ', "\n");
1759         rustdocflags.arg("--crate-version").arg(&rust_version);
1760
1761         // Environment variables *required* throughout the build
1762         //
1763         // FIXME: should update code to not require this env var
1764         cargo.env("CFG_COMPILER_HOST_TRIPLE", target.triple);
1765
1766         // Set this for all builds to make sure doc builds also get it.
1767         cargo.env("CFG_RELEASE_CHANNEL", &self.config.channel);
1768
1769         // This one's a bit tricky. As of the time of this writing the compiler
1770         // links to the `winapi` crate on crates.io. This crate provides raw
1771         // bindings to Windows system functions, sort of like libc does for
1772         // Unix. This crate also, however, provides "import libraries" for the
1773         // MinGW targets. There's an import library per dll in the windows
1774         // distribution which is what's linked to. These custom import libraries
1775         // are used because the winapi crate can reference Windows functions not
1776         // present in the MinGW import libraries.
1777         //
1778         // For example MinGW may ship libdbghelp.a, but it may not have
1779         // references to all the functions in the dbghelp dll. Instead the
1780         // custom import library for dbghelp in the winapi crates has all this
1781         // information.
1782         //
1783         // Unfortunately for us though the import libraries are linked by
1784         // default via `-ldylib=winapi_foo`. That is, they're linked with the
1785         // `dylib` type with a `winapi_` prefix (so the winapi ones don't
1786         // conflict with the system MinGW ones). This consequently means that
1787         // the binaries we ship of things like rustc_codegen_llvm (aka the rustc_codegen_llvm
1788         // DLL) when linked against *again*, for example with procedural macros
1789         // or plugins, will trigger the propagation logic of `-ldylib`, passing
1790         // `-lwinapi_foo` to the linker again. This isn't actually available in
1791         // our distribution, however, so the link fails.
1792         //
1793         // To solve this problem we tell winapi to not use its bundled import
1794         // libraries. This means that it will link to the system MinGW import
1795         // libraries by default, and the `-ldylib=foo` directives will still get
1796         // passed to the final linker, but they'll look like `-lfoo` which can
1797         // be resolved because MinGW has the import library. The downside is we
1798         // don't get newer functions from Windows, but we don't use any of them
1799         // anyway.
1800         if !mode.is_tool() {
1801             cargo.env("WINAPI_NO_BUNDLED_LIBRARIES", "1");
1802         }
1803
1804         for _ in 0..self.verbosity {
1805             cargo.arg("-v");
1806         }
1807
1808         match (mode, self.config.rust_codegen_units_std, self.config.rust_codegen_units) {
1809             (Mode::Std, Some(n), _) | (_, _, Some(n)) => {
1810                 cargo.env(profile_var("CODEGEN_UNITS"), n.to_string());
1811             }
1812             _ => {
1813                 // Don't set anything
1814             }
1815         }
1816
1817         if self.config.rust_optimize {
1818             // FIXME: cargo bench/install do not accept `--release`
1819             if cmd != "bench" && cmd != "install" {
1820                 cargo.arg("--release");
1821             }
1822         }
1823
1824         if self.config.locked_deps {
1825             cargo.arg("--locked");
1826         }
1827         if self.config.vendor || self.is_sudo {
1828             cargo.arg("--frozen");
1829         }
1830
1831         // Try to use a sysroot-relative bindir, in case it was configured absolutely.
1832         cargo.env("RUSTC_INSTALL_BINDIR", self.config.bindir_relative());
1833
1834         self.ci_env.force_coloring_in_ci(&mut cargo);
1835
1836         // When we build Rust dylibs they're all intended for intermediate
1837         // usage, so make sure we pass the -Cprefer-dynamic flag instead of
1838         // linking all deps statically into the dylib.
1839         if matches!(mode, Mode::Std | Mode::Rustc) {
1840             rustflags.arg("-Cprefer-dynamic");
1841         }
1842
1843         // When building incrementally we default to a lower ThinLTO import limit
1844         // (unless explicitly specified otherwise). This will produce a somewhat
1845         // slower code but give way better compile times.
1846         {
1847             let limit = match self.config.rust_thin_lto_import_instr_limit {
1848                 Some(limit) => Some(limit),
1849                 None if self.config.incremental => Some(10),
1850                 _ => None,
1851             };
1852
1853             if let Some(limit) = limit {
1854                 rustflags.arg(&format!("-Cllvm-args=-import-instr-limit={}", limit));
1855             }
1856         }
1857
1858         Cargo { command: cargo, rustflags, rustdocflags }
1859     }
1860
1861     /// Ensure that a given step is built, returning its output. This will
1862     /// cache the step, so it is safe (and good!) to call this as often as
1863     /// needed to ensure that all dependencies are built.
1864     pub fn ensure<S: Step>(&'a self, step: S) -> S::Output {
1865         {
1866             let mut stack = self.stack.borrow_mut();
1867             for stack_step in stack.iter() {
1868                 // should skip
1869                 if stack_step.downcast_ref::<S>().map_or(true, |stack_step| *stack_step != step) {
1870                     continue;
1871                 }
1872                 let mut out = String::new();
1873                 out += &format!("\n\nCycle in build detected when adding {:?}\n", step);
1874                 for el in stack.iter().rev() {
1875                     out += &format!("\t{:?}\n", el);
1876                 }
1877                 panic!("{}", out);
1878             }
1879             if let Some(out) = self.cache.get(&step) {
1880                 self.verbose_than(1, &format!("{}c {:?}", "  ".repeat(stack.len()), step));
1881
1882                 return out;
1883             }
1884             self.verbose_than(1, &format!("{}> {:?}", "  ".repeat(stack.len()), step));
1885             stack.push(Box::new(step.clone()));
1886         }
1887
1888         #[cfg(feature = "build-metrics")]
1889         self.metrics.enter_step(&step);
1890
1891         let (out, dur) = {
1892             let start = Instant::now();
1893             let zero = Duration::new(0, 0);
1894             let parent = self.time_spent_on_dependencies.replace(zero);
1895             let out = step.clone().run(self);
1896             let dur = start.elapsed();
1897             let deps = self.time_spent_on_dependencies.replace(parent + dur);
1898             (out, dur - deps)
1899         };
1900
1901         if self.config.print_step_timings && !self.config.dry_run() {
1902             let step_string = format!("{:?}", step);
1903             let brace_index = step_string.find("{").unwrap_or(0);
1904             let type_string = type_name::<S>();
1905             println!(
1906                 "[TIMING] {} {} -- {}.{:03}",
1907                 &type_string.strip_prefix("bootstrap::").unwrap_or(type_string),
1908                 &step_string[brace_index..],
1909                 dur.as_secs(),
1910                 dur.subsec_millis()
1911             );
1912         }
1913
1914         #[cfg(feature = "build-metrics")]
1915         self.metrics.exit_step();
1916
1917         {
1918             let mut stack = self.stack.borrow_mut();
1919             let cur_step = stack.pop().expect("step stack empty");
1920             assert_eq!(cur_step.downcast_ref(), Some(&step));
1921         }
1922         self.verbose_than(1, &format!("{}< {:?}", "  ".repeat(self.stack.borrow().len()), step));
1923         self.cache.put(step, out.clone());
1924         out
1925     }
1926
1927     /// Ensure that a given step is built *only if it's supposed to be built by default*, returning
1928     /// its output. This will cache the step, so it's safe (and good!) to call this as often as
1929     /// needed to ensure that all dependencies are build.
1930     pub(crate) fn ensure_if_default<T, S: Step<Output = Option<T>>>(
1931         &'a self,
1932         step: S,
1933         kind: Kind,
1934     ) -> S::Output {
1935         let desc = StepDescription::from::<S>(kind);
1936         let should_run = (desc.should_run)(ShouldRun::new(self, desc.kind));
1937
1938         // Avoid running steps contained in --exclude
1939         for pathset in &should_run.paths {
1940             if desc.is_excluded(self, pathset) {
1941                 return None;
1942             }
1943         }
1944
1945         // Only execute if it's supposed to run as default
1946         if desc.default && should_run.is_really_default() { self.ensure(step) } else { None }
1947     }
1948
1949     /// Checks if any of the "should_run" paths is in the `Builder` paths.
1950     pub(crate) fn was_invoked_explicitly<S: Step>(&'a self, kind: Kind) -> bool {
1951         let desc = StepDescription::from::<S>(kind);
1952         let should_run = (desc.should_run)(ShouldRun::new(self, desc.kind));
1953
1954         for path in &self.paths {
1955             if should_run.paths.iter().any(|s| s.has(path, Some(desc.kind)))
1956                 && !desc.is_excluded(
1957                     self,
1958                     &PathSet::Suite(TaskPath { path: path.clone(), kind: Some(desc.kind) }),
1959                 )
1960             {
1961                 return true;
1962             }
1963         }
1964
1965         false
1966     }
1967
1968     pub(crate) fn maybe_open_in_browser<S: Step>(&self, path: impl AsRef<Path>) {
1969         if self.was_invoked_explicitly::<S>(Kind::Doc) {
1970             self.open_in_browser(path);
1971         }
1972     }
1973
1974     pub(crate) fn open_in_browser(&self, path: impl AsRef<Path>) {
1975         if self.config.dry_run() || !self.config.cmd.open() {
1976             return;
1977         }
1978
1979         let path = path.as_ref();
1980         self.info(&format!("Opening doc {}", path.display()));
1981         if let Err(err) = opener::open(path) {
1982             self.info(&format!("{}\n", err));
1983         }
1984     }
1985 }
1986
1987 #[cfg(test)]
1988 mod tests;
1989
1990 #[derive(Debug, Clone)]
1991 struct Rustflags(String, TargetSelection);
1992
1993 impl Rustflags {
1994     fn new(target: TargetSelection) -> Rustflags {
1995         let mut ret = Rustflags(String::new(), target);
1996         ret.propagate_cargo_env("RUSTFLAGS");
1997         ret
1998     }
1999
2000     /// By default, cargo will pick up on various variables in the environment. However, bootstrap
2001     /// reuses those variables to pass additional flags to rustdoc, so by default they get overridden.
2002     /// Explicitly add back any previous value in the environment.
2003     ///
2004     /// `prefix` is usually `RUSTFLAGS` or `RUSTDOCFLAGS`.
2005     fn propagate_cargo_env(&mut self, prefix: &str) {
2006         // Inherit `RUSTFLAGS` by default ...
2007         self.env(prefix);
2008
2009         // ... and also handle target-specific env RUSTFLAGS if they're configured.
2010         let target_specific = format!("CARGO_TARGET_{}_{}", crate::envify(&self.1.triple), prefix);
2011         self.env(&target_specific);
2012     }
2013
2014     fn env(&mut self, env: &str) {
2015         if let Ok(s) = env::var(env) {
2016             for part in s.split(' ') {
2017                 self.arg(part);
2018             }
2019         }
2020     }
2021
2022     fn arg(&mut self, arg: &str) -> &mut Self {
2023         assert_eq!(arg.split(' ').count(), 1);
2024         if !self.0.is_empty() {
2025             self.0.push(' ');
2026         }
2027         self.0.push_str(arg);
2028         self
2029     }
2030 }
2031
2032 #[derive(Debug)]
2033 pub struct Cargo {
2034     command: Command,
2035     rustflags: Rustflags,
2036     rustdocflags: Rustflags,
2037 }
2038
2039 impl Cargo {
2040     pub fn rustdocflag(&mut self, arg: &str) -> &mut Cargo {
2041         self.rustdocflags.arg(arg);
2042         self
2043     }
2044     pub fn rustflag(&mut self, arg: &str) -> &mut Cargo {
2045         self.rustflags.arg(arg);
2046         self
2047     }
2048
2049     pub fn arg(&mut self, arg: impl AsRef<OsStr>) -> &mut Cargo {
2050         self.command.arg(arg.as_ref());
2051         self
2052     }
2053
2054     pub fn args<I, S>(&mut self, args: I) -> &mut Cargo
2055     where
2056         I: IntoIterator<Item = S>,
2057         S: AsRef<OsStr>,
2058     {
2059         for arg in args {
2060             self.arg(arg.as_ref());
2061         }
2062         self
2063     }
2064
2065     pub fn env(&mut self, key: impl AsRef<OsStr>, value: impl AsRef<OsStr>) -> &mut Cargo {
2066         // These are managed through rustflag/rustdocflag interfaces.
2067         assert_ne!(key.as_ref(), "RUSTFLAGS");
2068         assert_ne!(key.as_ref(), "RUSTDOCFLAGS");
2069         self.command.env(key.as_ref(), value.as_ref());
2070         self
2071     }
2072
2073     pub fn add_rustc_lib_path(&mut self, builder: &Builder<'_>, compiler: Compiler) {
2074         builder.add_rustc_lib_path(compiler, &mut self.command);
2075     }
2076
2077     pub fn current_dir(&mut self, dir: &Path) -> &mut Cargo {
2078         self.command.current_dir(dir);
2079         self
2080     }
2081 }
2082
2083 impl From<Cargo> for Command {
2084     fn from(mut cargo: Cargo) -> Command {
2085         let rustflags = &cargo.rustflags.0;
2086         if !rustflags.is_empty() {
2087             cargo.command.env("RUSTFLAGS", rustflags);
2088         }
2089
2090         let rustdocflags = &cargo.rustdocflags.0;
2091         if !rustdocflags.is_empty() {
2092             cargo.command.env("RUSTDOCFLAGS", rustdocflags);
2093         }
2094
2095         cargo.command
2096     }
2097 }