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