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