]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/lib.rs
Rollup merge of #63963 - Wind-River:master_003, r=alexcrichton
[rust.git] / src / bootstrap / lib.rs
1 //! Implementation of rustbuild, the Rust build system.
2 //!
3 //! This module, and its descendants, are the implementation of the Rust build
4 //! system. Most of this build system is backed by Cargo but the outer layer
5 //! here serves as the ability to orchestrate calling Cargo, sequencing Cargo
6 //! builds, building artifacts like LLVM, etc. The goals of rustbuild are:
7 //!
8 //! * To be an easily understandable, easily extensible, and maintainable build
9 //!   system.
10 //! * Leverage standard tools in the Rust ecosystem to build the compiler, aka
11 //!   crates.io and Cargo.
12 //! * A standard interface to build across all platforms, including MSVC
13 //!
14 //! ## Architecture
15 //!
16 //! The build system defers most of the complicated logic managing invocations
17 //! of rustc and rustdoc to Cargo itself. However, moving through various stages
18 //! and copying artifacts is still necessary for it to do. Each time rustbuild
19 //! is invoked, it will iterate through the list of predefined steps and execute
20 //! each serially in turn if it matches the paths passed or is a default rule.
21 //! For each step rustbuild relies on the step internally being incremental and
22 //! parallel. Note, though, that the `-j` parameter to rustbuild gets forwarded
23 //! to appropriate test harnesses and such.
24 //!
25 //! Most of the "meaty" steps that matter are backed by Cargo, which does indeed
26 //! have its own parallelism and incremental management. Later steps, like
27 //! tests, aren't incremental and simply run the entire suite currently.
28 //! However, compiletest itself tries to avoid running tests when the artifacts
29 //! that are involved (mainly the compiler) haven't changed.
30 //!
31 //! When you execute `x.py build`, the steps executed are:
32 //!
33 //! * First, the python script is run. This will automatically download the
34 //!   stage0 rustc and cargo according to `src/stage0.txt`, or use the cached
35 //!   versions if they're available. These are then used to compile rustbuild
36 //!   itself (using Cargo). Finally, control is then transferred to rustbuild.
37 //!
38 //! * Rustbuild takes over, performs sanity checks, probes the environment,
39 //!   reads configuration, and starts executing steps as it reads the command
40 //!   line arguments (paths) or going through the default rules.
41 //!
42 //!   The build output will be something like the following:
43 //!
44 //!   Building stage0 std artifacts
45 //!   Copying stage0 std
46 //!   Building stage0 test artifacts
47 //!   Copying stage0 test
48 //!   Building stage0 compiler artifacts
49 //!   Copying stage0 rustc
50 //!   Assembling stage1 compiler
51 //!   Building stage1 std artifacts
52 //!   Copying stage1 std
53 //!   Building stage1 test artifacts
54 //!   Copying stage1 test
55 //!   Building stage1 compiler artifacts
56 //!   Copying stage1 rustc
57 //!   Assembling stage2 compiler
58 //!   Uplifting stage1 std
59 //!   Uplifting stage1 test
60 //!   Uplifting stage1 rustc
61 //!
62 //! Let's disect that a little:
63 //!
64 //! ## Building stage0 {std,test,compiler} artifacts
65 //!
66 //! These steps use the provided (downloaded, usually) compiler to compile the
67 //! local Rust source into libraries we can use.
68 //!
69 //! ## Copying stage0 {std,test,rustc}
70 //!
71 //! This copies the build output from Cargo into
72 //! `build/$HOST/stage0-sysroot/lib/rustlib/$ARCH/lib`. FIXME: this step's
73 //! documentation should be expanded -- the information already here may be
74 //! incorrect.
75 //!
76 //! ## Assembling stage1 compiler
77 //!
78 //! This copies the libraries we built in "building stage0 ... artifacts" into
79 //! the stage1 compiler's lib directory. These are the host libraries that the
80 //! compiler itself uses to run. These aren't actually used by artifacts the new
81 //! compiler generates. This step also copies the rustc and rustdoc binaries we
82 //! generated into build/$HOST/stage/bin.
83 //!
84 //! The stage1/bin/rustc is a fully functional compiler, but it doesn't yet have
85 //! any libraries to link built binaries or libraries to. The next 3 steps will
86 //! provide those libraries for it; they are mostly equivalent to constructing
87 //! the stage1/bin compiler so we don't go through them individually.
88 //!
89 //! ## Uplifting stage1 {std,test,rustc}
90 //!
91 //! This step copies the libraries from the stage1 compiler sysroot into the
92 //! stage2 compiler. This is done to avoid rebuilding the compiler; libraries
93 //! we'd build in this step should be identical (in function, if not necessarily
94 //! identical on disk) so there's no need to recompile the compiler again. Note
95 //! that if you want to, you can enable the full-bootstrap option to change this
96 //! behavior.
97 //!
98 //! Each step is driven by a separate Cargo project and rustbuild orchestrates
99 //! copying files between steps and otherwise preparing for Cargo to run.
100 //!
101 //! ## Further information
102 //!
103 //! More documentation can be found in each respective module below, and you can
104 //! also check out the `src/bootstrap/README.md` file for more information.
105
106 // NO-RUSTC-WRAPPER
107 #![deny(warnings, rust_2018_idioms, unused_lifetimes)]
108
109 #![feature(core_intrinsics)]
110 #![feature(drain_filter)]
111
112 use std::cell::{RefCell, Cell};
113 use std::collections::{HashSet, HashMap};
114 use std::env;
115 use std::fs::{self, OpenOptions, File};
116 use std::io::{Seek, SeekFrom, Write, Read};
117 use std::path::{PathBuf, Path};
118 use std::process::{self, Command};
119 use std::slice;
120 use std::str;
121
122 #[cfg(unix)]
123 use std::os::unix::fs::symlink as symlink_file;
124 #[cfg(windows)]
125 use std::os::windows::fs::symlink_file;
126
127 use build_helper::{
128     mtime, output, run, run_suppressed, t, try_run, try_run_suppressed,
129 };
130 use filetime::FileTime;
131
132 use crate::util::{exe, libdir, CiEnv};
133
134 mod cc_detect;
135 mod channel;
136 mod check;
137 mod test;
138 mod clean;
139 mod compile;
140 mod metadata;
141 mod config;
142 mod dist;
143 mod doc;
144 mod flags;
145 mod install;
146 mod native;
147 mod sanity;
148 pub mod util;
149 mod builder;
150 mod cache;
151 mod tool;
152 mod toolstate;
153
154 #[cfg(windows)]
155 mod job;
156
157 #[cfg(all(unix, not(target_os = "haiku")))]
158 mod job {
159     pub unsafe fn setup(build: &mut crate::Build) {
160         if build.config.low_priority {
161             libc::setpriority(libc::PRIO_PGRP as _, 0, 10);
162         }
163     }
164 }
165
166 #[cfg(any(target_os = "haiku", not(any(unix, windows))))]
167 mod job {
168     pub unsafe fn setup(_build: &mut crate::Build) {
169     }
170 }
171
172 pub use crate::config::Config;
173 use crate::flags::Subcommand;
174 use crate::cache::{Interned, INTERNER};
175 use crate::toolstate::ToolState;
176
177 const LLVM_TOOLS: &[&str] = &[
178     "llvm-nm", // used to inspect binaries; it shows symbol names, their sizes and visibility
179     "llvm-objcopy", // used to transform ELFs into binary format which flashing tools consume
180     "llvm-objdump", // used to disassemble programs
181     "llvm-profdata", // used to inspect and merge files generated by profiles
182     "llvm-readobj", // used to get information from ELFs/objects that the other tools don't provide
183     "llvm-size", // used to prints the size of the linker sections of a program
184     "llvm-strip", // used to discard symbols from binary files to reduce their size
185     "llvm-ar" // used for creating and modifying archive files
186 ];
187
188 /// A structure representing a Rust compiler.
189 ///
190 /// Each compiler has a `stage` that it is associated with and a `host` that
191 /// corresponds to the platform the compiler runs on. This structure is used as
192 /// a parameter to many methods below.
193 #[derive(Eq, PartialOrd, Ord, PartialEq, Clone, Copy, Hash, Debug)]
194 pub struct Compiler {
195     stage: u32,
196     host: Interned<String>,
197 }
198
199 #[derive(PartialEq, Eq, Copy, Clone, Debug)]
200 pub enum DocTests {
201     /// Run normal tests and doc tests (default).
202     Yes,
203     /// Do not run any doc tests.
204     No,
205     /// Only run doc tests.
206     Only,
207 }
208
209 pub enum GitRepo {
210     Rustc,
211     Llvm,
212 }
213
214 /// Global configuration for the build system.
215 ///
216 /// This structure transitively contains all configuration for the build system.
217 /// All filesystem-encoded configuration is in `config`, all flags are in
218 /// `flags`, and then parsed or probed information is listed in the keys below.
219 ///
220 /// This structure is a parameter of almost all methods in the build system,
221 /// although most functions are implemented as free functions rather than
222 /// methods specifically on this structure itself (to make it easier to
223 /// organize).
224 pub struct Build {
225     /// User-specified configuration from `config.toml`.
226     config: Config,
227
228     // Properties derived from the above configuration
229     src: PathBuf,
230     out: PathBuf,
231     rust_info: channel::GitInfo,
232     cargo_info: channel::GitInfo,
233     rls_info: channel::GitInfo,
234     clippy_info: channel::GitInfo,
235     miri_info: channel::GitInfo,
236     rustfmt_info: channel::GitInfo,
237     in_tree_llvm_info: channel::GitInfo,
238     emscripten_llvm_info: channel::GitInfo,
239     local_rebuild: bool,
240     fail_fast: bool,
241     doc_tests: DocTests,
242     verbosity: usize,
243
244     // Targets for which to build
245     build: Interned<String>,
246     hosts: Vec<Interned<String>>,
247     targets: Vec<Interned<String>>,
248
249     // Stage 0 (downloaded) compiler and cargo or their local rust equivalents
250     initial_rustc: PathBuf,
251     initial_cargo: PathBuf,
252
253     // Runtime state filled in later on
254     // C/C++ compilers and archiver for all targets
255     cc: HashMap<Interned<String>, cc::Tool>,
256     cxx: HashMap<Interned<String>, cc::Tool>,
257     ar: HashMap<Interned<String>, PathBuf>,
258     ranlib: HashMap<Interned<String>, PathBuf>,
259     // Miscellaneous
260     crates: HashMap<Interned<String>, Crate>,
261     is_sudo: bool,
262     ci_env: CiEnv,
263     delayed_failures: RefCell<Vec<String>>,
264     prerelease_version: Cell<Option<u32>>,
265     tool_artifacts: RefCell<HashMap<
266         Interned<String>,
267         HashMap<String, (&'static str, PathBuf, Vec<String>)>
268     >>,
269 }
270
271 #[derive(Debug)]
272 struct Crate {
273     name: Interned<String>,
274     deps: HashSet<Interned<String>>,
275     id: String,
276     path: PathBuf,
277 }
278
279 impl Crate {
280     fn is_local(&self, build: &Build) -> bool {
281         self.path.starts_with(&build.config.src) &&
282         !self.path.to_string_lossy().ends_with("_shim")
283     }
284
285     fn local_path(&self, build: &Build) -> PathBuf {
286         assert!(self.is_local(build));
287         self.path.strip_prefix(&build.config.src).unwrap().into()
288     }
289 }
290
291 /// The various "modes" of invoking Cargo.
292 ///
293 /// These entries currently correspond to the various output directories of the
294 /// build system, with each mod generating output in a different directory.
295 #[derive(Debug, Hash, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
296 pub enum Mode {
297     /// Build the standard library, placing output in the "stageN-std" directory.
298     Std,
299
300     /// Build librustc, and compiler libraries, placing output in the "stageN-rustc" directory.
301     Rustc,
302
303     /// Build codegen libraries, placing output in the "stageN-codegen" directory
304     Codegen,
305
306     /// Build some tools, placing output in the "stageN-tools" directory. The
307     /// "other" here is for miscellaneous sets of tools that are built using the
308     /// bootstrap compiler in its entirety (target libraries and all).
309     /// Typically these tools compile with stable Rust.
310     ToolBootstrap,
311
312     /// Compile a tool which uses all libraries we compile (up to rustc).
313     /// Doesn't use the stage0 compiler libraries like "other", and includes
314     /// tools like rustdoc, cargo, rls, etc.
315     ToolStd,
316     ToolRustc,
317 }
318
319 impl Mode {
320     pub fn is_tool(&self) -> bool {
321         match self {
322             Mode::ToolBootstrap | Mode::ToolRustc | Mode::ToolStd => true,
323             _ => false
324         }
325     }
326 }
327
328 impl Build {
329     /// Creates a new set of build configuration from the `flags` on the command
330     /// line and the filesystem `config`.
331     ///
332     /// By default all build output will be placed in the current directory.
333     pub fn new(config: Config) -> Build {
334         let src = config.src.clone();
335         let out = config.out.clone();
336
337         let is_sudo = match env::var_os("SUDO_USER") {
338             Some(sudo_user) => {
339                 match env::var_os("USER") {
340                     Some(user) => user != sudo_user,
341                     None => false,
342                 }
343             }
344             None => false,
345         };
346
347         let ignore_git = config.ignore_git;
348         let rust_info = channel::GitInfo::new(ignore_git, &src);
349         let cargo_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/cargo"));
350         let rls_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/rls"));
351         let clippy_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/clippy"));
352         let miri_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/miri"));
353         let rustfmt_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/rustfmt"));
354
355         // we always try to use git for LLVM builds
356         let in_tree_llvm_info = channel::GitInfo::new(false, &src.join("src/llvm-project"));
357         let emscripten_llvm_info = channel::GitInfo::new(false, &src.join("src/llvm-emscripten"));
358
359         let mut build = Build {
360             initial_rustc: config.initial_rustc.clone(),
361             initial_cargo: config.initial_cargo.clone(),
362             local_rebuild: config.local_rebuild,
363             fail_fast: config.cmd.fail_fast(),
364             doc_tests: config.cmd.doc_tests(),
365             verbosity: config.verbose,
366
367             build: config.build,
368             hosts: config.hosts.clone(),
369             targets: config.targets.clone(),
370
371             config,
372             src,
373             out,
374
375             rust_info,
376             cargo_info,
377             rls_info,
378             clippy_info,
379             miri_info,
380             rustfmt_info,
381             in_tree_llvm_info,
382             emscripten_llvm_info,
383             cc: HashMap::new(),
384             cxx: HashMap::new(),
385             ar: HashMap::new(),
386             ranlib: HashMap::new(),
387             crates: HashMap::new(),
388             is_sudo,
389             ci_env: CiEnv::current(),
390             delayed_failures: RefCell::new(Vec::new()),
391             prerelease_version: Cell::new(None),
392             tool_artifacts: Default::default(),
393         };
394
395         build.verbose("finding compilers");
396         cc_detect::find(&mut build);
397         build.verbose("running sanity check");
398         sanity::check(&mut build);
399
400         // If local-rust is the same major.minor as the current version, then force a
401         // local-rebuild
402         let local_version_verbose = output(
403             Command::new(&build.initial_rustc).arg("--version").arg("--verbose"));
404         let local_release = local_version_verbose
405             .lines().filter(|x| x.starts_with("release:"))
406             .next().unwrap().trim_start_matches("release:").trim();
407         let my_version = channel::CFG_RELEASE_NUM;
408         if local_release.split('.').take(2).eq(my_version.split('.').take(2)) {
409             build.verbose(&format!("auto-detected local-rebuild {}", local_release));
410             build.local_rebuild = true;
411         }
412
413         build.verbose("learning about cargo");
414         metadata::build(&mut build);
415
416         build
417     }
418
419     pub fn build_triple(&self) -> &[Interned<String>] {
420         unsafe {
421             slice::from_raw_parts(&self.build, 1)
422         }
423     }
424
425     /// Executes the entire build, as configured by the flags and configuration.
426     pub fn build(&mut self) {
427         unsafe {
428             job::setup(self);
429         }
430
431         if let Subcommand::Clean { all } = self.config.cmd {
432             return clean::clean(self, all);
433         }
434
435         {
436             let builder = builder::Builder::new(&self);
437             if let Some(path) = builder.paths.get(0) {
438                 if path == Path::new("nonexistent/path/to/trigger/cargo/metadata") {
439                     return;
440                 }
441             }
442         }
443
444         if !self.config.dry_run {
445             {
446                 self.config.dry_run = true;
447                 let builder = builder::Builder::new(&self);
448                 builder.execute_cli();
449             }
450             self.config.dry_run = false;
451             let builder = builder::Builder::new(&self);
452             builder.execute_cli();
453         } else {
454             let builder = builder::Builder::new(&self);
455             let _ = builder.execute_cli();
456         }
457
458         // Check for postponed failures from `test --no-fail-fast`.
459         let failures = self.delayed_failures.borrow();
460         if failures.len() > 0 {
461             println!("\n{} command(s) did not execute successfully:\n", failures.len());
462             for failure in failures.iter() {
463                 println!("  - {}\n", failure);
464             }
465             process::exit(1);
466         }
467     }
468
469     /// Clear out `dir` if `input` is newer.
470     ///
471     /// After this executes, it will also ensure that `dir` exists.
472     fn clear_if_dirty(&self, dir: &Path, input: &Path) -> bool {
473         let stamp = dir.join(".stamp");
474         let mut cleared = false;
475         if mtime(&stamp) < mtime(input) {
476             self.verbose(&format!("Dirty - {}", dir.display()));
477             let _ = fs::remove_dir_all(dir);
478             cleared = true;
479         } else if stamp.exists() {
480             return cleared;
481         }
482         t!(fs::create_dir_all(dir));
483         t!(File::create(stamp));
484         cleared
485     }
486
487     /// Gets the space-separated set of activated features for the standard
488     /// library.
489     fn std_features(&self) -> String {
490         let mut features = "panic-unwind".to_string();
491
492         if self.config.llvm_libunwind {
493             features.push_str(" llvm-libunwind");
494         }
495         if self.config.backtrace {
496             features.push_str(" backtrace");
497         }
498         if self.config.profiler {
499             features.push_str(" profiler");
500         }
501         if self.config.wasm_syscall {
502             features.push_str(" wasm_syscall");
503         }
504         features
505     }
506
507     /// Gets the space-separated set of activated features for the compiler.
508     fn rustc_features(&self) -> String {
509         let mut features = String::new();
510         if self.config.jemalloc {
511             features.push_str("jemalloc");
512         }
513         features
514     }
515
516     /// Component directory that Cargo will produce output into (e.g.
517     /// release/debug)
518     fn cargo_dir(&self) -> &'static str {
519         if self.config.rust_optimize {"release"} else {"debug"}
520     }
521
522     fn tools_dir(&self, compiler: Compiler) -> PathBuf {
523         let out = self.out.join(&*compiler.host).join(format!("stage{}-tools-bin", compiler.stage));
524         t!(fs::create_dir_all(&out));
525         out
526     }
527
528     /// Returns the root directory for all output generated in a particular
529     /// stage when running with a particular host compiler.
530     ///
531     /// The mode indicates what the root directory is for.
532     fn stage_out(&self, compiler: Compiler, mode: Mode) -> PathBuf {
533         let suffix = match mode {
534             Mode::Std => "-std",
535             Mode::Rustc => "-rustc",
536             Mode::Codegen => "-codegen",
537             Mode::ToolBootstrap => "-bootstrap-tools",
538             Mode::ToolStd | Mode::ToolRustc => "-tools",
539         };
540         self.out.join(&*compiler.host)
541                 .join(format!("stage{}{}", compiler.stage, suffix))
542     }
543
544     /// Returns the root output directory for all Cargo output in a given stage,
545     /// running a particular compiler, whether or not we're building the
546     /// standard library, and targeting the specified architecture.
547     fn cargo_out(&self,
548                  compiler: Compiler,
549                  mode: Mode,
550                  target: Interned<String>) -> PathBuf {
551         self.stage_out(compiler, mode).join(&*target).join(self.cargo_dir())
552     }
553
554     /// Root output directory for LLVM compiled for `target`
555     ///
556     /// Note that if LLVM is configured externally then the directory returned
557     /// will likely be empty.
558     fn llvm_out(&self, target: Interned<String>) -> PathBuf {
559         self.out.join(&*target).join("llvm")
560     }
561
562     fn emscripten_llvm_out(&self, target: Interned<String>) -> PathBuf {
563         self.out.join(&*target).join("llvm-emscripten")
564     }
565
566     fn lld_out(&self, target: Interned<String>) -> PathBuf {
567         self.out.join(&*target).join("lld")
568     }
569
570     /// Output directory for all documentation for a target
571     fn doc_out(&self, target: Interned<String>) -> PathBuf {
572         self.out.join(&*target).join("doc")
573     }
574
575     /// Output directory for all documentation for a target
576     fn compiler_doc_out(&self, target: Interned<String>) -> PathBuf {
577         self.out.join(&*target).join("compiler-doc")
578     }
579
580     /// Output directory for some generated md crate documentation for a target (temporary)
581     fn md_doc_out(&self, target: Interned<String>) -> Interned<PathBuf> {
582         INTERNER.intern_path(self.out.join(&*target).join("md-doc"))
583     }
584
585     /// Output directory for all crate documentation for a target (temporary)
586     ///
587     /// The artifacts here are then copied into `doc_out` above.
588     fn crate_doc_out(&self, target: Interned<String>) -> PathBuf {
589         self.out.join(&*target).join("crate-docs")
590     }
591
592     /// Returns `true` if no custom `llvm-config` is set for the specified target.
593     ///
594     /// If no custom `llvm-config` was specified then Rust's llvm will be used.
595     fn is_rust_llvm(&self, target: Interned<String>) -> bool {
596         match self.config.target_config.get(&target) {
597             Some(ref c) => c.llvm_config.is_none(),
598             None => true
599         }
600     }
601
602     /// Returns the path to `FileCheck` binary for the specified target
603     fn llvm_filecheck(&self, target: Interned<String>) -> PathBuf {
604         let target_config = self.config.target_config.get(&target);
605         if let Some(s) = target_config.and_then(|c| c.llvm_filecheck.as_ref()) {
606             s.to_path_buf()
607         } else if let Some(s) = target_config.and_then(|c| c.llvm_config.as_ref()) {
608             let llvm_bindir = output(Command::new(s).arg("--bindir"));
609             let filecheck = Path::new(llvm_bindir.trim()).join(exe("FileCheck", &*target));
610             if filecheck.exists() {
611                 filecheck
612             } else {
613                 // On Fedora the system LLVM installs FileCheck in the
614                 // llvm subdirectory of the libdir.
615                 let llvm_libdir = output(Command::new(s).arg("--libdir"));
616                 let lib_filecheck = Path::new(llvm_libdir.trim())
617                     .join("llvm").join(exe("FileCheck", &*target));
618                 if lib_filecheck.exists() {
619                     lib_filecheck
620                 } else {
621                     // Return the most normal file name, even though
622                     // it doesn't exist, so that any error message
623                     // refers to that.
624                     filecheck
625                 }
626             }
627         } else {
628             let base = self.llvm_out(self.config.build).join("build");
629             let base = if !self.config.ninja && self.config.build.contains("msvc") {
630                 if self.config.llvm_optimize {
631                     if self.config.llvm_release_debuginfo {
632                         base.join("RelWithDebInfo")
633                     } else {
634                         base.join("Release")
635                     }
636                 } else {
637                     base.join("Debug")
638                 }
639             } else {
640                 base
641             };
642             base.join("bin").join(exe("FileCheck", &*target))
643         }
644     }
645
646     /// Directory for libraries built from C/C++ code and shared between stages.
647     fn native_dir(&self, target: Interned<String>) -> PathBuf {
648         self.out.join(&*target).join("native")
649     }
650
651     /// Root output directory for rust_test_helpers library compiled for
652     /// `target`
653     fn test_helpers_out(&self, target: Interned<String>) -> PathBuf {
654         self.native_dir(target).join("rust-test-helpers")
655     }
656
657     /// Adds the `RUST_TEST_THREADS` env var if necessary
658     fn add_rust_test_threads(&self, cmd: &mut Command) {
659         if env::var_os("RUST_TEST_THREADS").is_none() {
660             cmd.env("RUST_TEST_THREADS", self.jobs().to_string());
661         }
662     }
663
664     /// Returns the libdir of the snapshot compiler.
665     fn rustc_snapshot_libdir(&self) -> PathBuf {
666         self.rustc_snapshot_sysroot().join(libdir(&self.config.build))
667     }
668
669     /// Returns the sysroot of the snapshot compiler.
670     fn rustc_snapshot_sysroot(&self) -> &Path {
671         self.initial_rustc.parent().unwrap().parent().unwrap()
672     }
673
674     /// Runs a command, printing out nice contextual information if it fails.
675     fn run(&self, cmd: &mut Command) {
676         if self.config.dry_run { return; }
677         self.verbose(&format!("running: {:?}", cmd));
678         run(cmd)
679     }
680
681     /// Runs a command, printing out nice contextual information if it fails.
682     fn run_quiet(&self, cmd: &mut Command) {
683         if self.config.dry_run { return; }
684         self.verbose(&format!("running: {:?}", cmd));
685         run_suppressed(cmd)
686     }
687
688     /// Runs a command, printing out nice contextual information if it fails.
689     /// Exits if the command failed to execute at all, otherwise returns its
690     /// `status.success()`.
691     fn try_run(&self, cmd: &mut Command) -> bool {
692         if self.config.dry_run { return true; }
693         self.verbose(&format!("running: {:?}", cmd));
694         try_run(cmd)
695     }
696
697     /// Runs a command, printing out nice contextual information if it fails.
698     /// Exits if the command failed to execute at all, otherwise returns its
699     /// `status.success()`.
700     fn try_run_quiet(&self, cmd: &mut Command) -> bool {
701         if self.config.dry_run { return true; }
702         self.verbose(&format!("running: {:?}", cmd));
703         try_run_suppressed(cmd)
704     }
705
706     pub fn is_verbose(&self) -> bool {
707         self.verbosity > 0
708     }
709
710     /// Prints a message if this build is configured in verbose mode.
711     fn verbose(&self, msg: &str) {
712         if self.is_verbose() {
713             println!("{}", msg);
714         }
715     }
716
717     pub fn is_verbose_than(&self, level: usize) -> bool {
718         self.verbosity > level
719     }
720
721     /// Prints a message if this build is configured in more verbose mode than `level`.
722     fn verbose_than(&self, level: usize, msg: &str) {
723         if self.is_verbose_than(level) {
724             println!("{}", msg);
725         }
726     }
727
728     fn info(&self, msg: &str) {
729         if self.config.dry_run { return; }
730         println!("{}", msg);
731     }
732
733     /// Returns the number of parallel jobs that have been configured for this
734     /// build.
735     fn jobs(&self) -> u32 {
736         self.config.jobs.unwrap_or_else(|| num_cpus::get() as u32)
737     }
738
739     fn debuginfo_map(&self, which: GitRepo) -> Option<String> {
740         if !self.config.rust_remap_debuginfo {
741             return None
742         }
743
744         let path = match which {
745             GitRepo::Rustc => {
746                 let sha = self.rust_sha().unwrap_or(channel::CFG_RELEASE_NUM);
747                 format!("/rustc/{}", sha)
748             }
749             GitRepo::Llvm => String::from("/rustc/llvm"),
750         };
751         Some(format!("{}={}", self.src.display(), path))
752     }
753
754     /// Returns the path to the C compiler for the target specified.
755     fn cc(&self, target: Interned<String>) -> &Path {
756         self.cc[&target].path()
757     }
758
759     /// Returns a list of flags to pass to the C compiler for the target
760     /// specified.
761     fn cflags(&self, target: Interned<String>, which: GitRepo) -> Vec<String> {
762         // Filter out -O and /O (the optimization flags) that we picked up from
763         // cc-rs because the build scripts will determine that for themselves.
764         let mut base = self.cc[&target].args().iter()
765                            .map(|s| s.to_string_lossy().into_owned())
766                            .filter(|s| !s.starts_with("-O") && !s.starts_with("/O"))
767                            .collect::<Vec<String>>();
768
769         // If we're compiling on macOS then we add a few unconditional flags
770         // indicating that we want libc++ (more filled out than libstdc++) and
771         // we want to compile for 10.7. This way we can ensure that
772         // LLVM/etc are all properly compiled.
773         if target.contains("apple-darwin") {
774             base.push("-stdlib=libc++".into());
775         }
776
777         // Work around an apparently bad MinGW / GCC optimization,
778         // See: http://lists.llvm.org/pipermail/cfe-dev/2016-December/051980.html
779         // See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78936
780         if &*target == "i686-pc-windows-gnu" {
781             base.push("-fno-omit-frame-pointer".into());
782         }
783
784         if let Some(map) = self.debuginfo_map(which) {
785         let cc = self.cc(target);
786             if cc.ends_with("clang") || cc.ends_with("gcc") {
787                 base.push(format!("-fdebug-prefix-map={}", map));
788             } else if cc.ends_with("clang-cl.exe") {
789                 base.push("-Xclang".into());
790                 base.push(format!("-fdebug-prefix-map={}", map));
791             }
792         }
793         base
794     }
795
796     /// Returns the path to the `ar` archive utility for the target specified.
797     fn ar(&self, target: Interned<String>) -> Option<&Path> {
798         self.ar.get(&target).map(|p| &**p)
799     }
800
801     /// Returns the path to the `ranlib` utility for the target specified.
802     fn ranlib(&self, target: Interned<String>) -> Option<&Path> {
803         self.ranlib.get(&target).map(|p| &**p)
804     }
805
806     /// Returns the path to the C++ compiler for the target specified.
807     fn cxx(&self, target: Interned<String>) -> Result<&Path, String> {
808         match self.cxx.get(&target) {
809             Some(p) => Ok(p.path()),
810             None => Err(format!(
811                     "target `{}` is not configured as a host, only as a target",
812                     target))
813         }
814     }
815
816     /// Returns the path to the linker for the given target if it needs to be overridden.
817     fn linker(&self, target: Interned<String>) -> Option<&Path> {
818         if let Some(linker) = self.config.target_config.get(&target)
819                                                        .and_then(|c| c.linker.as_ref()) {
820             Some(linker)
821         } else if target != self.config.build &&
822                   !target.contains("msvc") &&
823                   !target.contains("emscripten") &&
824                   !target.contains("wasm32") &&
825                   !target.contains("nvptx") &&
826                   !target.contains("fuchsia") {
827             Some(self.cc(target))
828         } else {
829             None
830         }
831     }
832
833     /// Returns if this target should statically link the C runtime, if specified
834     fn crt_static(&self, target: Interned<String>) -> Option<bool> {
835         if target.contains("pc-windows-msvc") {
836             Some(true)
837         } else {
838             self.config.target_config.get(&target)
839                 .and_then(|t| t.crt_static)
840         }
841     }
842
843     /// Returns the "musl root" for this `target`, if defined
844     fn musl_root(&self, target: Interned<String>) -> Option<&Path> {
845         self.config.target_config.get(&target)
846             .and_then(|t| t.musl_root.as_ref())
847             .or(self.config.musl_root.as_ref())
848             .map(|p| &**p)
849     }
850
851     /// Returns the sysroot for the wasi target, if defined
852     fn wasi_root(&self, target: Interned<String>) -> Option<&Path> {
853         self.config.target_config.get(&target)
854             .and_then(|t| t.wasi_root.as_ref())
855             .map(|p| &**p)
856     }
857
858     /// Returns `true` if this is a no-std `target`, if defined
859     fn no_std(&self, target: Interned<String>) -> Option<bool> {
860         self.config.target_config.get(&target)
861             .map(|t| t.no_std)
862     }
863
864     /// Returns `true` if the target will be tested using the `remote-test-client`
865     /// and `remote-test-server` binaries.
866     fn remote_tested(&self, target: Interned<String>) -> bool {
867         self.qemu_rootfs(target).is_some() || target.contains("android") ||
868         env::var_os("TEST_DEVICE_ADDR").is_some()
869     }
870
871     /// Returns the root of the "rootfs" image that this target will be using,
872     /// if one was configured.
873     ///
874     /// If `Some` is returned then that means that tests for this target are
875     /// emulated with QEMU and binaries will need to be shipped to the emulator.
876     fn qemu_rootfs(&self, target: Interned<String>) -> Option<&Path> {
877         self.config.target_config.get(&target)
878             .and_then(|t| t.qemu_rootfs.as_ref())
879             .map(|p| &**p)
880     }
881
882     /// Path to the python interpreter to use
883     fn python(&self) -> &Path {
884         self.config.python.as_ref().unwrap()
885     }
886
887     /// Temporary directory that extended error information is emitted to.
888     fn extended_error_dir(&self) -> PathBuf {
889         self.out.join("tmp/extended-error-metadata")
890     }
891
892     /// Tests whether the `compiler` compiling for `target` should be forced to
893     /// use a stage1 compiler instead.
894     ///
895     /// Currently, by default, the build system does not perform a "full
896     /// bootstrap" by default where we compile the compiler three times.
897     /// Instead, we compile the compiler two times. The final stage (stage2)
898     /// just copies the libraries from the previous stage, which is what this
899     /// method detects.
900     ///
901     /// Here we return `true` if:
902     ///
903     /// * The build isn't performing a full bootstrap
904     /// * The `compiler` is in the final stage, 2
905     /// * We're not cross-compiling, so the artifacts are already available in
906     ///   stage1
907     ///
908     /// When all of these conditions are met the build will lift artifacts from
909     /// the previous stage forward.
910     fn force_use_stage1(&self, compiler: Compiler, target: Interned<String>) -> bool {
911         !self.config.full_bootstrap &&
912             compiler.stage >= 2 &&
913             (self.hosts.iter().any(|h| *h == target) || target == self.build)
914     }
915
916     /// Given `num` in the form "a.b.c" return a "release string" which
917     /// describes the release version number.
918     ///
919     /// For example on nightly this returns "a.b.c-nightly", on beta it returns
920     /// "a.b.c-beta.1" and on stable it just returns "a.b.c".
921     fn release(&self, num: &str) -> String {
922         match &self.config.channel[..] {
923             "stable" => num.to_string(),
924             "beta" => if self.rust_info.is_git() {
925                 format!("{}-beta.{}", num, self.beta_prerelease_version())
926             } else {
927                 format!("{}-beta", num)
928             },
929             "nightly" => format!("{}-nightly", num),
930             _ => format!("{}-dev", num),
931         }
932     }
933
934     fn beta_prerelease_version(&self) -> u32 {
935         if let Some(s) = self.prerelease_version.get() {
936             return s
937         }
938
939         let beta = output(
940             Command::new("git")
941                 .arg("ls-remote")
942                 .arg("origin")
943                 .arg("beta")
944                 .current_dir(&self.src)
945         );
946         let beta = beta.trim().split_whitespace().next().unwrap();
947         let master = output(
948             Command::new("git")
949                 .arg("ls-remote")
950                 .arg("origin")
951                 .arg("master")
952                 .current_dir(&self.src)
953         );
954         let master = master.trim().split_whitespace().next().unwrap();
955
956         // Figure out where the current beta branch started.
957         let base = output(
958             Command::new("git")
959                 .arg("merge-base")
960                 .arg(beta)
961                 .arg(master)
962                 .current_dir(&self.src),
963         );
964         let base = base.trim();
965
966         // Next figure out how many merge commits happened since we branched off
967         // beta. That's our beta number!
968         let count = output(
969             Command::new("git")
970                 .arg("rev-list")
971                 .arg("--count")
972                 .arg("--merges")
973                 .arg(format!("{}...HEAD", base))
974                 .current_dir(&self.src),
975         );
976         let n = count.trim().parse().unwrap();
977         self.prerelease_version.set(Some(n));
978         n
979     }
980
981     /// Returns the value of `release` above for Rust itself.
982     fn rust_release(&self) -> String {
983         self.release(channel::CFG_RELEASE_NUM)
984     }
985
986     /// Returns the "package version" for a component given the `num` release
987     /// number.
988     ///
989     /// The package version is typically what shows up in the names of tarballs.
990     /// For channels like beta/nightly it's just the channel name, otherwise
991     /// it's the `num` provided.
992     fn package_vers(&self, num: &str) -> String {
993         match &self.config.channel[..] {
994             "stable" => num.to_string(),
995             "beta" => "beta".to_string(),
996             "nightly" => "nightly".to_string(),
997             _ => format!("{}-dev", num),
998         }
999     }
1000
1001     /// Returns the value of `package_vers` above for Rust itself.
1002     fn rust_package_vers(&self) -> String {
1003         self.package_vers(channel::CFG_RELEASE_NUM)
1004     }
1005
1006     /// Returns the value of `package_vers` above for Cargo
1007     fn cargo_package_vers(&self) -> String {
1008         self.package_vers(&self.release_num("cargo"))
1009     }
1010
1011     /// Returns the value of `package_vers` above for rls
1012     fn rls_package_vers(&self) -> String {
1013         self.package_vers(&self.release_num("rls"))
1014     }
1015
1016     /// Returns the value of `package_vers` above for clippy
1017     fn clippy_package_vers(&self) -> String {
1018         self.package_vers(&self.release_num("clippy"))
1019     }
1020
1021     /// Returns the value of `package_vers` above for miri
1022     fn miri_package_vers(&self) -> String {
1023         self.package_vers(&self.release_num("miri"))
1024     }
1025
1026     /// Returns the value of `package_vers` above for rustfmt
1027     fn rustfmt_package_vers(&self) -> String {
1028         self.package_vers(&self.release_num("rustfmt"))
1029     }
1030
1031     fn llvm_tools_package_vers(&self) -> String {
1032         self.package_vers(channel::CFG_RELEASE_NUM)
1033     }
1034
1035     fn llvm_tools_vers(&self) -> String {
1036         self.rust_version()
1037     }
1038
1039     fn lldb_package_vers(&self) -> String {
1040         self.package_vers(channel::CFG_RELEASE_NUM)
1041     }
1042
1043     fn lldb_vers(&self) -> String {
1044         self.rust_version()
1045     }
1046
1047     fn llvm_link_tools_dynamically(&self, target: Interned<String>) -> bool {
1048         (target.contains("linux-gnu") || target.contains("apple-darwin"))
1049     }
1050
1051     /// Returns the `version` string associated with this compiler for Rust
1052     /// itself.
1053     ///
1054     /// Note that this is a descriptive string which includes the commit date,
1055     /// sha, version, etc.
1056     fn rust_version(&self) -> String {
1057         self.rust_info.version(self, channel::CFG_RELEASE_NUM)
1058     }
1059
1060     /// Returns the full commit hash.
1061     fn rust_sha(&self) -> Option<&str> {
1062         self.rust_info.sha()
1063     }
1064
1065     /// Returns the `a.b.c` version that the given package is at.
1066     fn release_num(&self, package: &str) -> String {
1067         let toml_file_name = self.src.join(&format!("src/tools/{}/Cargo.toml", package));
1068         let toml = t!(fs::read_to_string(&toml_file_name));
1069         for line in toml.lines() {
1070             let prefix = "version = \"";
1071             let suffix = "\"";
1072             if line.starts_with(prefix) && line.ends_with(suffix) {
1073                 return line[prefix.len()..line.len() - suffix.len()].to_string()
1074             }
1075         }
1076
1077         panic!("failed to find version in {}'s Cargo.toml", package)
1078     }
1079
1080     /// Returns `true` if unstable features should be enabled for the compiler
1081     /// we're building.
1082     fn unstable_features(&self) -> bool {
1083         match &self.config.channel[..] {
1084             "stable" | "beta" => false,
1085             "nightly" | _ => true,
1086         }
1087     }
1088
1089     /// Updates the actual toolstate of a tool.
1090     ///
1091     /// The toolstates are saved to the file specified by the key
1092     /// `rust.save-toolstates` in `config.toml`. If unspecified, nothing will be
1093     /// done. The file is updated immediately after this function completes.
1094     pub fn save_toolstate(&self, tool: &str, state: ToolState) {
1095         if let Some(ref path) = self.config.save_toolstates {
1096             let mut file = t!(fs::OpenOptions::new()
1097                 .create(true)
1098                 .read(true)
1099                 .write(true)
1100                 .open(path));
1101
1102             let mut current_toolstates: HashMap<Box<str>, ToolState> =
1103                 serde_json::from_reader(&mut file).unwrap_or_default();
1104             current_toolstates.insert(tool.into(), state);
1105             t!(file.seek(SeekFrom::Start(0)));
1106             t!(file.set_len(0));
1107             t!(serde_json::to_writer(file, &current_toolstates));
1108         }
1109     }
1110
1111     fn in_tree_crates(&self, root: &str) -> Vec<&Crate> {
1112         let mut ret = Vec::new();
1113         let mut list = vec![INTERNER.intern_str(root)];
1114         let mut visited = HashSet::new();
1115         while let Some(krate) = list.pop() {
1116             let krate = &self.crates[&krate];
1117             if krate.is_local(self) {
1118                 ret.push(krate);
1119             }
1120             for dep in &krate.deps {
1121                 if visited.insert(dep) && dep != "build_helper" {
1122                     list.push(*dep);
1123                 }
1124             }
1125         }
1126         ret
1127     }
1128
1129     fn read_stamp_file(&self, stamp: &Path) -> Vec<(PathBuf, bool)> {
1130         if self.config.dry_run {
1131             return Vec::new();
1132         }
1133
1134         let mut paths = Vec::new();
1135         let contents = t!(fs::read(stamp));
1136         // This is the method we use for extracting paths from the stamp file passed to us. See
1137         // run_cargo for more information (in compile.rs).
1138         for part in contents.split(|b| *b == 0) {
1139             if part.is_empty() {
1140                 continue
1141             }
1142             let host = part[0] as char == 'h';
1143             let path = PathBuf::from(t!(str::from_utf8(&part[1..])));
1144             paths.push((path, host));
1145         }
1146         paths
1147     }
1148
1149     /// Copies a file from `src` to `dst`
1150     pub fn copy(&self, src: &Path, dst: &Path) {
1151         if self.config.dry_run { return; }
1152         self.verbose_than(1, &format!("Copy {:?} to {:?}", src, dst));
1153         let _ = fs::remove_file(&dst);
1154         let metadata = t!(src.symlink_metadata());
1155         if metadata.file_type().is_symlink() {
1156             let link = t!(fs::read_link(src));
1157             t!(symlink_file(link, dst));
1158         } else if let Ok(()) = fs::hard_link(src, dst) {
1159             // Attempt to "easy copy" by creating a hard link
1160             // (symlinks don't work on windows), but if that fails
1161             // just fall back to a slow `copy` operation.
1162         } else {
1163             if let Err(e) = fs::copy(src, dst) {
1164                 panic!("failed to copy `{}` to `{}`: {}", src.display(),
1165                        dst.display(), e)
1166             }
1167             t!(fs::set_permissions(dst, metadata.permissions()));
1168             let atime = FileTime::from_last_access_time(&metadata);
1169             let mtime = FileTime::from_last_modification_time(&metadata);
1170             t!(filetime::set_file_times(dst, atime, mtime));
1171         }
1172     }
1173
1174     /// Search-and-replaces within a file. (Not maximally efficiently: allocates a
1175     /// new string for each replacement.)
1176     pub fn replace_in_file(&self, path: &Path, replacements: &[(&str, &str)]) {
1177         if self.config.dry_run { return; }
1178         let mut contents = String::new();
1179         let mut file = t!(OpenOptions::new().read(true).write(true).open(path));
1180         t!(file.read_to_string(&mut contents));
1181         for &(target, replacement) in replacements {
1182             contents = contents.replace(target, replacement);
1183         }
1184         t!(file.seek(SeekFrom::Start(0)));
1185         t!(file.set_len(0));
1186         t!(file.write_all(contents.as_bytes()));
1187     }
1188
1189     /// Copies the `src` directory recursively to `dst`. Both are assumed to exist
1190     /// when this function is called.
1191     pub fn cp_r(&self, src: &Path, dst: &Path) {
1192         if self.config.dry_run { return; }
1193         for f in self.read_dir(src) {
1194             let path = f.path();
1195             let name = path.file_name().unwrap();
1196             let dst = dst.join(name);
1197             if t!(f.file_type()).is_dir() {
1198                 t!(fs::create_dir_all(&dst));
1199                 self.cp_r(&path, &dst);
1200             } else {
1201                 let _ = fs::remove_file(&dst);
1202                 self.copy(&path, &dst);
1203             }
1204         }
1205     }
1206
1207     /// Copies the `src` directory recursively to `dst`. Both are assumed to exist
1208     /// when this function is called. Unwanted files or directories can be skipped
1209     /// by returning `false` from the filter function.
1210     pub fn cp_filtered(&self, src: &Path, dst: &Path, filter: &dyn Fn(&Path) -> bool) {
1211         // Immediately recurse with an empty relative path
1212         self.recurse_(src, dst, Path::new(""), filter)
1213     }
1214
1215     // Inner function does the actual work
1216     fn recurse_(&self, src: &Path, dst: &Path, relative: &Path, filter: &dyn Fn(&Path) -> bool) {
1217         for f in self.read_dir(src) {
1218             let path = f.path();
1219             let name = path.file_name().unwrap();
1220             let dst = dst.join(name);
1221             let relative = relative.join(name);
1222             // Only copy file or directory if the filter function returns true
1223             if filter(&relative) {
1224                 if t!(f.file_type()).is_dir() {
1225                     let _ = fs::remove_dir_all(&dst);
1226                     self.create_dir(&dst);
1227                     self.recurse_(&path, &dst, &relative, filter);
1228                 } else {
1229                     let _ = fs::remove_file(&dst);
1230                     self.copy(&path, &dst);
1231                 }
1232             }
1233         }
1234     }
1235
1236     fn copy_to_folder(&self, src: &Path, dest_folder: &Path) {
1237         let file_name = src.file_name().unwrap();
1238         let dest = dest_folder.join(file_name);
1239         self.copy(src, &dest);
1240     }
1241
1242     fn install(&self, src: &Path, dstdir: &Path, perms: u32) {
1243         if self.config.dry_run { return; }
1244         let dst = dstdir.join(src.file_name().unwrap());
1245         self.verbose_than(1, &format!("Install {:?} to {:?}", src, dst));
1246         t!(fs::create_dir_all(dstdir));
1247         drop(fs::remove_file(&dst));
1248         {
1249             if !src.exists() {
1250                 panic!("Error: File \"{}\" not found!", src.display());
1251             }
1252             let metadata = t!(src.symlink_metadata());
1253             if let Err(e) = fs::copy(&src, &dst) {
1254                 panic!("failed to copy `{}` to `{}`: {}", src.display(),
1255                        dst.display(), e)
1256             }
1257             t!(fs::set_permissions(&dst, metadata.permissions()));
1258             let atime = FileTime::from_last_access_time(&metadata);
1259             let mtime = FileTime::from_last_modification_time(&metadata);
1260             t!(filetime::set_file_times(&dst, atime, mtime));
1261         }
1262         chmod(&dst, perms);
1263     }
1264
1265     fn create(&self, path: &Path, s: &str) {
1266         if self.config.dry_run { return; }
1267         t!(fs::write(path, s));
1268     }
1269
1270     fn read(&self, path: &Path) -> String {
1271         if self.config.dry_run { return String::new(); }
1272         t!(fs::read_to_string(path))
1273     }
1274
1275     fn create_dir(&self, dir: &Path) {
1276         if self.config.dry_run { return; }
1277         t!(fs::create_dir_all(dir))
1278     }
1279
1280     fn remove_dir(&self, dir: &Path) {
1281         if self.config.dry_run { return; }
1282         t!(fs::remove_dir_all(dir))
1283     }
1284
1285     fn read_dir(&self, dir: &Path) -> impl Iterator<Item=fs::DirEntry> {
1286         let iter = match fs::read_dir(dir) {
1287             Ok(v) => v,
1288             Err(_) if self.config.dry_run => return vec![].into_iter(),
1289             Err(err) => panic!("could not read dir {:?}: {:?}", dir, err),
1290         };
1291         iter.map(|e| t!(e)).collect::<Vec<_>>().into_iter()
1292     }
1293
1294     fn remove(&self, f: &Path) {
1295         if self.config.dry_run { return; }
1296         fs::remove_file(f).unwrap_or_else(|_| panic!("failed to remove {:?}", f));
1297     }
1298 }
1299
1300 #[cfg(unix)]
1301 fn chmod(path: &Path, perms: u32) {
1302     use std::os::unix::fs::*;
1303     t!(fs::set_permissions(path, fs::Permissions::from_mode(perms)));
1304 }
1305 #[cfg(windows)]
1306 fn chmod(_path: &Path, _perms: u32) {}
1307
1308
1309 impl Compiler {
1310     pub fn with_stage(mut self, stage: u32) -> Compiler {
1311         self.stage = stage;
1312         self
1313     }
1314
1315     /// Returns `true` if this is a snapshot compiler for `build`'s configuration
1316     pub fn is_snapshot(&self, build: &Build) -> bool {
1317         self.stage == 0 && self.host == build.build
1318     }
1319
1320     /// Returns if this compiler should be treated as a final stage one in the
1321     /// current build session.
1322     /// This takes into account whether we're performing a full bootstrap or
1323     /// not; don't directly compare the stage with `2`!
1324     pub fn is_final_stage(&self, build: &Build) -> bool {
1325         let final_stage = if build.config.full_bootstrap { 2 } else { 1 };
1326         self.stage >= final_stage
1327     }
1328 }