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