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