]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/builder.rs
Rollup merge of #104931 - Swatinem:async-pretty, r=eholk
[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::Linkcheck,
648                 test::TierCheck,
649                 test::ReplacePlaceholderTest,
650                 test::Cargotest,
651                 test::Cargo,
652                 test::RustAnalyzer,
653                 test::ErrorIndex,
654                 test::Distcheck,
655                 test::RunMakeFullDeps,
656                 test::Nomicon,
657                 test::Reference,
658                 test::RustdocBook,
659                 test::RustByExample,
660                 test::TheBook,
661                 test::UnstableBook,
662                 test::RustcBook,
663                 test::LintDocs,
664                 test::RustcGuide,
665                 test::EmbeddedBook,
666                 test::EditionGuide,
667                 test::Rustfmt,
668                 test::Miri,
669                 test::Clippy,
670                 test::RustDemangler,
671                 test::CompiletestTest,
672                 test::RustdocJSStd,
673                 test::RustdocJSNotStd,
674                 test::RustdocGUI,
675                 test::RustdocTheme,
676                 test::RustdocUi,
677                 test::RustdocJson,
678                 test::HtmlCheck,
679                 // Run bootstrap close to the end as it's unlikely to fail
680                 test::Bootstrap,
681                 // Run run-make last, since these won't pass without make on Windows
682                 test::RunMake,
683             ),
684             Kind::Bench => describe!(test::Crate, test::CrateLibrustc),
685             Kind::Doc => describe!(
686                 doc::UnstableBook,
687                 doc::UnstableBookGen,
688                 doc::TheBook,
689                 doc::Standalone,
690                 doc::Std,
691                 doc::Rustc,
692                 doc::Rustdoc,
693                 doc::Rustfmt,
694                 doc::ErrorIndex,
695                 doc::Nomicon,
696                 doc::Reference,
697                 doc::RustdocBook,
698                 doc::RustByExample,
699                 doc::RustcBook,
700                 doc::CargoBook,
701                 doc::Clippy,
702                 doc::ClippyBook,
703                 doc::Miri,
704                 doc::EmbeddedBook,
705                 doc::EditionGuide,
706                 doc::StyleGuide,
707             ),
708             Kind::Dist => describe!(
709                 dist::Docs,
710                 dist::RustcDocs,
711                 dist::JsonDocs,
712                 dist::Mingw,
713                 dist::Rustc,
714                 dist::Std,
715                 dist::RustcDev,
716                 dist::Analysis,
717                 dist::Src,
718                 dist::Cargo,
719                 dist::Rls,
720                 dist::RustAnalyzer,
721                 dist::Rustfmt,
722                 dist::RustDemangler,
723                 dist::Clippy,
724                 dist::Miri,
725                 dist::LlvmTools,
726                 dist::RustDev,
727                 dist::Bootstrap,
728                 dist::Extended,
729                 // It seems that PlainSourceTarball somehow changes how some of the tools
730                 // perceive their dependencies (see #93033) which would invalidate fingerprints
731                 // and force us to rebuild tools after vendoring dependencies.
732                 // To work around this, create the Tarball after building all the tools.
733                 dist::PlainSourceTarball,
734                 dist::BuildManifest,
735                 dist::ReproducibleArtifacts,
736             ),
737             Kind::Install => describe!(
738                 install::Docs,
739                 install::Std,
740                 install::Cargo,
741                 install::RustAnalyzer,
742                 install::Rustfmt,
743                 install::RustDemangler,
744                 install::Clippy,
745                 install::Miri,
746                 install::Analysis,
747                 install::Src,
748                 install::Rustc
749             ),
750             Kind::Run => describe!(
751                 run::ExpandYamlAnchors,
752                 run::BuildManifest,
753                 run::BumpStage0,
754                 run::ReplaceVersionPlaceholder,
755                 run::Miri,
756             ),
757             // These commands either don't use paths, or they're special-cased in Build::build()
758             Kind::Clean | Kind::Format | Kind::Setup => vec![],
759         }
760     }
761
762     pub fn get_help(build: &Build, kind: Kind) -> Option<String> {
763         let step_descriptions = Builder::get_step_descriptions(kind);
764         if step_descriptions.is_empty() {
765             return None;
766         }
767
768         let builder = Self::new_internal(build, kind, vec![]);
769         let builder = &builder;
770         // The "build" kind here is just a placeholder, it will be replaced with something else in
771         // the following statement.
772         let mut should_run = ShouldRun::new(builder, Kind::Build);
773         for desc in step_descriptions {
774             should_run.kind = desc.kind;
775             should_run = (desc.should_run)(should_run);
776         }
777         let mut help = String::from("Available paths:\n");
778         let mut add_path = |path: &Path| {
779             t!(write!(help, "    ./x.py {} {}\n", kind.as_str(), path.display()));
780         };
781         for pathset in should_run.paths {
782             match pathset {
783                 PathSet::Set(set) => {
784                     for path in set {
785                         add_path(&path.path);
786                     }
787                 }
788                 PathSet::Suite(path) => {
789                     add_path(&path.path.join("..."));
790                 }
791             }
792         }
793         Some(help)
794     }
795
796     fn new_internal(build: &Build, kind: Kind, paths: Vec<PathBuf>) -> Builder<'_> {
797         Builder {
798             build,
799             top_stage: build.config.stage,
800             kind,
801             cache: Cache::new(),
802             stack: RefCell::new(Vec::new()),
803             time_spent_on_dependencies: Cell::new(Duration::new(0, 0)),
804             paths,
805         }
806     }
807
808     pub fn new(build: &Build) -> Builder<'_> {
809         let (kind, paths) = match build.config.cmd {
810             Subcommand::Build { ref paths } => (Kind::Build, &paths[..]),
811             Subcommand::Check { ref paths } => (Kind::Check, &paths[..]),
812             Subcommand::Clippy { ref paths, .. } => (Kind::Clippy, &paths[..]),
813             Subcommand::Fix { ref paths } => (Kind::Fix, &paths[..]),
814             Subcommand::Doc { ref paths, .. } => (Kind::Doc, &paths[..]),
815             Subcommand::Test { ref paths, .. } => (Kind::Test, &paths[..]),
816             Subcommand::Bench { ref paths, .. } => (Kind::Bench, &paths[..]),
817             Subcommand::Dist { ref paths } => (Kind::Dist, &paths[..]),
818             Subcommand::Install { ref paths } => (Kind::Install, &paths[..]),
819             Subcommand::Run { ref paths, .. } => (Kind::Run, &paths[..]),
820             Subcommand::Format { .. } => (Kind::Format, &[][..]),
821             Subcommand::Clean { .. } | Subcommand::Setup { .. } => {
822                 panic!()
823             }
824         };
825
826         Self::new_internal(build, kind, paths.to_owned())
827     }
828
829     pub fn execute_cli(&self) {
830         self.run_step_descriptions(&Builder::get_step_descriptions(self.kind), &self.paths);
831     }
832
833     pub fn default_doc(&self, paths: &[PathBuf]) {
834         self.run_step_descriptions(&Builder::get_step_descriptions(Kind::Doc), paths);
835     }
836
837     /// NOTE: keep this in sync with `rustdoc::clean::utils::doc_rust_lang_org_channel`, or tests will fail on beta/stable.
838     pub fn doc_rust_lang_org_channel(&self) -> String {
839         let channel = match &*self.config.channel {
840             "stable" => &self.version,
841             "beta" => "beta",
842             "nightly" | "dev" => "nightly",
843             // custom build of rustdoc maybe? link to the latest stable docs just in case
844             _ => "stable",
845         };
846         "https://doc.rust-lang.org/".to_owned() + channel
847     }
848
849     fn run_step_descriptions(&self, v: &[StepDescription], paths: &[PathBuf]) {
850         StepDescription::run(v, self, paths);
851     }
852
853     /// Obtain a compiler at a given stage and for a given host. Explicitly does
854     /// not take `Compiler` since all `Compiler` instances are meant to be
855     /// obtained through this function, since it ensures that they are valid
856     /// (i.e., built and assembled).
857     pub fn compiler(&self, stage: u32, host: TargetSelection) -> Compiler {
858         self.ensure(compile::Assemble { target_compiler: Compiler { stage, host } })
859     }
860
861     /// Similar to `compiler`, except handles the full-bootstrap option to
862     /// silently use the stage1 compiler instead of a stage2 compiler if one is
863     /// requested.
864     ///
865     /// Note that this does *not* have the side effect of creating
866     /// `compiler(stage, host)`, unlike `compiler` above which does have such
867     /// a side effect. The returned compiler here can only be used to compile
868     /// new artifacts, it can't be used to rely on the presence of a particular
869     /// sysroot.
870     ///
871     /// See `force_use_stage1` for documentation on what each argument is.
872     pub fn compiler_for(
873         &self,
874         stage: u32,
875         host: TargetSelection,
876         target: TargetSelection,
877     ) -> Compiler {
878         if self.build.force_use_stage1(Compiler { stage, host }, target) {
879             self.compiler(1, self.config.build)
880         } else {
881             self.compiler(stage, host)
882         }
883     }
884
885     pub fn sysroot(&self, compiler: Compiler) -> Interned<PathBuf> {
886         self.ensure(compile::Sysroot { compiler })
887     }
888
889     /// Returns the libdir where the standard library and other artifacts are
890     /// found for a compiler's sysroot.
891     pub fn sysroot_libdir(&self, compiler: Compiler, target: TargetSelection) -> Interned<PathBuf> {
892         #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
893         struct Libdir {
894             compiler: Compiler,
895             target: TargetSelection,
896         }
897         impl Step for Libdir {
898             type Output = Interned<PathBuf>;
899
900             fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
901                 run.never()
902             }
903
904             fn run(self, builder: &Builder<'_>) -> Interned<PathBuf> {
905                 let lib = builder.sysroot_libdir_relative(self.compiler);
906                 let sysroot = builder
907                     .sysroot(self.compiler)
908                     .join(lib)
909                     .join("rustlib")
910                     .join(self.target.triple)
911                     .join("lib");
912                 // Avoid deleting the rustlib/ directory we just copied
913                 // (in `impl Step for Sysroot`).
914                 if !builder.download_rustc() {
915                     let _ = fs::remove_dir_all(&sysroot);
916                     t!(fs::create_dir_all(&sysroot));
917                 }
918                 INTERNER.intern_path(sysroot)
919             }
920         }
921         self.ensure(Libdir { compiler, target })
922     }
923
924     pub fn sysroot_codegen_backends(&self, compiler: Compiler) -> PathBuf {
925         self.sysroot_libdir(compiler, compiler.host).with_file_name("codegen-backends")
926     }
927
928     /// Returns the compiler's libdir where it stores the dynamic libraries that
929     /// it itself links against.
930     ///
931     /// For example this returns `<sysroot>/lib` on Unix and `<sysroot>/bin` on
932     /// Windows.
933     pub fn rustc_libdir(&self, compiler: Compiler) -> PathBuf {
934         if compiler.is_snapshot(self) {
935             self.rustc_snapshot_libdir()
936         } else {
937             match self.config.libdir_relative() {
938                 Some(relative_libdir) if compiler.stage >= 1 => {
939                     self.sysroot(compiler).join(relative_libdir)
940                 }
941                 _ => self.sysroot(compiler).join(libdir(compiler.host)),
942             }
943         }
944     }
945
946     /// Returns the compiler's relative libdir where it stores the dynamic libraries that
947     /// it itself links against.
948     ///
949     /// For example this returns `lib` on Unix and `bin` on
950     /// Windows.
951     pub fn libdir_relative(&self, compiler: Compiler) -> &Path {
952         if compiler.is_snapshot(self) {
953             libdir(self.config.build).as_ref()
954         } else {
955             match self.config.libdir_relative() {
956                 Some(relative_libdir) if compiler.stage >= 1 => relative_libdir,
957                 _ => libdir(compiler.host).as_ref(),
958             }
959         }
960     }
961
962     /// Returns the compiler's relative libdir where the standard library and other artifacts are
963     /// found for a compiler's sysroot.
964     ///
965     /// For example this returns `lib` on Unix and Windows.
966     pub fn sysroot_libdir_relative(&self, compiler: Compiler) -> &Path {
967         match self.config.libdir_relative() {
968             Some(relative_libdir) if compiler.stage >= 1 => relative_libdir,
969             _ if compiler.stage == 0 => &self.build.initial_libdir,
970             _ => Path::new("lib"),
971         }
972     }
973
974     pub fn rustc_lib_paths(&self, compiler: Compiler) -> Vec<PathBuf> {
975         let mut dylib_dirs = vec![self.rustc_libdir(compiler)];
976
977         // Ensure that the downloaded LLVM libraries can be found.
978         if self.config.llvm_from_ci {
979             let ci_llvm_lib = self.out.join(&*compiler.host.triple).join("ci-llvm").join("lib");
980             dylib_dirs.push(ci_llvm_lib);
981         }
982
983         dylib_dirs
984     }
985
986     /// Adds the compiler's directory of dynamic libraries to `cmd`'s dynamic
987     /// library lookup path.
988     pub fn add_rustc_lib_path(&self, compiler: Compiler, cmd: &mut Command) {
989         // Windows doesn't need dylib path munging because the dlls for the
990         // compiler live next to the compiler and the system will find them
991         // automatically.
992         if cfg!(windows) {
993             return;
994         }
995
996         add_dylib_path(self.rustc_lib_paths(compiler), cmd);
997     }
998
999     /// Gets a path to the compiler specified.
1000     pub fn rustc(&self, compiler: Compiler) -> PathBuf {
1001         if compiler.is_snapshot(self) {
1002             self.initial_rustc.clone()
1003         } else {
1004             self.sysroot(compiler).join("bin").join(exe("rustc", compiler.host))
1005         }
1006     }
1007
1008     /// Gets the paths to all of the compiler's codegen backends.
1009     fn codegen_backends(&self, compiler: Compiler) -> impl Iterator<Item = PathBuf> {
1010         fs::read_dir(self.sysroot_codegen_backends(compiler))
1011             .into_iter()
1012             .flatten()
1013             .filter_map(Result::ok)
1014             .map(|entry| entry.path())
1015     }
1016
1017     pub fn rustdoc(&self, compiler: Compiler) -> PathBuf {
1018         self.ensure(tool::Rustdoc { compiler })
1019     }
1020
1021     pub fn rustdoc_cmd(&self, compiler: Compiler) -> Command {
1022         let mut cmd = Command::new(&self.bootstrap_out.join("rustdoc"));
1023         cmd.env("RUSTC_STAGE", compiler.stage.to_string())
1024             .env("RUSTC_SYSROOT", self.sysroot(compiler))
1025             // Note that this is *not* the sysroot_libdir because rustdoc must be linked
1026             // equivalently to rustc.
1027             .env("RUSTDOC_LIBDIR", self.rustc_libdir(compiler))
1028             .env("CFG_RELEASE_CHANNEL", &self.config.channel)
1029             .env("RUSTDOC_REAL", self.rustdoc(compiler))
1030             .env("RUSTC_BOOTSTRAP", "1");
1031
1032         cmd.arg("-Wrustdoc::invalid_codeblock_attributes");
1033
1034         if self.config.deny_warnings {
1035             cmd.arg("-Dwarnings");
1036         }
1037         cmd.arg("-Znormalize-docs");
1038
1039         // Remove make-related flags that can cause jobserver problems.
1040         cmd.env_remove("MAKEFLAGS");
1041         cmd.env_remove("MFLAGS");
1042
1043         if let Some(linker) = self.linker(compiler.host) {
1044             cmd.env("RUSTDOC_LINKER", linker);
1045         }
1046         if self.is_fuse_ld_lld(compiler.host) {
1047             cmd.env("RUSTDOC_FUSE_LD_LLD", "1");
1048         }
1049         cmd
1050     }
1051
1052     /// Return the path to `llvm-config` for the target, if it exists.
1053     ///
1054     /// Note that this returns `None` if LLVM is disabled, or if we're in a
1055     /// check build or dry-run, where there's no need to build all of LLVM.
1056     fn llvm_config(&self, target: TargetSelection) -> Option<PathBuf> {
1057         if self.config.llvm_enabled() && self.kind != Kind::Check && !self.config.dry_run() {
1058             let llvm_config = self.ensure(native::Llvm { target });
1059             if llvm_config.is_file() {
1060                 return Some(llvm_config);
1061             }
1062         }
1063         None
1064     }
1065
1066     /// Prepares an invocation of `cargo` to be run.
1067     ///
1068     /// This will create a `Command` that represents a pending execution of
1069     /// Cargo. This cargo will be configured to use `compiler` as the actual
1070     /// rustc compiler, its output will be scoped by `mode`'s output directory,
1071     /// it will pass the `--target` flag for the specified `target`, and will be
1072     /// executing the Cargo command `cmd`.
1073     pub fn cargo(
1074         &self,
1075         compiler: Compiler,
1076         mode: Mode,
1077         source_type: SourceType,
1078         target: TargetSelection,
1079         cmd: &str,
1080     ) -> Cargo {
1081         let mut cargo = Command::new(&self.initial_cargo);
1082         let out_dir = self.stage_out(compiler, mode);
1083         // Run cargo from the source root so it can find .cargo/config.
1084         // This matters when using vendoring and the working directory is outside the repository.
1085         cargo.current_dir(&self.src);
1086
1087         // Codegen backends are not yet tracked by -Zbinary-dep-depinfo,
1088         // so we need to explicitly clear out if they've been updated.
1089         for backend in self.codegen_backends(compiler) {
1090             self.clear_if_dirty(&out_dir, &backend);
1091         }
1092
1093         if cmd == "doc" || cmd == "rustdoc" {
1094             let my_out = match mode {
1095                 // This is the intended out directory for compiler documentation.
1096                 Mode::Rustc | Mode::ToolRustc => self.compiler_doc_out(target),
1097                 Mode::Std => {
1098                     if self.config.cmd.json() {
1099                         out_dir.join(target.triple).join("json-doc")
1100                     } else {
1101                         out_dir.join(target.triple).join("doc")
1102                     }
1103                 }
1104                 _ => panic!("doc mode {:?} not expected", mode),
1105             };
1106             let rustdoc = self.rustdoc(compiler);
1107             self.clear_if_dirty(&my_out, &rustdoc);
1108         }
1109
1110         cargo.env("CARGO_TARGET_DIR", &out_dir).arg(cmd);
1111
1112         let profile_var = |name: &str| {
1113             let profile = if self.config.rust_optimize { "RELEASE" } else { "DEV" };
1114             format!("CARGO_PROFILE_{}_{}", profile, name)
1115         };
1116
1117         // See comment in rustc_llvm/build.rs for why this is necessary, largely llvm-config
1118         // needs to not accidentally link to libLLVM in stage0/lib.
1119         cargo.env("REAL_LIBRARY_PATH_VAR", &util::dylib_path_var());
1120         if let Some(e) = env::var_os(util::dylib_path_var()) {
1121             cargo.env("REAL_LIBRARY_PATH", e);
1122         }
1123
1124         // Found with `rg "init_env_logger\("`. If anyone uses `init_env_logger`
1125         // from out of tree it shouldn't matter, since x.py is only used for
1126         // building in-tree.
1127         let color_logs = ["RUSTDOC_LOG_COLOR", "RUSTC_LOG_COLOR", "RUST_LOG_COLOR"];
1128         match self.build.config.color {
1129             Color::Always => {
1130                 cargo.arg("--color=always");
1131                 for log in &color_logs {
1132                     cargo.env(log, "always");
1133                 }
1134             }
1135             Color::Never => {
1136                 cargo.arg("--color=never");
1137                 for log in &color_logs {
1138                     cargo.env(log, "never");
1139                 }
1140             }
1141             Color::Auto => {} // nothing to do
1142         }
1143
1144         if cmd != "install" {
1145             cargo.arg("--target").arg(target.rustc_target_arg());
1146         } else {
1147             assert_eq!(target, compiler.host);
1148         }
1149
1150         // Set a flag for `check`/`clippy`/`fix`, so that certain build
1151         // scripts can do less work (i.e. not building/requiring LLVM).
1152         if cmd == "check" || cmd == "clippy" || cmd == "fix" {
1153             // If we've not yet built LLVM, or it's stale, then bust
1154             // the rustc_llvm cache. That will always work, even though it
1155             // may mean that on the next non-check build we'll need to rebuild
1156             // rustc_llvm. But if LLVM is stale, that'll be a tiny amount
1157             // of work comparatively, and we'd likely need to rebuild it anyway,
1158             // so that's okay.
1159             if crate::native::prebuilt_llvm_config(self, target).is_err() {
1160                 cargo.env("RUST_CHECK", "1");
1161             }
1162         }
1163
1164         let stage = if compiler.stage == 0 && self.local_rebuild {
1165             // Assume the local-rebuild rustc already has stage1 features.
1166             1
1167         } else {
1168             compiler.stage
1169         };
1170
1171         let mut rustflags = Rustflags::new(target);
1172         if stage != 0 {
1173             if let Ok(s) = env::var("CARGOFLAGS_NOT_BOOTSTRAP") {
1174                 cargo.args(s.split_whitespace());
1175             }
1176             rustflags.env("RUSTFLAGS_NOT_BOOTSTRAP");
1177         } else {
1178             if let Ok(s) = env::var("CARGOFLAGS_BOOTSTRAP") {
1179                 cargo.args(s.split_whitespace());
1180             }
1181             rustflags.env("RUSTFLAGS_BOOTSTRAP");
1182             if cmd == "clippy" {
1183                 // clippy overwrites sysroot if we pass it to cargo.
1184                 // Pass it directly to clippy instead.
1185                 // NOTE: this can't be fixed in clippy because we explicitly don't set `RUSTC`,
1186                 // so it has no way of knowing the sysroot.
1187                 rustflags.arg("--sysroot");
1188                 rustflags.arg(
1189                     self.sysroot(compiler)
1190                         .as_os_str()
1191                         .to_str()
1192                         .expect("sysroot must be valid UTF-8"),
1193                 );
1194                 // Only run clippy on a very limited subset of crates (in particular, not build scripts).
1195                 cargo.arg("-Zunstable-options");
1196                 // Explicitly does *not* set `--cfg=bootstrap`, since we're using a nightly clippy.
1197                 let host_version = Command::new("rustc").arg("--version").output().map_err(|_| ());
1198                 let output = host_version.and_then(|output| {
1199                     if output.status.success() {
1200                         Ok(output)
1201                     } else {
1202                         Err(())
1203                     }
1204                 }).unwrap_or_else(|_| {
1205                     eprintln!(
1206                         "error: `x.py clippy` requires a host `rustc` toolchain with the `clippy` component"
1207                     );
1208                     eprintln!("help: try `rustup component add clippy`");
1209                     crate::detail_exit(1);
1210                 });
1211                 if !t!(std::str::from_utf8(&output.stdout)).contains("nightly") {
1212                     rustflags.arg("--cfg=bootstrap");
1213                 }
1214             } else {
1215                 rustflags.arg("--cfg=bootstrap");
1216             }
1217         }
1218
1219         let use_new_symbol_mangling = match self.config.rust_new_symbol_mangling {
1220             Some(setting) => {
1221                 // If an explicit setting is given, use that
1222                 setting
1223             }
1224             None => {
1225                 if mode == Mode::Std {
1226                     // The standard library defaults to the legacy scheme
1227                     false
1228                 } else {
1229                     // The compiler and tools default to the new scheme
1230                     true
1231                 }
1232             }
1233         };
1234
1235         if use_new_symbol_mangling {
1236             rustflags.arg("-Csymbol-mangling-version=v0");
1237         } else {
1238             rustflags.arg("-Csymbol-mangling-version=legacy");
1239             rustflags.arg("-Zunstable-options");
1240         }
1241
1242         // Enable cfg checking of cargo features for everything but std and also enable cfg
1243         // checking of names and values.
1244         //
1245         // Note: `std`, `alloc` and `core` imports some dependencies by #[path] (like
1246         // backtrace, core_simd, std_float, ...), those dependencies have their own
1247         // features but cargo isn't involved in the #[path] process and so cannot pass the
1248         // complete list of features, so for that reason we don't enable checking of
1249         // features for std crates.
1250         cargo.arg(if mode != Mode::Std {
1251             "-Zcheck-cfg=names,values,output,features"
1252         } else {
1253             "-Zcheck-cfg=names,values,output"
1254         });
1255
1256         // Add extra cfg not defined in/by rustc
1257         //
1258         // Note: Altrough it would seems that "-Zunstable-options" to `rustflags` is useless as
1259         // cargo would implicitly add it, it was discover that sometimes bootstrap only use
1260         // `rustflags` without `cargo` making it required.
1261         rustflags.arg("-Zunstable-options");
1262         for (restricted_mode, name, values) in EXTRA_CHECK_CFGS {
1263             if *restricted_mode == None || *restricted_mode == Some(mode) {
1264                 // Creating a string of the values by concatenating each value:
1265                 // ',"tvos","watchos"' or '' (nothing) when there are no values
1266                 let values = match values {
1267                     Some(values) => values
1268                         .iter()
1269                         .map(|val| [",", "\"", val, "\""])
1270                         .flatten()
1271                         .collect::<String>(),
1272                     None => String::new(),
1273                 };
1274                 rustflags.arg(&format!("--check-cfg=values({name}{values})"));
1275             }
1276         }
1277
1278         // FIXME: It might be better to use the same value for both `RUSTFLAGS` and `RUSTDOCFLAGS`,
1279         // but this breaks CI. At the very least, stage0 `rustdoc` needs `--cfg bootstrap`. See
1280         // #71458.
1281         let mut rustdocflags = rustflags.clone();
1282         rustdocflags.propagate_cargo_env("RUSTDOCFLAGS");
1283         if stage == 0 {
1284             rustdocflags.env("RUSTDOCFLAGS_BOOTSTRAP");
1285         } else {
1286             rustdocflags.env("RUSTDOCFLAGS_NOT_BOOTSTRAP");
1287         }
1288
1289         if let Ok(s) = env::var("CARGOFLAGS") {
1290             cargo.args(s.split_whitespace());
1291         }
1292
1293         match mode {
1294             Mode::Std | Mode::ToolBootstrap | Mode::ToolStd => {}
1295             Mode::Rustc | Mode::Codegen | Mode::ToolRustc => {
1296                 // Build proc macros both for the host and the target
1297                 if target != compiler.host && cmd != "check" {
1298                     cargo.arg("-Zdual-proc-macros");
1299                     rustflags.arg("-Zdual-proc-macros");
1300                 }
1301             }
1302         }
1303
1304         // This tells Cargo (and in turn, rustc) to output more complete
1305         // dependency information.  Most importantly for rustbuild, this
1306         // includes sysroot artifacts, like libstd, which means that we don't
1307         // need to track those in rustbuild (an error prone process!). This
1308         // feature is currently unstable as there may be some bugs and such, but
1309         // it represents a big improvement in rustbuild's reliability on
1310         // rebuilds, so we're using it here.
1311         //
1312         // For some additional context, see #63470 (the PR originally adding
1313         // this), as well as #63012 which is the tracking issue for this
1314         // feature on the rustc side.
1315         cargo.arg("-Zbinary-dep-depinfo");
1316         match mode {
1317             Mode::ToolBootstrap => {
1318                 // Restrict the allowed features to those passed by rustbuild, so we don't depend on nightly accidentally.
1319                 rustflags.arg("-Zallow-features=binary-dep-depinfo");
1320             }
1321             Mode::ToolStd => {
1322                 // Right now this is just compiletest and a few other tools that build on stable.
1323                 // Allow them to use `feature(test)`, but nothing else.
1324                 rustflags.arg("-Zallow-features=binary-dep-depinfo,test,proc_macro_internals,proc_macro_diagnostic,proc_macro_span");
1325             }
1326             Mode::Std | Mode::Rustc | Mode::Codegen | Mode::ToolRustc => {}
1327         }
1328
1329         cargo.arg("-j").arg(self.jobs().to_string());
1330         // Remove make-related flags to ensure Cargo can correctly set things up
1331         cargo.env_remove("MAKEFLAGS");
1332         cargo.env_remove("MFLAGS");
1333
1334         // FIXME: Temporary fix for https://github.com/rust-lang/cargo/issues/3005
1335         // Force cargo to output binaries with disambiguating hashes in the name
1336         let mut metadata = if compiler.stage == 0 {
1337             // Treat stage0 like a special channel, whether it's a normal prior-
1338             // release rustc or a local rebuild with the same version, so we
1339             // never mix these libraries by accident.
1340             "bootstrap".to_string()
1341         } else {
1342             self.config.channel.to_string()
1343         };
1344         // We want to make sure that none of the dependencies between
1345         // std/test/rustc unify with one another. This is done for weird linkage
1346         // reasons but the gist of the problem is that if librustc, libtest, and
1347         // libstd all depend on libc from crates.io (which they actually do) we
1348         // want to make sure they all get distinct versions. Things get really
1349         // weird if we try to unify all these dependencies right now, namely
1350         // around how many times the library is linked in dynamic libraries and
1351         // such. If rustc were a static executable or if we didn't ship dylibs
1352         // this wouldn't be a problem, but we do, so it is. This is in general
1353         // just here to make sure things build right. If you can remove this and
1354         // things still build right, please do!
1355         match mode {
1356             Mode::Std => metadata.push_str("std"),
1357             // When we're building rustc tools, they're built with a search path
1358             // that contains things built during the rustc build. For example,
1359             // bitflags is built during the rustc build, and is a dependency of
1360             // rustdoc as well. We're building rustdoc in a different target
1361             // directory, though, which means that Cargo will rebuild the
1362             // dependency. When we go on to build rustdoc, we'll look for
1363             // bitflags, and find two different copies: one built during the
1364             // rustc step and one that we just built. This isn't always a
1365             // problem, somehow -- not really clear why -- but we know that this
1366             // fixes things.
1367             Mode::ToolRustc => metadata.push_str("tool-rustc"),
1368             // Same for codegen backends.
1369             Mode::Codegen => metadata.push_str("codegen"),
1370             _ => {}
1371         }
1372         cargo.env("__CARGO_DEFAULT_LIB_METADATA", &metadata);
1373
1374         if cmd == "clippy" {
1375             rustflags.arg("-Zforce-unstable-if-unmarked");
1376         }
1377
1378         rustflags.arg("-Zmacro-backtrace");
1379
1380         let want_rustdoc = self.doc_tests != DocTests::No;
1381
1382         // We synthetically interpret a stage0 compiler used to build tools as a
1383         // "raw" compiler in that it's the exact snapshot we download. Normally
1384         // the stage0 build means it uses libraries build by the stage0
1385         // compiler, but for tools we just use the precompiled libraries that
1386         // we've downloaded
1387         let use_snapshot = mode == Mode::ToolBootstrap;
1388         assert!(!use_snapshot || stage == 0 || self.local_rebuild);
1389
1390         let maybe_sysroot = self.sysroot(compiler);
1391         let sysroot = if use_snapshot { self.rustc_snapshot_sysroot() } else { &maybe_sysroot };
1392         let libdir = self.rustc_libdir(compiler);
1393
1394         // Clear the output directory if the real rustc we're using has changed;
1395         // Cargo cannot detect this as it thinks rustc is bootstrap/debug/rustc.
1396         //
1397         // Avoid doing this during dry run as that usually means the relevant
1398         // compiler is not yet linked/copied properly.
1399         //
1400         // Only clear out the directory if we're compiling std; otherwise, we
1401         // should let Cargo take care of things for us (via depdep info)
1402         if !self.config.dry_run() && mode == Mode::Std && cmd == "build" {
1403             self.clear_if_dirty(&out_dir, &self.rustc(compiler));
1404         }
1405
1406         // Customize the compiler we're running. Specify the compiler to cargo
1407         // as our shim and then pass it some various options used to configure
1408         // how the actual compiler itself is called.
1409         //
1410         // These variables are primarily all read by
1411         // src/bootstrap/bin/{rustc.rs,rustdoc.rs}
1412         cargo
1413             .env("RUSTBUILD_NATIVE_DIR", self.native_dir(target))
1414             .env("RUSTC_REAL", self.rustc(compiler))
1415             .env("RUSTC_STAGE", stage.to_string())
1416             .env("RUSTC_SYSROOT", &sysroot)
1417             .env("RUSTC_LIBDIR", &libdir)
1418             .env("RUSTDOC", self.bootstrap_out.join("rustdoc"))
1419             .env(
1420                 "RUSTDOC_REAL",
1421                 if cmd == "doc" || cmd == "rustdoc" || (cmd == "test" && want_rustdoc) {
1422                     self.rustdoc(compiler)
1423                 } else {
1424                     PathBuf::from("/path/to/nowhere/rustdoc/not/required")
1425                 },
1426             )
1427             .env("RUSTC_ERROR_METADATA_DST", self.extended_error_dir())
1428             .env("RUSTC_BREAK_ON_ICE", "1");
1429         // Clippy support is a hack and uses the default `cargo-clippy` in path.
1430         // Don't override RUSTC so that the `cargo-clippy` in path will be run.
1431         if cmd != "clippy" {
1432             cargo.env("RUSTC", self.bootstrap_out.join("rustc"));
1433         }
1434
1435         // Dealing with rpath here is a little special, so let's go into some
1436         // detail. First off, `-rpath` is a linker option on Unix platforms
1437         // which adds to the runtime dynamic loader path when looking for
1438         // dynamic libraries. We use this by default on Unix platforms to ensure
1439         // that our nightlies behave the same on Windows, that is they work out
1440         // of the box. This can be disabled, of course, but basically that's why
1441         // we're gated on RUSTC_RPATH here.
1442         //
1443         // Ok, so the astute might be wondering "why isn't `-C rpath` used
1444         // here?" and that is indeed a good question to ask. This codegen
1445         // option is the compiler's current interface to generating an rpath.
1446         // Unfortunately it doesn't quite suffice for us. The flag currently
1447         // takes no value as an argument, so the compiler calculates what it
1448         // should pass to the linker as `-rpath`. This unfortunately is based on
1449         // the **compile time** directory structure which when building with
1450         // Cargo will be very different than the runtime directory structure.
1451         //
1452         // All that's a really long winded way of saying that if we use
1453         // `-Crpath` then the executables generated have the wrong rpath of
1454         // something like `$ORIGIN/deps` when in fact the way we distribute
1455         // rustc requires the rpath to be `$ORIGIN/../lib`.
1456         //
1457         // So, all in all, to set up the correct rpath we pass the linker
1458         // argument manually via `-C link-args=-Wl,-rpath,...`. Plus isn't it
1459         // fun to pass a flag to a tool to pass a flag to pass a flag to a tool
1460         // to change a flag in a binary?
1461         if self.config.rust_rpath && util::use_host_linker(target) {
1462             let rpath = if target.contains("apple") {
1463                 // Note that we need to take one extra step on macOS to also pass
1464                 // `-Wl,-instal_name,@rpath/...` to get things to work right. To
1465                 // do that we pass a weird flag to the compiler to get it to do
1466                 // so. Note that this is definitely a hack, and we should likely
1467                 // flesh out rpath support more fully in the future.
1468                 rustflags.arg("-Zosx-rpath-install-name");
1469                 Some("-Wl,-rpath,@loader_path/../lib")
1470             } else if !target.contains("windows") {
1471                 rustflags.arg("-Clink-args=-Wl,-z,origin");
1472                 Some("-Wl,-rpath,$ORIGIN/../lib")
1473             } else {
1474                 None
1475             };
1476             if let Some(rpath) = rpath {
1477                 rustflags.arg(&format!("-Clink-args={}", rpath));
1478             }
1479         }
1480
1481         if let Some(host_linker) = self.linker(compiler.host) {
1482             cargo.env("RUSTC_HOST_LINKER", host_linker);
1483         }
1484         if self.is_fuse_ld_lld(compiler.host) {
1485             cargo.env("RUSTC_HOST_FUSE_LD_LLD", "1");
1486             cargo.env("RUSTDOC_FUSE_LD_LLD", "1");
1487         }
1488
1489         if let Some(target_linker) = self.linker(target) {
1490             let target = crate::envify(&target.triple);
1491             cargo.env(&format!("CARGO_TARGET_{}_LINKER", target), target_linker);
1492         }
1493         if self.is_fuse_ld_lld(target) {
1494             rustflags.arg("-Clink-args=-fuse-ld=lld");
1495         }
1496         self.lld_flags(target).for_each(|flag| {
1497             rustdocflags.arg(&flag);
1498         });
1499
1500         if !(["build", "check", "clippy", "fix", "rustc"].contains(&cmd)) && want_rustdoc {
1501             cargo.env("RUSTDOC_LIBDIR", self.rustc_libdir(compiler));
1502         }
1503
1504         let debuginfo_level = match mode {
1505             Mode::Rustc | Mode::Codegen => self.config.rust_debuginfo_level_rustc,
1506             Mode::Std => self.config.rust_debuginfo_level_std,
1507             Mode::ToolBootstrap | Mode::ToolStd | Mode::ToolRustc => {
1508                 self.config.rust_debuginfo_level_tools
1509             }
1510         };
1511         cargo.env(profile_var("DEBUG"), debuginfo_level.to_string());
1512         cargo.env(
1513             profile_var("DEBUG_ASSERTIONS"),
1514             if mode == Mode::Std {
1515                 self.config.rust_debug_assertions_std.to_string()
1516             } else {
1517                 self.config.rust_debug_assertions.to_string()
1518             },
1519         );
1520         cargo.env(
1521             profile_var("OVERFLOW_CHECKS"),
1522             if mode == Mode::Std {
1523                 self.config.rust_overflow_checks_std.to_string()
1524             } else {
1525                 self.config.rust_overflow_checks.to_string()
1526             },
1527         );
1528
1529         let split_debuginfo_is_stable = target.contains("linux")
1530             || target.contains("apple")
1531             || (target.contains("msvc")
1532                 && self.config.rust_split_debuginfo == SplitDebuginfo::Packed)
1533             || (target.contains("windows")
1534                 && self.config.rust_split_debuginfo == SplitDebuginfo::Off);
1535
1536         if !split_debuginfo_is_stable {
1537             rustflags.arg("-Zunstable-options");
1538         }
1539         match self.config.rust_split_debuginfo {
1540             SplitDebuginfo::Packed => rustflags.arg("-Csplit-debuginfo=packed"),
1541             SplitDebuginfo::Unpacked => rustflags.arg("-Csplit-debuginfo=unpacked"),
1542             SplitDebuginfo::Off => rustflags.arg("-Csplit-debuginfo=off"),
1543         };
1544
1545         if self.config.cmd.bless() {
1546             // Bless `expect!` tests.
1547             cargo.env("UPDATE_EXPECT", "1");
1548         }
1549
1550         if !mode.is_tool() {
1551             cargo.env("RUSTC_FORCE_UNSTABLE", "1");
1552         }
1553
1554         if let Some(x) = self.crt_static(target) {
1555             if x {
1556                 rustflags.arg("-Ctarget-feature=+crt-static");
1557             } else {
1558                 rustflags.arg("-Ctarget-feature=-crt-static");
1559             }
1560         }
1561
1562         if let Some(x) = self.crt_static(compiler.host) {
1563             cargo.env("RUSTC_HOST_CRT_STATIC", x.to_string());
1564         }
1565
1566         if let Some(map_to) = self.build.debuginfo_map_to(GitRepo::Rustc) {
1567             let map = format!("{}={}", self.build.src.display(), map_to);
1568             cargo.env("RUSTC_DEBUGINFO_MAP", map);
1569
1570             // `rustc` needs to know the virtual `/rustc/$hash` we're mapping to,
1571             // in order to opportunistically reverse it later.
1572             cargo.env("CFG_VIRTUAL_RUST_SOURCE_BASE_DIR", map_to);
1573         }
1574
1575         // Enable usage of unstable features
1576         cargo.env("RUSTC_BOOTSTRAP", "1");
1577         self.add_rust_test_threads(&mut cargo);
1578
1579         // Almost all of the crates that we compile as part of the bootstrap may
1580         // have a build script, including the standard library. To compile a
1581         // build script, however, it itself needs a standard library! This
1582         // introduces a bit of a pickle when we're compiling the standard
1583         // library itself.
1584         //
1585         // To work around this we actually end up using the snapshot compiler
1586         // (stage0) for compiling build scripts of the standard library itself.
1587         // The stage0 compiler is guaranteed to have a libstd available for use.
1588         //
1589         // For other crates, however, we know that we've already got a standard
1590         // library up and running, so we can use the normal compiler to compile
1591         // build scripts in that situation.
1592         if mode == Mode::Std {
1593             cargo
1594                 .env("RUSTC_SNAPSHOT", &self.initial_rustc)
1595                 .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_snapshot_libdir());
1596         } else {
1597             cargo
1598                 .env("RUSTC_SNAPSHOT", self.rustc(compiler))
1599                 .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_libdir(compiler));
1600         }
1601
1602         // Tools that use compiler libraries may inherit the `-lLLVM` link
1603         // requirement, but the `-L` library path is not propagated across
1604         // separate Cargo projects. We can add LLVM's library path to the
1605         // platform-specific environment variable as a workaround.
1606         if mode == Mode::ToolRustc || mode == Mode::Codegen {
1607             if let Some(llvm_config) = self.llvm_config(target) {
1608                 let llvm_libdir = output(Command::new(&llvm_config).arg("--libdir"));
1609                 add_link_lib_path(vec![llvm_libdir.trim().into()], &mut cargo);
1610             }
1611         }
1612
1613         // Compile everything except libraries and proc macros with the more
1614         // efficient initial-exec TLS model. This doesn't work with `dlopen`,
1615         // so we can't use it by default in general, but we can use it for tools
1616         // and our own internal libraries.
1617         if !mode.must_support_dlopen() && !target.triple.starts_with("powerpc-") {
1618             cargo.env("RUSTC_TLS_MODEL_INITIAL_EXEC", "1");
1619         }
1620
1621         if self.config.incremental {
1622             cargo.env("CARGO_INCREMENTAL", "1");
1623         } else {
1624             // Don't rely on any default setting for incr. comp. in Cargo
1625             cargo.env("CARGO_INCREMENTAL", "0");
1626         }
1627
1628         if let Some(ref on_fail) = self.config.on_fail {
1629             cargo.env("RUSTC_ON_FAIL", on_fail);
1630         }
1631
1632         if self.config.print_step_timings {
1633             cargo.env("RUSTC_PRINT_STEP_TIMINGS", "1");
1634         }
1635
1636         if self.config.print_step_rusage {
1637             cargo.env("RUSTC_PRINT_STEP_RUSAGE", "1");
1638         }
1639
1640         if self.config.backtrace_on_ice {
1641             cargo.env("RUSTC_BACKTRACE_ON_ICE", "1");
1642         }
1643
1644         cargo.env("RUSTC_VERBOSE", self.verbosity.to_string());
1645
1646         if source_type == SourceType::InTree {
1647             let mut lint_flags = Vec::new();
1648             // When extending this list, add the new lints to the RUSTFLAGS of the
1649             // build_bootstrap function of src/bootstrap/bootstrap.py as well as
1650             // some code doesn't go through this `rustc` wrapper.
1651             lint_flags.push("-Wrust_2018_idioms");
1652             lint_flags.push("-Wunused_lifetimes");
1653             lint_flags.push("-Wsemicolon_in_expressions_from_macros");
1654
1655             if self.config.deny_warnings {
1656                 lint_flags.push("-Dwarnings");
1657                 rustdocflags.arg("-Dwarnings");
1658             }
1659
1660             // This does not use RUSTFLAGS due to caching issues with Cargo.
1661             // Clippy is treated as an "in tree" tool, but shares the same
1662             // cache as other "submodule" tools. With these options set in
1663             // RUSTFLAGS, that causes *every* shared dependency to be rebuilt.
1664             // By injecting this into the rustc wrapper, this circumvents
1665             // Cargo's fingerprint detection. This is fine because lint flags
1666             // are always ignored in dependencies. Eventually this should be
1667             // fixed via better support from Cargo.
1668             cargo.env("RUSTC_LINT_FLAGS", lint_flags.join(" "));
1669
1670             rustdocflags.arg("-Wrustdoc::invalid_codeblock_attributes");
1671         }
1672
1673         if mode == Mode::Rustc {
1674             rustflags.arg("-Zunstable-options");
1675             rustflags.arg("-Wrustc::internal");
1676         }
1677
1678         // Throughout the build Cargo can execute a number of build scripts
1679         // compiling C/C++ code and we need to pass compilers, archivers, flags, etc
1680         // obtained previously to those build scripts.
1681         // Build scripts use either the `cc` crate or `configure/make` so we pass
1682         // the options through environment variables that are fetched and understood by both.
1683         //
1684         // FIXME: the guard against msvc shouldn't need to be here
1685         if target.contains("msvc") {
1686             if let Some(ref cl) = self.config.llvm_clang_cl {
1687                 cargo.env("CC", cl).env("CXX", cl);
1688             }
1689         } else {
1690             let ccache = self.config.ccache.as_ref();
1691             let ccacheify = |s: &Path| {
1692                 let ccache = match ccache {
1693                     Some(ref s) => s,
1694                     None => return s.display().to_string(),
1695                 };
1696                 // FIXME: the cc-rs crate only recognizes the literal strings
1697                 // `ccache` and `sccache` when doing caching compilations, so we
1698                 // mirror that here. It should probably be fixed upstream to
1699                 // accept a new env var or otherwise work with custom ccache
1700                 // vars.
1701                 match &ccache[..] {
1702                     "ccache" | "sccache" => format!("{} {}", ccache, s.display()),
1703                     _ => s.display().to_string(),
1704                 }
1705             };
1706             let triple_underscored = target.triple.replace("-", "_");
1707             let cc = ccacheify(&self.cc(target));
1708             cargo.env(format!("CC_{}", triple_underscored), &cc);
1709
1710             let cflags = self.cflags(target, GitRepo::Rustc, CLang::C).join(" ");
1711             cargo.env(format!("CFLAGS_{}", triple_underscored), &cflags);
1712
1713             if let Some(ar) = self.ar(target) {
1714                 let ranlib = format!("{} s", ar.display());
1715                 cargo
1716                     .env(format!("AR_{}", triple_underscored), ar)
1717                     .env(format!("RANLIB_{}", triple_underscored), ranlib);
1718             }
1719
1720             if let Ok(cxx) = self.cxx(target) {
1721                 let cxx = ccacheify(&cxx);
1722                 let cxxflags = self.cflags(target, GitRepo::Rustc, CLang::Cxx).join(" ");
1723                 cargo
1724                     .env(format!("CXX_{}", triple_underscored), &cxx)
1725                     .env(format!("CXXFLAGS_{}", triple_underscored), cxxflags);
1726             }
1727         }
1728
1729         if mode == Mode::Std && self.config.extended && compiler.is_final_stage(self) {
1730             rustflags.arg("-Zsave-analysis");
1731             cargo.env(
1732                 "RUST_SAVE_ANALYSIS_CONFIG",
1733                 "{\"output_file\": null,\"full_docs\": false,\
1734                        \"pub_only\": true,\"reachable_only\": false,\
1735                        \"distro_crate\": true,\"signatures\": false,\"borrow_data\": false}",
1736             );
1737         }
1738
1739         // If Control Flow Guard is enabled, pass the `control-flow-guard` flag to rustc
1740         // when compiling the standard library, since this might be linked into the final outputs
1741         // produced by rustc. Since this mitigation is only available on Windows, only enable it
1742         // for the standard library in case the compiler is run on a non-Windows platform.
1743         // This is not needed for stage 0 artifacts because these will only be used for building
1744         // the stage 1 compiler.
1745         if cfg!(windows)
1746             && mode == Mode::Std
1747             && self.config.control_flow_guard
1748             && compiler.stage >= 1
1749         {
1750             rustflags.arg("-Ccontrol-flow-guard");
1751         }
1752
1753         // For `cargo doc` invocations, make rustdoc print the Rust version into the docs
1754         // This replaces spaces with newlines because RUSTDOCFLAGS does not
1755         // support arguments with regular spaces. Hopefully someday Cargo will
1756         // have space support.
1757         let rust_version = self.rust_version().replace(' ', "\n");
1758         rustdocflags.arg("--crate-version").arg(&rust_version);
1759
1760         // Environment variables *required* throughout the build
1761         //
1762         // FIXME: should update code to not require this env var
1763         cargo.env("CFG_COMPILER_HOST_TRIPLE", target.triple);
1764
1765         // Set this for all builds to make sure doc builds also get it.
1766         cargo.env("CFG_RELEASE_CHANNEL", &self.config.channel);
1767
1768         // This one's a bit tricky. As of the time of this writing the compiler
1769         // links to the `winapi` crate on crates.io. This crate provides raw
1770         // bindings to Windows system functions, sort of like libc does for
1771         // Unix. This crate also, however, provides "import libraries" for the
1772         // MinGW targets. There's an import library per dll in the windows
1773         // distribution which is what's linked to. These custom import libraries
1774         // are used because the winapi crate can reference Windows functions not
1775         // present in the MinGW import libraries.
1776         //
1777         // For example MinGW may ship libdbghelp.a, but it may not have
1778         // references to all the functions in the dbghelp dll. Instead the
1779         // custom import library for dbghelp in the winapi crates has all this
1780         // information.
1781         //
1782         // Unfortunately for us though the import libraries are linked by
1783         // default via `-ldylib=winapi_foo`. That is, they're linked with the
1784         // `dylib` type with a `winapi_` prefix (so the winapi ones don't
1785         // conflict with the system MinGW ones). This consequently means that
1786         // the binaries we ship of things like rustc_codegen_llvm (aka the rustc_codegen_llvm
1787         // DLL) when linked against *again*, for example with procedural macros
1788         // or plugins, will trigger the propagation logic of `-ldylib`, passing
1789         // `-lwinapi_foo` to the linker again. This isn't actually available in
1790         // our distribution, however, so the link fails.
1791         //
1792         // To solve this problem we tell winapi to not use its bundled import
1793         // libraries. This means that it will link to the system MinGW import
1794         // libraries by default, and the `-ldylib=foo` directives will still get
1795         // passed to the final linker, but they'll look like `-lfoo` which can
1796         // be resolved because MinGW has the import library. The downside is we
1797         // don't get newer functions from Windows, but we don't use any of them
1798         // anyway.
1799         if !mode.is_tool() {
1800             cargo.env("WINAPI_NO_BUNDLED_LIBRARIES", "1");
1801         }
1802
1803         for _ in 0..self.verbosity {
1804             cargo.arg("-v");
1805         }
1806
1807         match (mode, self.config.rust_codegen_units_std, self.config.rust_codegen_units) {
1808             (Mode::Std, Some(n), _) | (_, _, Some(n)) => {
1809                 cargo.env(profile_var("CODEGEN_UNITS"), n.to_string());
1810             }
1811             _ => {
1812                 // Don't set anything
1813             }
1814         }
1815
1816         if self.config.rust_optimize {
1817             // FIXME: cargo bench/install do not accept `--release`
1818             if cmd != "bench" && cmd != "install" {
1819                 cargo.arg("--release");
1820             }
1821         }
1822
1823         if self.config.locked_deps {
1824             cargo.arg("--locked");
1825         }
1826         if self.config.vendor || self.is_sudo {
1827             cargo.arg("--frozen");
1828         }
1829
1830         // Try to use a sysroot-relative bindir, in case it was configured absolutely.
1831         cargo.env("RUSTC_INSTALL_BINDIR", self.config.bindir_relative());
1832
1833         self.ci_env.force_coloring_in_ci(&mut cargo);
1834
1835         // When we build Rust dylibs they're all intended for intermediate
1836         // usage, so make sure we pass the -Cprefer-dynamic flag instead of
1837         // linking all deps statically into the dylib.
1838         if matches!(mode, Mode::Std | Mode::Rustc) {
1839             rustflags.arg("-Cprefer-dynamic");
1840         }
1841
1842         // When building incrementally we default to a lower ThinLTO import limit
1843         // (unless explicitly specified otherwise). This will produce a somewhat
1844         // slower code but give way better compile times.
1845         {
1846             let limit = match self.config.rust_thin_lto_import_instr_limit {
1847                 Some(limit) => Some(limit),
1848                 None if self.config.incremental => Some(10),
1849                 _ => None,
1850             };
1851
1852             if let Some(limit) = limit {
1853                 rustflags.arg(&format!("-Cllvm-args=-import-instr-limit={}", limit));
1854             }
1855         }
1856
1857         Cargo { command: cargo, rustflags, rustdocflags }
1858     }
1859
1860     /// Ensure that a given step is built, returning its output. This will
1861     /// cache the step, so it is safe (and good!) to call this as often as
1862     /// needed to ensure that all dependencies are built.
1863     pub fn ensure<S: Step>(&'a self, step: S) -> S::Output {
1864         {
1865             let mut stack = self.stack.borrow_mut();
1866             for stack_step in stack.iter() {
1867                 // should skip
1868                 if stack_step.downcast_ref::<S>().map_or(true, |stack_step| *stack_step != step) {
1869                     continue;
1870                 }
1871                 let mut out = String::new();
1872                 out += &format!("\n\nCycle in build detected when adding {:?}\n", step);
1873                 for el in stack.iter().rev() {
1874                     out += &format!("\t{:?}\n", el);
1875                 }
1876                 panic!("{}", out);
1877             }
1878             if let Some(out) = self.cache.get(&step) {
1879                 self.verbose_than(1, &format!("{}c {:?}", "  ".repeat(stack.len()), step));
1880
1881                 return out;
1882             }
1883             self.verbose_than(1, &format!("{}> {:?}", "  ".repeat(stack.len()), step));
1884             stack.push(Box::new(step.clone()));
1885         }
1886
1887         #[cfg(feature = "build-metrics")]
1888         self.metrics.enter_step(&step);
1889
1890         let (out, dur) = {
1891             let start = Instant::now();
1892             let zero = Duration::new(0, 0);
1893             let parent = self.time_spent_on_dependencies.replace(zero);
1894             let out = step.clone().run(self);
1895             let dur = start.elapsed();
1896             let deps = self.time_spent_on_dependencies.replace(parent + dur);
1897             (out, dur - deps)
1898         };
1899
1900         if self.config.print_step_timings && !self.config.dry_run() {
1901             let step_string = format!("{:?}", step);
1902             let brace_index = step_string.find("{").unwrap_or(0);
1903             let type_string = type_name::<S>();
1904             println!(
1905                 "[TIMING] {} {} -- {}.{:03}",
1906                 &type_string.strip_prefix("bootstrap::").unwrap_or(type_string),
1907                 &step_string[brace_index..],
1908                 dur.as_secs(),
1909                 dur.subsec_millis()
1910             );
1911         }
1912
1913         #[cfg(feature = "build-metrics")]
1914         self.metrics.exit_step();
1915
1916         {
1917             let mut stack = self.stack.borrow_mut();
1918             let cur_step = stack.pop().expect("step stack empty");
1919             assert_eq!(cur_step.downcast_ref(), Some(&step));
1920         }
1921         self.verbose_than(1, &format!("{}< {:?}", "  ".repeat(self.stack.borrow().len()), step));
1922         self.cache.put(step, out.clone());
1923         out
1924     }
1925
1926     /// Ensure that a given step is built *only if it's supposed to be built by default*, returning
1927     /// its output. This will cache the step, so it's safe (and good!) to call this as often as
1928     /// needed to ensure that all dependencies are build.
1929     pub(crate) fn ensure_if_default<T, S: Step<Output = Option<T>>>(
1930         &'a self,
1931         step: S,
1932         kind: Kind,
1933     ) -> S::Output {
1934         let desc = StepDescription::from::<S>(kind);
1935         let should_run = (desc.should_run)(ShouldRun::new(self, desc.kind));
1936
1937         // Avoid running steps contained in --exclude
1938         for pathset in &should_run.paths {
1939             if desc.is_excluded(self, pathset) {
1940                 return None;
1941             }
1942         }
1943
1944         // Only execute if it's supposed to run as default
1945         if desc.default && should_run.is_really_default() { self.ensure(step) } else { None }
1946     }
1947
1948     /// Checks if any of the "should_run" paths is in the `Builder` paths.
1949     pub(crate) fn was_invoked_explicitly<S: Step>(&'a self, kind: Kind) -> bool {
1950         let desc = StepDescription::from::<S>(kind);
1951         let should_run = (desc.should_run)(ShouldRun::new(self, desc.kind));
1952
1953         for path in &self.paths {
1954             if should_run.paths.iter().any(|s| s.has(path, Some(desc.kind)))
1955                 && !desc.is_excluded(
1956                     self,
1957                     &PathSet::Suite(TaskPath { path: path.clone(), kind: Some(desc.kind) }),
1958                 )
1959             {
1960                 return true;
1961             }
1962         }
1963
1964         false
1965     }
1966
1967     pub(crate) fn maybe_open_in_browser<S: Step>(&self, path: impl AsRef<Path>) {
1968         if self.was_invoked_explicitly::<S>(Kind::Doc) {
1969             self.open_in_browser(path);
1970         }
1971     }
1972
1973     pub(crate) fn open_in_browser(&self, path: impl AsRef<Path>) {
1974         if self.config.dry_run() || !self.config.cmd.open() {
1975             return;
1976         }
1977
1978         let path = path.as_ref();
1979         self.info(&format!("Opening doc {}", path.display()));
1980         if let Err(err) = opener::open(path) {
1981             self.info(&format!("{}\n", err));
1982         }
1983     }
1984 }
1985
1986 #[cfg(test)]
1987 mod tests;
1988
1989 #[derive(Debug, Clone)]
1990 struct Rustflags(String, TargetSelection);
1991
1992 impl Rustflags {
1993     fn new(target: TargetSelection) -> Rustflags {
1994         let mut ret = Rustflags(String::new(), target);
1995         ret.propagate_cargo_env("RUSTFLAGS");
1996         ret
1997     }
1998
1999     /// By default, cargo will pick up on various variables in the environment. However, bootstrap
2000     /// reuses those variables to pass additional flags to rustdoc, so by default they get overridden.
2001     /// Explicitly add back any previous value in the environment.
2002     ///
2003     /// `prefix` is usually `RUSTFLAGS` or `RUSTDOCFLAGS`.
2004     fn propagate_cargo_env(&mut self, prefix: &str) {
2005         // Inherit `RUSTFLAGS` by default ...
2006         self.env(prefix);
2007
2008         // ... and also handle target-specific env RUSTFLAGS if they're configured.
2009         let target_specific = format!("CARGO_TARGET_{}_{}", crate::envify(&self.1.triple), prefix);
2010         self.env(&target_specific);
2011     }
2012
2013     fn env(&mut self, env: &str) {
2014         if let Ok(s) = env::var(env) {
2015             for part in s.split(' ') {
2016                 self.arg(part);
2017             }
2018         }
2019     }
2020
2021     fn arg(&mut self, arg: &str) -> &mut Self {
2022         assert_eq!(arg.split(' ').count(), 1);
2023         if !self.0.is_empty() {
2024             self.0.push(' ');
2025         }
2026         self.0.push_str(arg);
2027         self
2028     }
2029 }
2030
2031 #[derive(Debug)]
2032 pub struct Cargo {
2033     command: Command,
2034     rustflags: Rustflags,
2035     rustdocflags: Rustflags,
2036 }
2037
2038 impl Cargo {
2039     pub fn rustdocflag(&mut self, arg: &str) -> &mut Cargo {
2040         self.rustdocflags.arg(arg);
2041         self
2042     }
2043     pub fn rustflag(&mut self, arg: &str) -> &mut Cargo {
2044         self.rustflags.arg(arg);
2045         self
2046     }
2047
2048     pub fn arg(&mut self, arg: impl AsRef<OsStr>) -> &mut Cargo {
2049         self.command.arg(arg.as_ref());
2050         self
2051     }
2052
2053     pub fn args<I, S>(&mut self, args: I) -> &mut Cargo
2054     where
2055         I: IntoIterator<Item = S>,
2056         S: AsRef<OsStr>,
2057     {
2058         for arg in args {
2059             self.arg(arg.as_ref());
2060         }
2061         self
2062     }
2063
2064     pub fn env(&mut self, key: impl AsRef<OsStr>, value: impl AsRef<OsStr>) -> &mut Cargo {
2065         // These are managed through rustflag/rustdocflag interfaces.
2066         assert_ne!(key.as_ref(), "RUSTFLAGS");
2067         assert_ne!(key.as_ref(), "RUSTDOCFLAGS");
2068         self.command.env(key.as_ref(), value.as_ref());
2069         self
2070     }
2071
2072     pub fn add_rustc_lib_path(&mut self, builder: &Builder<'_>, compiler: Compiler) {
2073         builder.add_rustc_lib_path(compiler, &mut self.command);
2074     }
2075
2076     pub fn current_dir(&mut self, dir: &Path) -> &mut Cargo {
2077         self.command.current_dir(dir);
2078         self
2079     }
2080 }
2081
2082 impl From<Cargo> for Command {
2083     fn from(mut cargo: Cargo) -> Command {
2084         let rustflags = &cargo.rustflags.0;
2085         if !rustflags.is_empty() {
2086             cargo.command.env("RUSTFLAGS", rustflags);
2087         }
2088
2089         let rustdocflags = &cargo.rustdocflags.0;
2090         if !rustdocflags.is_empty() {
2091             cargo.command.env("RUSTDOCFLAGS", rustdocflags);
2092         }
2093
2094         cargo.command
2095     }
2096 }