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