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