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