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