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