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