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