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