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