]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/lib.rs
Auto merge of #63144 - matthiaskrgr:submodule_upd, r=Manishearth
[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_silent, run_suppressed, t, try_run_silent, 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 libtest, placing output in the "stageN-test" directory.
301     Test,
302
303     /// Build librustc, and compiler libraries, placing output in the "stageN-rustc" directory.
304     Rustc,
305
306     /// Build codegen libraries, placing output in the "stageN-codegen" directory
307     Codegen,
308
309     /// Build some tools, placing output in the "stageN-tools" directory. The
310     /// "other" here is for miscellaneous sets of tools that are built using the
311     /// bootstrap compiler in its entirety (target libraries and all).
312     /// Typically these tools compile with stable Rust.
313     ToolBootstrap,
314
315     /// Compile a tool which uses all libraries we compile (up to rustc).
316     /// Doesn't use the stage0 compiler libraries like "other", and includes
317     /// tools like rustdoc, cargo, rls, etc.
318     ToolTest,
319     ToolStd,
320     ToolRustc,
321 }
322
323 impl Mode {
324     pub fn is_tool(&self) -> bool {
325         match self {
326             Mode::ToolBootstrap | Mode::ToolRustc | Mode::ToolStd => true,
327             _ => false
328         }
329     }
330 }
331
332 impl Build {
333     /// Creates a new set of build configuration from the `flags` on the command
334     /// line and the filesystem `config`.
335     ///
336     /// By default all build output will be placed in the current directory.
337     pub fn new(config: Config) -> Build {
338         let src = config.src.clone();
339         let out = config.out.clone();
340
341         let is_sudo = match env::var_os("SUDO_USER") {
342             Some(sudo_user) => {
343                 match env::var_os("USER") {
344                     Some(user) => user != sudo_user,
345                     None => false,
346                 }
347             }
348             None => false,
349         };
350
351         let ignore_git = config.ignore_git;
352         let rust_info = channel::GitInfo::new(ignore_git, &src);
353         let cargo_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/cargo"));
354         let rls_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/rls"));
355         let clippy_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/clippy"));
356         let miri_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/miri"));
357         let rustfmt_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/rustfmt"));
358
359         // we always try to use git for LLVM builds
360         let in_tree_llvm_info = channel::GitInfo::new(false, &src.join("src/llvm-project"));
361         let emscripten_llvm_info = channel::GitInfo::new(false, &src.join("src/llvm-emscripten"));
362
363         let mut build = Build {
364             initial_rustc: config.initial_rustc.clone(),
365             initial_cargo: config.initial_cargo.clone(),
366             local_rebuild: config.local_rebuild,
367             fail_fast: config.cmd.fail_fast(),
368             doc_tests: config.cmd.doc_tests(),
369             verbosity: config.verbose,
370
371             build: config.build,
372             hosts: config.hosts.clone(),
373             targets: config.targets.clone(),
374
375             config,
376             src,
377             out,
378
379             rust_info,
380             cargo_info,
381             rls_info,
382             clippy_info,
383             miri_info,
384             rustfmt_info,
385             in_tree_llvm_info,
386             emscripten_llvm_info,
387             cc: HashMap::new(),
388             cxx: HashMap::new(),
389             ar: HashMap::new(),
390             ranlib: HashMap::new(),
391             crates: HashMap::new(),
392             is_sudo,
393             ci_env: CiEnv::current(),
394             delayed_failures: RefCell::new(Vec::new()),
395             prerelease_version: Cell::new(None),
396             tool_artifacts: Default::default(),
397         };
398
399         build.verbose("finding compilers");
400         cc_detect::find(&mut build);
401         build.verbose("running sanity check");
402         sanity::check(&mut build);
403
404         // If local-rust is the same major.minor as the current version, then force a
405         // local-rebuild
406         let local_version_verbose = output(
407             Command::new(&build.initial_rustc).arg("--version").arg("--verbose"));
408         let local_release = local_version_verbose
409             .lines().filter(|x| x.starts_with("release:"))
410             .next().unwrap().trim_start_matches("release:").trim();
411         let my_version = channel::CFG_RELEASE_NUM;
412         if local_release.split('.').take(2).eq(my_version.split('.').take(2)) {
413             build.verbose(&format!("auto-detected local-rebuild {}", local_release));
414             build.local_rebuild = true;
415         }
416
417         build.verbose("learning about cargo");
418         metadata::build(&mut build);
419
420         build
421     }
422
423     pub fn build_triple(&self) -> &[Interned<String>] {
424         unsafe {
425             slice::from_raw_parts(&self.build, 1)
426         }
427     }
428
429     /// Executes the entire build, as configured by the flags and configuration.
430     pub fn build(&mut self) {
431         unsafe {
432             job::setup(self);
433         }
434
435         if let Subcommand::Clean { all } = self.config.cmd {
436             return clean::clean(self, all);
437         }
438
439         {
440             let builder = builder::Builder::new(&self);
441             if let Some(path) = builder.paths.get(0) {
442                 if path == Path::new("nonexistent/path/to/trigger/cargo/metadata") {
443                     return;
444                 }
445             }
446         }
447
448         if !self.config.dry_run {
449             {
450                 self.config.dry_run = true;
451                 let builder = builder::Builder::new(&self);
452                 builder.execute_cli();
453             }
454             self.config.dry_run = false;
455             let builder = builder::Builder::new(&self);
456             builder.execute_cli();
457         } else {
458             let builder = builder::Builder::new(&self);
459             let _ = builder.execute_cli();
460         }
461
462         // Check for postponed failures from `test --no-fail-fast`.
463         let failures = self.delayed_failures.borrow();
464         if failures.len() > 0 {
465             println!("\n{} command(s) did not execute successfully:\n", failures.len());
466             for failure in failures.iter() {
467                 println!("  - {}\n", failure);
468             }
469             process::exit(1);
470         }
471     }
472
473     /// Clear out `dir` if `input` is newer.
474     ///
475     /// After this executes, it will also ensure that `dir` exists.
476     fn clear_if_dirty(&self, dir: &Path, input: &Path) -> bool {
477         let stamp = dir.join(".stamp");
478         let mut cleared = false;
479         if mtime(&stamp) < mtime(input) {
480             self.verbose(&format!("Dirty - {}", dir.display()));
481             let _ = fs::remove_dir_all(dir);
482             cleared = true;
483         } else if stamp.exists() {
484             return cleared;
485         }
486         t!(fs::create_dir_all(dir));
487         t!(File::create(stamp));
488         cleared
489     }
490
491     /// Gets the space-separated set of activated features for the standard
492     /// library.
493     fn std_features(&self) -> String {
494         let mut features = "panic-unwind".to_string();
495
496         if self.config.llvm_libunwind {
497             features.push_str(" llvm-libunwind");
498         }
499         if self.config.backtrace {
500             features.push_str(" backtrace");
501         }
502         if self.config.profiler {
503             features.push_str(" profiler");
504         }
505         if self.config.wasm_syscall {
506             features.push_str(" wasm_syscall");
507         }
508         features
509     }
510
511     /// Gets the space-separated set of activated features for the compiler.
512     fn rustc_features(&self) -> String {
513         let mut features = String::new();
514         if self.config.jemalloc {
515             features.push_str("jemalloc");
516         }
517         features
518     }
519
520     /// Component directory that Cargo will produce output into (e.g.
521     /// release/debug)
522     fn cargo_dir(&self) -> &'static str {
523         if self.config.rust_optimize {"release"} else {"debug"}
524     }
525
526     fn tools_dir(&self, compiler: Compiler) -> PathBuf {
527         let out = self.out.join(&*compiler.host).join(format!("stage{}-tools-bin", compiler.stage));
528         t!(fs::create_dir_all(&out));
529         out
530     }
531
532     /// Returns the root directory for all output generated in a particular
533     /// stage when running with a particular host compiler.
534     ///
535     /// The mode indicates what the root directory is for.
536     fn stage_out(&self, compiler: Compiler, mode: Mode) -> PathBuf {
537         let suffix = match mode {
538             Mode::Std => "-std",
539             Mode::Test => "-test",
540             Mode::Rustc => "-rustc",
541             Mode::Codegen => "-codegen",
542             Mode::ToolBootstrap => "-bootstrap-tools",
543             Mode::ToolStd => "-tools",
544             Mode::ToolTest => "-tools",
545             Mode::ToolRustc => "-tools",
546         };
547         self.out.join(&*compiler.host)
548                 .join(format!("stage{}{}", compiler.stage, suffix))
549     }
550
551     /// Returns the root output directory for all Cargo output in a given stage,
552     /// running a particular compiler, whether or not we're building the
553     /// standard library, and targeting the specified architecture.
554     fn cargo_out(&self,
555                  compiler: Compiler,
556                  mode: Mode,
557                  target: Interned<String>) -> PathBuf {
558         self.stage_out(compiler, mode).join(&*target).join(self.cargo_dir())
559     }
560
561     /// Root output directory for LLVM compiled for `target`
562     ///
563     /// Note that if LLVM is configured externally then the directory returned
564     /// will likely be empty.
565     fn llvm_out(&self, target: Interned<String>) -> PathBuf {
566         self.out.join(&*target).join("llvm")
567     }
568
569     fn emscripten_llvm_out(&self, target: Interned<String>) -> PathBuf {
570         self.out.join(&*target).join("llvm-emscripten")
571     }
572
573     fn lld_out(&self, target: Interned<String>) -> PathBuf {
574         self.out.join(&*target).join("lld")
575     }
576
577     /// Output directory for all documentation for a target
578     fn doc_out(&self, target: Interned<String>) -> PathBuf {
579         self.out.join(&*target).join("doc")
580     }
581
582     /// Output directory for all documentation for a target
583     fn compiler_doc_out(&self, target: Interned<String>) -> PathBuf {
584         self.out.join(&*target).join("compiler-doc")
585     }
586
587     /// Output directory for some generated md crate documentation for a target (temporary)
588     fn md_doc_out(&self, target: Interned<String>) -> Interned<PathBuf> {
589         INTERNER.intern_path(self.out.join(&*target).join("md-doc"))
590     }
591
592     /// Output directory for all crate documentation for a target (temporary)
593     ///
594     /// The artifacts here are then copied into `doc_out` above.
595     fn crate_doc_out(&self, target: Interned<String>) -> PathBuf {
596         self.out.join(&*target).join("crate-docs")
597     }
598
599     /// Returns `true` if no custom `llvm-config` is set for the specified target.
600     ///
601     /// If no custom `llvm-config` was specified then Rust's llvm will be used.
602     fn is_rust_llvm(&self, target: Interned<String>) -> bool {
603         match self.config.target_config.get(&target) {
604             Some(ref c) => c.llvm_config.is_none(),
605             None => true
606         }
607     }
608
609     /// Returns the path to `FileCheck` binary for the specified target
610     fn llvm_filecheck(&self, target: Interned<String>) -> PathBuf {
611         let target_config = self.config.target_config.get(&target);
612         if let Some(s) = target_config.and_then(|c| c.llvm_filecheck.as_ref()) {
613             s.to_path_buf()
614         } else if let Some(s) = target_config.and_then(|c| c.llvm_config.as_ref()) {
615             let llvm_bindir = output(Command::new(s).arg("--bindir"));
616             let filecheck = Path::new(llvm_bindir.trim()).join(exe("FileCheck", &*target));
617             if filecheck.exists() {
618                 filecheck
619             } else {
620                 // On Fedora the system LLVM installs FileCheck in the
621                 // llvm subdirectory of the libdir.
622                 let llvm_libdir = output(Command::new(s).arg("--libdir"));
623                 let lib_filecheck = Path::new(llvm_libdir.trim())
624                     .join("llvm").join(exe("FileCheck", &*target));
625                 if lib_filecheck.exists() {
626                     lib_filecheck
627                 } else {
628                     // Return the most normal file name, even though
629                     // it doesn't exist, so that any error message
630                     // refers to that.
631                     filecheck
632                 }
633             }
634         } else {
635             let base = self.llvm_out(self.config.build).join("build");
636             let base = if !self.config.ninja && self.config.build.contains("msvc") {
637                 if self.config.llvm_optimize {
638                     if self.config.llvm_release_debuginfo {
639                         base.join("RelWithDebInfo")
640                     } else {
641                         base.join("Release")
642                     }
643                 } else {
644                     base.join("Debug")
645                 }
646             } else {
647                 base
648             };
649             base.join("bin").join(exe("FileCheck", &*target))
650         }
651     }
652
653     /// Directory for libraries built from C/C++ code and shared between stages.
654     fn native_dir(&self, target: Interned<String>) -> PathBuf {
655         self.out.join(&*target).join("native")
656     }
657
658     /// Root output directory for rust_test_helpers library compiled for
659     /// `target`
660     fn test_helpers_out(&self, target: Interned<String>) -> PathBuf {
661         self.native_dir(target).join("rust-test-helpers")
662     }
663
664     /// Adds the `RUST_TEST_THREADS` env var if necessary
665     fn add_rust_test_threads(&self, cmd: &mut Command) {
666         if env::var_os("RUST_TEST_THREADS").is_none() {
667             cmd.env("RUST_TEST_THREADS", self.jobs().to_string());
668         }
669     }
670
671     /// Returns the libdir of the snapshot compiler.
672     fn rustc_snapshot_libdir(&self) -> PathBuf {
673         self.rustc_snapshot_sysroot().join(libdir(&self.config.build))
674     }
675
676     /// Returns the sysroot of the snapshot compiler.
677     fn rustc_snapshot_sysroot(&self) -> &Path {
678         self.initial_rustc.parent().unwrap().parent().unwrap()
679     }
680
681     /// Runs a command, printing out nice contextual information if it fails.
682     fn run(&self, cmd: &mut Command) {
683         if self.config.dry_run { return; }
684         self.verbose(&format!("running: {:?}", cmd));
685         run_silent(cmd)
686     }
687
688     /// Runs a command, printing out nice contextual information if it fails.
689     fn run_quiet(&self, cmd: &mut Command) {
690         if self.config.dry_run { return; }
691         self.verbose(&format!("running: {:?}", cmd));
692         run_suppressed(cmd)
693     }
694
695     /// Runs a command, printing out nice contextual information if it fails.
696     /// Exits if the command failed to execute at all, otherwise returns its
697     /// `status.success()`.
698     fn try_run(&self, cmd: &mut Command) -> bool {
699         if self.config.dry_run { return true; }
700         self.verbose(&format!("running: {:?}", cmd));
701         try_run_silent(cmd)
702     }
703
704     /// Runs a command, printing out nice contextual information if it fails.
705     /// Exits if the command failed to execute at all, otherwise returns its
706     /// `status.success()`.
707     fn try_run_quiet(&self, cmd: &mut Command) -> bool {
708         if self.config.dry_run { return true; }
709         self.verbose(&format!("running: {:?}", cmd));
710         try_run_suppressed(cmd)
711     }
712
713     pub fn is_verbose(&self) -> bool {
714         self.verbosity > 0
715     }
716
717     /// Prints a message if this build is configured in verbose mode.
718     fn verbose(&self, msg: &str) {
719         if self.is_verbose() {
720             println!("{}", msg);
721         }
722     }
723
724     pub fn is_verbose_than(&self, level: usize) -> bool {
725         self.verbosity > level
726     }
727
728     /// Prints a message if this build is configured in more verbose mode than `level`.
729     fn verbose_than(&self, level: usize, msg: &str) {
730         if self.is_verbose_than(level) {
731             println!("{}", msg);
732         }
733     }
734
735     fn info(&self, msg: &str) {
736         if self.config.dry_run { return; }
737         println!("{}", msg);
738     }
739
740     /// Returns the number of parallel jobs that have been configured for this
741     /// build.
742     fn jobs(&self) -> u32 {
743         self.config.jobs.unwrap_or_else(|| num_cpus::get() as u32)
744     }
745
746     fn debuginfo_map(&self, which: GitRepo) -> Option<String> {
747         if !self.config.rust_remap_debuginfo {
748             return None
749         }
750
751         let path = match which {
752             GitRepo::Rustc => {
753                 let sha = self.rust_sha().unwrap_or(channel::CFG_RELEASE_NUM);
754                 format!("/rustc/{}", sha)
755             }
756             GitRepo::Llvm => String::from("/rustc/llvm"),
757         };
758         Some(format!("{}={}", self.src.display(), path))
759     }
760
761     /// Returns the path to the C compiler for the target specified.
762     fn cc(&self, target: Interned<String>) -> &Path {
763         self.cc[&target].path()
764     }
765
766     /// Returns a list of flags to pass to the C compiler for the target
767     /// specified.
768     fn cflags(&self, target: Interned<String>, which: GitRepo) -> Vec<String> {
769         // Filter out -O and /O (the optimization flags) that we picked up from
770         // cc-rs because the build scripts will determine that for themselves.
771         let mut base = self.cc[&target].args().iter()
772                            .map(|s| s.to_string_lossy().into_owned())
773                            .filter(|s| !s.starts_with("-O") && !s.starts_with("/O"))
774                            .collect::<Vec<String>>();
775
776         // If we're compiling on macOS then we add a few unconditional flags
777         // indicating that we want libc++ (more filled out than libstdc++) and
778         // we want to compile for 10.7. This way we can ensure that
779         // LLVM/etc are all properly compiled.
780         if target.contains("apple-darwin") {
781             base.push("-stdlib=libc++".into());
782         }
783
784         // Work around an apparently bad MinGW / GCC optimization,
785         // See: http://lists.llvm.org/pipermail/cfe-dev/2016-December/051980.html
786         // See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78936
787         if &*target == "i686-pc-windows-gnu" {
788             base.push("-fno-omit-frame-pointer".into());
789         }
790
791         if let Some(map) = self.debuginfo_map(which) {
792         let cc = self.cc(target);
793             if cc.ends_with("clang") || cc.ends_with("gcc") {
794                 base.push(format!("-fdebug-prefix-map={}", map));
795             } else if cc.ends_with("clang-cl.exe") {
796                 base.push("-Xclang".into());
797                 base.push(format!("-fdebug-prefix-map={}", map));
798             }
799         }
800         base
801     }
802
803     /// Returns the path to the `ar` archive utility for the target specified.
804     fn ar(&self, target: Interned<String>) -> Option<&Path> {
805         self.ar.get(&target).map(|p| &**p)
806     }
807
808     /// Returns the path to the `ranlib` utility for the target specified.
809     fn ranlib(&self, target: Interned<String>) -> Option<&Path> {
810         self.ranlib.get(&target).map(|p| &**p)
811     }
812
813     /// Returns the path to the C++ compiler for the target specified.
814     fn cxx(&self, target: Interned<String>) -> Result<&Path, String> {
815         match self.cxx.get(&target) {
816             Some(p) => Ok(p.path()),
817             None => Err(format!(
818                     "target `{}` is not configured as a host, only as a target",
819                     target))
820         }
821     }
822
823     /// Returns the path to the linker for the given target if it needs to be overridden.
824     fn linker(&self, target: Interned<String>) -> Option<&Path> {
825         if let Some(linker) = self.config.target_config.get(&target)
826                                                        .and_then(|c| c.linker.as_ref()) {
827             Some(linker)
828         } else if target != self.config.build &&
829                   !target.contains("msvc") &&
830                   !target.contains("emscripten") &&
831                   !target.contains("wasm32") &&
832                   !target.contains("nvptx") &&
833                   !target.contains("fuchsia") {
834             Some(self.cc(target))
835         } else {
836             None
837         }
838     }
839
840     /// Returns if this target should statically link the C runtime, if specified
841     fn crt_static(&self, target: Interned<String>) -> Option<bool> {
842         if target.contains("pc-windows-msvc") {
843             Some(true)
844         } else {
845             self.config.target_config.get(&target)
846                 .and_then(|t| t.crt_static)
847         }
848     }
849
850     /// Returns the "musl root" for this `target`, if defined
851     fn musl_root(&self, target: Interned<String>) -> Option<&Path> {
852         self.config.target_config.get(&target)
853             .and_then(|t| t.musl_root.as_ref())
854             .or(self.config.musl_root.as_ref())
855             .map(|p| &**p)
856     }
857
858     /// Returns the sysroot for the wasi target, if defined
859     fn wasi_root(&self, target: Interned<String>) -> Option<&Path> {
860         self.config.target_config.get(&target)
861             .and_then(|t| t.wasi_root.as_ref())
862             .map(|p| &**p)
863     }
864
865     /// Returns `true` if this is a no-std `target`, if defined
866     fn no_std(&self, target: Interned<String>) -> Option<bool> {
867         self.config.target_config.get(&target)
868             .map(|t| t.no_std)
869     }
870
871     /// Returns `true` if the target will be tested using the `remote-test-client`
872     /// and `remote-test-server` binaries.
873     fn remote_tested(&self, target: Interned<String>) -> bool {
874         self.qemu_rootfs(target).is_some() || target.contains("android") ||
875         env::var_os("TEST_DEVICE_ADDR").is_some()
876     }
877
878     /// Returns the root of the "rootfs" image that this target will be using,
879     /// if one was configured.
880     ///
881     /// If `Some` is returned then that means that tests for this target are
882     /// emulated with QEMU and binaries will need to be shipped to the emulator.
883     fn qemu_rootfs(&self, target: Interned<String>) -> Option<&Path> {
884         self.config.target_config.get(&target)
885             .and_then(|t| t.qemu_rootfs.as_ref())
886             .map(|p| &**p)
887     }
888
889     /// Path to the python interpreter to use
890     fn python(&self) -> &Path {
891         self.config.python.as_ref().unwrap()
892     }
893
894     /// Temporary directory that extended error information is emitted to.
895     fn extended_error_dir(&self) -> PathBuf {
896         self.out.join("tmp/extended-error-metadata")
897     }
898
899     /// Tests whether the `compiler` compiling for `target` should be forced to
900     /// use a stage1 compiler instead.
901     ///
902     /// Currently, by default, the build system does not perform a "full
903     /// bootstrap" by default where we compile the compiler three times.
904     /// Instead, we compile the compiler two times. The final stage (stage2)
905     /// just copies the libraries from the previous stage, which is what this
906     /// method detects.
907     ///
908     /// Here we return `true` if:
909     ///
910     /// * The build isn't performing a full bootstrap
911     /// * The `compiler` is in the final stage, 2
912     /// * We're not cross-compiling, so the artifacts are already available in
913     ///   stage1
914     ///
915     /// When all of these conditions are met the build will lift artifacts from
916     /// the previous stage forward.
917     fn force_use_stage1(&self, compiler: Compiler, target: Interned<String>) -> bool {
918         !self.config.full_bootstrap &&
919             compiler.stage >= 2 &&
920             (self.hosts.iter().any(|h| *h == target) || target == self.build)
921     }
922
923     /// Given `num` in the form "a.b.c" return a "release string" which
924     /// describes the release version number.
925     ///
926     /// For example on nightly this returns "a.b.c-nightly", on beta it returns
927     /// "a.b.c-beta.1" and on stable it just returns "a.b.c".
928     fn release(&self, num: &str) -> String {
929         match &self.config.channel[..] {
930             "stable" => num.to_string(),
931             "beta" => if self.rust_info.is_git() {
932                 format!("{}-beta.{}", num, self.beta_prerelease_version())
933             } else {
934                 format!("{}-beta", num)
935             },
936             "nightly" => format!("{}-nightly", num),
937             _ => format!("{}-dev", num),
938         }
939     }
940
941     fn beta_prerelease_version(&self) -> u32 {
942         if let Some(s) = self.prerelease_version.get() {
943             return s
944         }
945
946         let beta = output(
947             Command::new("git")
948                 .arg("ls-remote")
949                 .arg("origin")
950                 .arg("beta")
951                 .current_dir(&self.src)
952         );
953         let beta = beta.trim().split_whitespace().next().unwrap();
954         let master = output(
955             Command::new("git")
956                 .arg("ls-remote")
957                 .arg("origin")
958                 .arg("master")
959                 .current_dir(&self.src)
960         );
961         let master = master.trim().split_whitespace().next().unwrap();
962
963         // Figure out where the current beta branch started.
964         let base = output(
965             Command::new("git")
966                 .arg("merge-base")
967                 .arg(beta)
968                 .arg(master)
969                 .current_dir(&self.src),
970         );
971         let base = base.trim();
972
973         // Next figure out how many merge commits happened since we branched off
974         // beta. That's our beta number!
975         let count = output(
976             Command::new("git")
977                 .arg("rev-list")
978                 .arg("--count")
979                 .arg("--merges")
980                 .arg(format!("{}...HEAD", base))
981                 .current_dir(&self.src),
982         );
983         let n = count.trim().parse().unwrap();
984         self.prerelease_version.set(Some(n));
985         n
986     }
987
988     /// Returns the value of `release` above for Rust itself.
989     fn rust_release(&self) -> String {
990         self.release(channel::CFG_RELEASE_NUM)
991     }
992
993     /// Returns the "package version" for a component given the `num` release
994     /// number.
995     ///
996     /// The package version is typically what shows up in the names of tarballs.
997     /// For channels like beta/nightly it's just the channel name, otherwise
998     /// it's the `num` provided.
999     fn package_vers(&self, num: &str) -> String {
1000         match &self.config.channel[..] {
1001             "stable" => num.to_string(),
1002             "beta" => "beta".to_string(),
1003             "nightly" => "nightly".to_string(),
1004             _ => format!("{}-dev", num),
1005         }
1006     }
1007
1008     /// Returns the value of `package_vers` above for Rust itself.
1009     fn rust_package_vers(&self) -> String {
1010         self.package_vers(channel::CFG_RELEASE_NUM)
1011     }
1012
1013     /// Returns the value of `package_vers` above for Cargo
1014     fn cargo_package_vers(&self) -> String {
1015         self.package_vers(&self.release_num("cargo"))
1016     }
1017
1018     /// Returns the value of `package_vers` above for rls
1019     fn rls_package_vers(&self) -> String {
1020         self.package_vers(&self.release_num("rls"))
1021     }
1022
1023     /// Returns the value of `package_vers` above for clippy
1024     fn clippy_package_vers(&self) -> String {
1025         self.package_vers(&self.release_num("clippy"))
1026     }
1027
1028     /// Returns the value of `package_vers` above for miri
1029     fn miri_package_vers(&self) -> String {
1030         self.package_vers(&self.release_num("miri"))
1031     }
1032
1033     /// Returns the value of `package_vers` above for rustfmt
1034     fn rustfmt_package_vers(&self) -> String {
1035         self.package_vers(&self.release_num("rustfmt"))
1036     }
1037
1038     fn llvm_tools_package_vers(&self) -> String {
1039         self.package_vers(channel::CFG_RELEASE_NUM)
1040     }
1041
1042     fn llvm_tools_vers(&self) -> String {
1043         self.rust_version()
1044     }
1045
1046     fn lldb_package_vers(&self) -> String {
1047         self.package_vers(channel::CFG_RELEASE_NUM)
1048     }
1049
1050     fn lldb_vers(&self) -> String {
1051         self.rust_version()
1052     }
1053
1054     fn llvm_link_tools_dynamically(&self, target: Interned<String>) -> bool {
1055         (target.contains("linux-gnu") || target.contains("apple-darwin"))
1056     }
1057
1058     /// Returns the `version` string associated with this compiler for Rust
1059     /// itself.
1060     ///
1061     /// Note that this is a descriptive string which includes the commit date,
1062     /// sha, version, etc.
1063     fn rust_version(&self) -> String {
1064         self.rust_info.version(self, channel::CFG_RELEASE_NUM)
1065     }
1066
1067     /// Returns the full commit hash.
1068     fn rust_sha(&self) -> Option<&str> {
1069         self.rust_info.sha()
1070     }
1071
1072     /// Returns the `a.b.c` version that the given package is at.
1073     fn release_num(&self, package: &str) -> String {
1074         let toml_file_name = self.src.join(&format!("src/tools/{}/Cargo.toml", package));
1075         let toml = t!(fs::read_to_string(&toml_file_name));
1076         for line in toml.lines() {
1077             let prefix = "version = \"";
1078             let suffix = "\"";
1079             if line.starts_with(prefix) && line.ends_with(suffix) {
1080                 return line[prefix.len()..line.len() - suffix.len()].to_string()
1081             }
1082         }
1083
1084         panic!("failed to find version in {}'s Cargo.toml", package)
1085     }
1086
1087     /// Returns `true` if unstable features should be enabled for the compiler
1088     /// we're building.
1089     fn unstable_features(&self) -> bool {
1090         match &self.config.channel[..] {
1091             "stable" | "beta" => false,
1092             "nightly" | _ => true,
1093         }
1094     }
1095
1096     /// Updates the actual toolstate of a tool.
1097     ///
1098     /// The toolstates are saved to the file specified by the key
1099     /// `rust.save-toolstates` in `config.toml`. If unspecified, nothing will be
1100     /// done. The file is updated immediately after this function completes.
1101     pub fn save_toolstate(&self, tool: &str, state: ToolState) {
1102         if let Some(ref path) = self.config.save_toolstates {
1103             let mut file = t!(fs::OpenOptions::new()
1104                 .create(true)
1105                 .read(true)
1106                 .write(true)
1107                 .open(path));
1108
1109             let mut current_toolstates: HashMap<Box<str>, ToolState> =
1110                 serde_json::from_reader(&mut file).unwrap_or_default();
1111             current_toolstates.insert(tool.into(), state);
1112             t!(file.seek(SeekFrom::Start(0)));
1113             t!(file.set_len(0));
1114             t!(serde_json::to_writer(file, &current_toolstates));
1115         }
1116     }
1117
1118     fn in_tree_crates(&self, root: &str) -> Vec<&Crate> {
1119         let mut ret = Vec::new();
1120         let mut list = vec![INTERNER.intern_str(root)];
1121         let mut visited = HashSet::new();
1122         while let Some(krate) = list.pop() {
1123             let krate = &self.crates[&krate];
1124             if krate.is_local(self) {
1125                 ret.push(krate);
1126             }
1127             for dep in &krate.deps {
1128                 if visited.insert(dep) && dep != "build_helper" {
1129                     list.push(*dep);
1130                 }
1131             }
1132         }
1133         ret
1134     }
1135
1136     fn read_stamp_file(&self, stamp: &Path) -> Vec<(PathBuf, bool)> {
1137         if self.config.dry_run {
1138             return Vec::new();
1139         }
1140
1141         let mut paths = Vec::new();
1142         let contents = t!(fs::read(stamp));
1143         // This is the method we use for extracting paths from the stamp file passed to us. See
1144         // run_cargo for more information (in compile.rs).
1145         for part in contents.split(|b| *b == 0) {
1146             if part.is_empty() {
1147                 continue
1148             }
1149             let host = part[0] as char == 'h';
1150             let path = PathBuf::from(t!(str::from_utf8(&part[1..])));
1151             paths.push((path, host));
1152         }
1153         paths
1154     }
1155
1156     /// Copies a file from `src` to `dst`
1157     pub fn copy(&self, src: &Path, dst: &Path) {
1158         if self.config.dry_run { return; }
1159         self.verbose_than(1, &format!("Copy {:?} to {:?}", src, dst));
1160         let _ = fs::remove_file(&dst);
1161         let metadata = t!(src.symlink_metadata());
1162         if metadata.file_type().is_symlink() {
1163             let link = t!(fs::read_link(src));
1164             t!(symlink_file(link, dst));
1165         } else if let Ok(()) = fs::hard_link(src, dst) {
1166             // Attempt to "easy copy" by creating a hard link
1167             // (symlinks don't work on windows), but if that fails
1168             // just fall back to a slow `copy` operation.
1169         } else {
1170             if let Err(e) = fs::copy(src, dst) {
1171                 panic!("failed to copy `{}` to `{}`: {}", src.display(),
1172                        dst.display(), e)
1173             }
1174             t!(fs::set_permissions(dst, metadata.permissions()));
1175             let atime = FileTime::from_last_access_time(&metadata);
1176             let mtime = FileTime::from_last_modification_time(&metadata);
1177             t!(filetime::set_file_times(dst, atime, mtime));
1178         }
1179     }
1180
1181     /// Search-and-replaces within a file. (Not maximally efficiently: allocates a
1182     /// new string for each replacement.)
1183     pub fn replace_in_file(&self, path: &Path, replacements: &[(&str, &str)]) {
1184         if self.config.dry_run { return; }
1185         let mut contents = String::new();
1186         let mut file = t!(OpenOptions::new().read(true).write(true).open(path));
1187         t!(file.read_to_string(&mut contents));
1188         for &(target, replacement) in replacements {
1189             contents = contents.replace(target, replacement);
1190         }
1191         t!(file.seek(SeekFrom::Start(0)));
1192         t!(file.set_len(0));
1193         t!(file.write_all(contents.as_bytes()));
1194     }
1195
1196     /// Copies the `src` directory recursively to `dst`. Both are assumed to exist
1197     /// when this function is called.
1198     pub fn cp_r(&self, src: &Path, dst: &Path) {
1199         if self.config.dry_run { return; }
1200         for f in self.read_dir(src) {
1201             let path = f.path();
1202             let name = path.file_name().unwrap();
1203             let dst = dst.join(name);
1204             if t!(f.file_type()).is_dir() {
1205                 t!(fs::create_dir_all(&dst));
1206                 self.cp_r(&path, &dst);
1207             } else {
1208                 let _ = fs::remove_file(&dst);
1209                 self.copy(&path, &dst);
1210             }
1211         }
1212     }
1213
1214     /// Copies the `src` directory recursively to `dst`. Both are assumed to exist
1215     /// when this function is called. Unwanted files or directories can be skipped
1216     /// by returning `false` from the filter function.
1217     pub fn cp_filtered(&self, src: &Path, dst: &Path, filter: &dyn Fn(&Path) -> bool) {
1218         // Immediately recurse with an empty relative path
1219         self.recurse_(src, dst, Path::new(""), filter)
1220     }
1221
1222     // Inner function does the actual work
1223     fn recurse_(&self, src: &Path, dst: &Path, relative: &Path, filter: &dyn Fn(&Path) -> bool) {
1224         for f in self.read_dir(src) {
1225             let path = f.path();
1226             let name = path.file_name().unwrap();
1227             let dst = dst.join(name);
1228             let relative = relative.join(name);
1229             // Only copy file or directory if the filter function returns true
1230             if filter(&relative) {
1231                 if t!(f.file_type()).is_dir() {
1232                     let _ = fs::remove_dir_all(&dst);
1233                     self.create_dir(&dst);
1234                     self.recurse_(&path, &dst, &relative, filter);
1235                 } else {
1236                     let _ = fs::remove_file(&dst);
1237                     self.copy(&path, &dst);
1238                 }
1239             }
1240         }
1241     }
1242
1243     fn copy_to_folder(&self, src: &Path, dest_folder: &Path) {
1244         let file_name = src.file_name().unwrap();
1245         let dest = dest_folder.join(file_name);
1246         self.copy(src, &dest);
1247     }
1248
1249     fn install(&self, src: &Path, dstdir: &Path, perms: u32) {
1250         if self.config.dry_run { return; }
1251         let dst = dstdir.join(src.file_name().unwrap());
1252         self.verbose_than(1, &format!("Install {:?} to {:?}", src, dst));
1253         t!(fs::create_dir_all(dstdir));
1254         drop(fs::remove_file(&dst));
1255         {
1256             if !src.exists() {
1257                 panic!("Error: File \"{}\" not found!", src.display());
1258             }
1259             let metadata = t!(src.symlink_metadata());
1260             if let Err(e) = fs::copy(&src, &dst) {
1261                 panic!("failed to copy `{}` to `{}`: {}", src.display(),
1262                        dst.display(), e)
1263             }
1264             t!(fs::set_permissions(&dst, metadata.permissions()));
1265             let atime = FileTime::from_last_access_time(&metadata);
1266             let mtime = FileTime::from_last_modification_time(&metadata);
1267             t!(filetime::set_file_times(&dst, atime, mtime));
1268         }
1269         chmod(&dst, perms);
1270     }
1271
1272     fn create(&self, path: &Path, s: &str) {
1273         if self.config.dry_run { return; }
1274         t!(fs::write(path, s));
1275     }
1276
1277     fn read(&self, path: &Path) -> String {
1278         if self.config.dry_run { return String::new(); }
1279         t!(fs::read_to_string(path))
1280     }
1281
1282     fn create_dir(&self, dir: &Path) {
1283         if self.config.dry_run { return; }
1284         t!(fs::create_dir_all(dir))
1285     }
1286
1287     fn remove_dir(&self, dir: &Path) {
1288         if self.config.dry_run { return; }
1289         t!(fs::remove_dir_all(dir))
1290     }
1291
1292     fn read_dir(&self, dir: &Path) -> impl Iterator<Item=fs::DirEntry> {
1293         let iter = match fs::read_dir(dir) {
1294             Ok(v) => v,
1295             Err(_) if self.config.dry_run => return vec![].into_iter(),
1296             Err(err) => panic!("could not read dir {:?}: {:?}", dir, err),
1297         };
1298         iter.map(|e| t!(e)).collect::<Vec<_>>().into_iter()
1299     }
1300
1301     fn remove(&self, f: &Path) {
1302         if self.config.dry_run { return; }
1303         fs::remove_file(f).unwrap_or_else(|_| panic!("failed to remove {:?}", f));
1304     }
1305 }
1306
1307 #[cfg(unix)]
1308 fn chmod(path: &Path, perms: u32) {
1309     use std::os::unix::fs::*;
1310     t!(fs::set_permissions(path, fs::Permissions::from_mode(perms)));
1311 }
1312 #[cfg(windows)]
1313 fn chmod(_path: &Path, _perms: u32) {}
1314
1315
1316 impl Compiler {
1317     pub fn with_stage(mut self, stage: u32) -> Compiler {
1318         self.stage = stage;
1319         self
1320     }
1321
1322     /// Returns `true` if this is a snapshot compiler for `build`'s configuration
1323     pub fn is_snapshot(&self, build: &Build) -> bool {
1324         self.stage == 0 && self.host == build.build
1325     }
1326
1327     /// Returns if this compiler should be treated as a final stage one in the
1328     /// current build session.
1329     /// This takes into account whether we're performing a full bootstrap or
1330     /// not; don't directly compare the stage with `2`!
1331     pub fn is_final_stage(&self, build: &Build) -> bool {
1332         let final_stage = if build.config.full_bootstrap { 2 } else { 1 };
1333         self.stage >= final_stage
1334     }
1335 }