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