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