]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/lib.rs
cb18e14fa36d6c09d25f7d33e84d6164822847b8
[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         // Download rustfmt early so that it can be used in rust-analyzer configs.
658         let _ = &builder::Builder::new(&self).initial_rustfmt();
659         self.maybe_update_submodules();
660
661         if let Subcommand::Format { check, paths } = &self.config.cmd {
662             return format::format(&builder::Builder::new(&self), *check, &paths);
663         }
664
665         if let Subcommand::Clean { all } = self.config.cmd {
666             return clean::clean(self, all);
667         }
668
669         if let Subcommand::Setup { profile } = &self.config.cmd {
670             return setup::setup(&self.config, *profile);
671         }
672
673         {
674             let builder = builder::Builder::new(&self);
675             if let Some(path) = builder.paths.get(0) {
676                 if path == Path::new("nonexistent/path/to/trigger/cargo/metadata") {
677                     return;
678                 }
679             }
680         }
681
682         if !self.config.dry_run {
683             {
684                 self.config.dry_run = true;
685                 let builder = builder::Builder::new(&self);
686                 builder.execute_cli();
687             }
688             self.config.dry_run = false;
689             let builder = builder::Builder::new(&self);
690             builder.execute_cli();
691         } else {
692             let builder = builder::Builder::new(&self);
693             builder.execute_cli();
694         }
695
696         // Check for postponed failures from `test --no-fail-fast`.
697         let failures = self.delayed_failures.borrow();
698         if failures.len() > 0 {
699             eprintln!("\n{} command(s) did not execute successfully:\n", failures.len());
700             for failure in failures.iter() {
701                 eprintln!("  - {}\n", failure);
702             }
703             detail_exit(1);
704         }
705
706         #[cfg(feature = "build-metrics")]
707         self.metrics.persist(self);
708     }
709
710     /// Clear out `dir` if `input` is newer.
711     ///
712     /// After this executes, it will also ensure that `dir` exists.
713     fn clear_if_dirty(&self, dir: &Path, input: &Path) -> bool {
714         let stamp = dir.join(".stamp");
715         let mut cleared = false;
716         if mtime(&stamp) < mtime(input) {
717             self.verbose(&format!("Dirty - {}", dir.display()));
718             let _ = fs::remove_dir_all(dir);
719             cleared = true;
720         } else if stamp.exists() {
721             return cleared;
722         }
723         t!(fs::create_dir_all(dir));
724         t!(File::create(stamp));
725         cleared
726     }
727
728     /// Gets the space-separated set of activated features for the standard
729     /// library.
730     fn std_features(&self, target: TargetSelection) -> String {
731         let mut features = "panic-unwind".to_string();
732
733         match self.config.llvm_libunwind(target) {
734             LlvmLibunwind::InTree => features.push_str(" llvm-libunwind"),
735             LlvmLibunwind::System => features.push_str(" system-llvm-libunwind"),
736             LlvmLibunwind::No => {}
737         }
738         if self.config.backtrace {
739             features.push_str(" backtrace");
740         }
741         if self.config.profiler_enabled(target) {
742             features.push_str(" profiler");
743         }
744         features
745     }
746
747     /// Gets the space-separated set of activated features for the compiler.
748     fn rustc_features(&self, kind: Kind) -> String {
749         let mut features = vec![];
750         if self.config.jemalloc {
751             features.push("jemalloc");
752         }
753         if self.config.llvm_enabled() || kind == Kind::Check {
754             features.push("llvm");
755         }
756         // keep in sync with `bootstrap/compile.rs:rustc_cargo_env`
757         if self.config.rustc_parallel {
758             features.push("rustc_use_parallel_compiler");
759         }
760
761         // If debug logging is on, then we want the default for tracing:
762         // https://github.com/tokio-rs/tracing/blob/3dd5c03d907afdf2c39444a29931833335171554/tracing/src/level_filters.rs#L26
763         // which is everything (including debug/trace/etc.)
764         // if its unset, if debug_assertions is on, then debug_logging will also be on
765         // as well as tracing *ignoring* this feature when debug_assertions is on
766         if !self.config.rust_debug_logging {
767             features.push("max_level_info");
768         }
769
770         features.join(" ")
771     }
772
773     /// Component directory that Cargo will produce output into (e.g.
774     /// release/debug)
775     fn cargo_dir(&self) -> &'static str {
776         if self.config.rust_optimize { "release" } else { "debug" }
777     }
778
779     fn tools_dir(&self, compiler: Compiler) -> PathBuf {
780         let out = self
781             .out
782             .join(&*compiler.host.triple)
783             .join(format!("stage{}-tools-bin", compiler.stage));
784         t!(fs::create_dir_all(&out));
785         out
786     }
787
788     /// Returns the root directory for all output generated in a particular
789     /// stage when running with a particular host compiler.
790     ///
791     /// The mode indicates what the root directory is for.
792     fn stage_out(&self, compiler: Compiler, mode: Mode) -> PathBuf {
793         let suffix = match mode {
794             Mode::Std => "-std",
795             Mode::Rustc => "-rustc",
796             Mode::Codegen => "-codegen",
797             Mode::ToolBootstrap => "-bootstrap-tools",
798             Mode::ToolStd | Mode::ToolRustc => "-tools",
799         };
800         self.out.join(&*compiler.host.triple).join(format!("stage{}{}", compiler.stage, suffix))
801     }
802
803     /// Returns the root output directory for all Cargo output in a given stage,
804     /// running a particular compiler, whether or not we're building the
805     /// standard library, and targeting the specified architecture.
806     fn cargo_out(&self, compiler: Compiler, mode: Mode, target: TargetSelection) -> PathBuf {
807         self.stage_out(compiler, mode).join(&*target.triple).join(self.cargo_dir())
808     }
809
810     /// Root output directory for LLVM compiled for `target`
811     ///
812     /// Note that if LLVM is configured externally then the directory returned
813     /// will likely be empty.
814     fn llvm_out(&self, target: TargetSelection) -> PathBuf {
815         self.out.join(&*target.triple).join("llvm")
816     }
817
818     fn lld_out(&self, target: TargetSelection) -> PathBuf {
819         self.out.join(&*target.triple).join("lld")
820     }
821
822     /// Output directory for all documentation for a target
823     fn doc_out(&self, target: TargetSelection) -> PathBuf {
824         self.out.join(&*target.triple).join("doc")
825     }
826
827     /// Output directory for all JSON-formatted documentation for a target
828     fn json_doc_out(&self, target: TargetSelection) -> PathBuf {
829         self.out.join(&*target.triple).join("json-doc")
830     }
831
832     fn test_out(&self, target: TargetSelection) -> PathBuf {
833         self.out.join(&*target.triple).join("test")
834     }
835
836     /// Output directory for all documentation for a target
837     fn compiler_doc_out(&self, target: TargetSelection) -> PathBuf {
838         self.out.join(&*target.triple).join("compiler-doc")
839     }
840
841     /// Output directory for some generated md crate documentation for a target (temporary)
842     fn md_doc_out(&self, target: TargetSelection) -> Interned<PathBuf> {
843         INTERNER.intern_path(self.out.join(&*target.triple).join("md-doc"))
844     }
845
846     /// Returns `true` if no custom `llvm-config` is set for the specified target.
847     ///
848     /// If no custom `llvm-config` was specified then Rust's llvm will be used.
849     fn is_rust_llvm(&self, target: TargetSelection) -> bool {
850         match self.config.target_config.get(&target) {
851             Some(Target { llvm_has_rust_patches: Some(patched), .. }) => *patched,
852             Some(Target { llvm_config, .. }) => {
853                 // If the user set llvm-config we assume Rust is not patched,
854                 // but first check to see if it was configured by llvm-from-ci.
855                 (self.config.llvm_from_ci && target == self.config.build) || llvm_config.is_none()
856             }
857             None => true,
858         }
859     }
860
861     /// Returns the path to `FileCheck` binary for the specified target
862     fn llvm_filecheck(&self, target: TargetSelection) -> PathBuf {
863         let target_config = self.config.target_config.get(&target);
864         if let Some(s) = target_config.and_then(|c| c.llvm_filecheck.as_ref()) {
865             s.to_path_buf()
866         } else if let Some(s) = target_config.and_then(|c| c.llvm_config.as_ref()) {
867             let llvm_bindir = output(Command::new(s).arg("--bindir"));
868             let filecheck = Path::new(llvm_bindir.trim()).join(exe("FileCheck", target));
869             if filecheck.exists() {
870                 filecheck
871             } else {
872                 // On Fedora the system LLVM installs FileCheck in the
873                 // llvm subdirectory of the libdir.
874                 let llvm_libdir = output(Command::new(s).arg("--libdir"));
875                 let lib_filecheck =
876                     Path::new(llvm_libdir.trim()).join("llvm").join(exe("FileCheck", target));
877                 if lib_filecheck.exists() {
878                     lib_filecheck
879                 } else {
880                     // Return the most normal file name, even though
881                     // it doesn't exist, so that any error message
882                     // refers to that.
883                     filecheck
884                 }
885             }
886         } else {
887             let base = self.llvm_out(target).join("build");
888             let base = if !self.ninja() && target.contains("msvc") {
889                 if self.config.llvm_optimize {
890                     if self.config.llvm_release_debuginfo {
891                         base.join("RelWithDebInfo")
892                     } else {
893                         base.join("Release")
894                     }
895                 } else {
896                     base.join("Debug")
897                 }
898             } else {
899                 base
900             };
901             base.join("bin").join(exe("FileCheck", target))
902         }
903     }
904
905     /// Directory for libraries built from C/C++ code and shared between stages.
906     fn native_dir(&self, target: TargetSelection) -> PathBuf {
907         self.out.join(&*target.triple).join("native")
908     }
909
910     /// Root output directory for rust_test_helpers library compiled for
911     /// `target`
912     fn test_helpers_out(&self, target: TargetSelection) -> PathBuf {
913         self.native_dir(target).join("rust-test-helpers")
914     }
915
916     /// Adds the `RUST_TEST_THREADS` env var if necessary
917     fn add_rust_test_threads(&self, cmd: &mut Command) {
918         if env::var_os("RUST_TEST_THREADS").is_none() {
919             cmd.env("RUST_TEST_THREADS", self.jobs().to_string());
920         }
921     }
922
923     /// Returns the libdir of the snapshot compiler.
924     fn rustc_snapshot_libdir(&self) -> PathBuf {
925         self.rustc_snapshot_sysroot().join(libdir(self.config.build))
926     }
927
928     /// Returns the sysroot of the snapshot compiler.
929     fn rustc_snapshot_sysroot(&self) -> &Path {
930         static SYSROOT_CACHE: OnceCell<PathBuf> = once_cell::sync::OnceCell::new();
931         SYSROOT_CACHE.get_or_init(|| {
932             let mut rustc = Command::new(&self.initial_rustc);
933             rustc.args(&["--print", "sysroot"]);
934             output(&mut rustc).trim().into()
935         })
936     }
937
938     /// Runs a command, printing out nice contextual information if it fails.
939     fn run(&self, cmd: &mut Command) {
940         if self.config.dry_run {
941             return;
942         }
943         self.verbose(&format!("running: {:?}", cmd));
944         run(cmd, self.is_verbose())
945     }
946
947     /// Runs a command, printing out nice contextual information if it fails.
948     fn run_quiet(&self, cmd: &mut Command) {
949         if self.config.dry_run {
950             return;
951         }
952         self.verbose(&format!("running: {:?}", cmd));
953         run_suppressed(cmd)
954     }
955
956     /// Runs a command, printing out nice contextual information if it fails.
957     /// Exits if the command failed to execute at all, otherwise returns its
958     /// `status.success()`.
959     fn try_run(&self, cmd: &mut Command) -> bool {
960         if self.config.dry_run {
961             return true;
962         }
963         self.verbose(&format!("running: {:?}", cmd));
964         try_run(cmd, self.is_verbose())
965     }
966
967     /// Runs a command, printing out nice contextual information if it fails.
968     /// Exits if the command failed to execute at all, otherwise returns its
969     /// `status.success()`.
970     fn try_run_quiet(&self, cmd: &mut Command) -> bool {
971         if self.config.dry_run {
972             return true;
973         }
974         self.verbose(&format!("running: {:?}", cmd));
975         try_run_suppressed(cmd)
976     }
977
978     /// Runs a command, printing out nice contextual information if it fails.
979     /// Returns false if do not execute at all, otherwise returns its
980     /// `status.success()`.
981     fn check_run(&self, cmd: &mut Command) -> bool {
982         if self.config.dry_run {
983             return true;
984         }
985         self.verbose(&format!("running: {:?}", cmd));
986         check_run(cmd, self.is_verbose())
987     }
988
989     pub fn is_verbose(&self) -> bool {
990         self.verbosity > 0
991     }
992
993     /// Prints a message if this build is configured in verbose mode.
994     fn verbose(&self, msg: &str) {
995         if self.is_verbose() {
996             println!("{}", msg);
997         }
998     }
999
1000     pub fn is_verbose_than(&self, level: usize) -> bool {
1001         self.verbosity > level
1002     }
1003
1004     /// Prints a message if this build is configured in more verbose mode than `level`.
1005     fn verbose_than(&self, level: usize, msg: &str) {
1006         if self.is_verbose_than(level) {
1007             println!("{}", msg);
1008         }
1009     }
1010
1011     fn info(&self, msg: &str) {
1012         if self.config.dry_run {
1013             return;
1014         }
1015         println!("{}", msg);
1016     }
1017
1018     /// Returns the number of parallel jobs that have been configured for this
1019     /// build.
1020     fn jobs(&self) -> u32 {
1021         self.config.jobs.unwrap_or_else(|| {
1022             std::thread::available_parallelism().map_or(1, std::num::NonZeroUsize::get) as u32
1023         })
1024     }
1025
1026     fn debuginfo_map_to(&self, which: GitRepo) -> Option<String> {
1027         if !self.config.rust_remap_debuginfo {
1028             return None;
1029         }
1030
1031         match which {
1032             GitRepo::Rustc => {
1033                 let sha = self.rust_sha().unwrap_or(&self.version);
1034                 Some(format!("/rustc/{}", sha))
1035             }
1036             GitRepo::Llvm => Some(String::from("/rustc/llvm")),
1037         }
1038     }
1039
1040     /// Returns the path to the C compiler for the target specified.
1041     fn cc(&self, target: TargetSelection) -> &Path {
1042         self.cc[&target].path()
1043     }
1044
1045     /// Returns a list of flags to pass to the C compiler for the target
1046     /// specified.
1047     fn cflags(&self, target: TargetSelection, which: GitRepo, c: CLang) -> Vec<String> {
1048         let base = match c {
1049             CLang::C => &self.cc[&target],
1050             CLang::Cxx => &self.cxx[&target],
1051         };
1052
1053         // Filter out -O and /O (the optimization flags) that we picked up from
1054         // cc-rs because the build scripts will determine that for themselves.
1055         let mut base = base
1056             .args()
1057             .iter()
1058             .map(|s| s.to_string_lossy().into_owned())
1059             .filter(|s| !s.starts_with("-O") && !s.starts_with("/O"))
1060             .collect::<Vec<String>>();
1061
1062         // If we're compiling on macOS then we add a few unconditional flags
1063         // indicating that we want libc++ (more filled out than libstdc++) and
1064         // we want to compile for 10.7. This way we can ensure that
1065         // LLVM/etc are all properly compiled.
1066         if target.contains("apple-darwin") {
1067             base.push("-stdlib=libc++".into());
1068         }
1069
1070         // Work around an apparently bad MinGW / GCC optimization,
1071         // See: https://lists.llvm.org/pipermail/cfe-dev/2016-December/051980.html
1072         // See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78936
1073         if &*target.triple == "i686-pc-windows-gnu" {
1074             base.push("-fno-omit-frame-pointer".into());
1075         }
1076
1077         if let Some(map_to) = self.debuginfo_map_to(which) {
1078             let map = format!("{}={}", self.src.display(), map_to);
1079             let cc = self.cc(target);
1080             if cc.ends_with("clang") || cc.ends_with("gcc") {
1081                 base.push(format!("-fdebug-prefix-map={}", map));
1082             } else if cc.ends_with("clang-cl.exe") {
1083                 base.push("-Xclang".into());
1084                 base.push(format!("-fdebug-prefix-map={}", map));
1085             }
1086         }
1087         base
1088     }
1089
1090     /// Returns the path to the `ar` archive utility for the target specified.
1091     fn ar(&self, target: TargetSelection) -> Option<&Path> {
1092         self.ar.get(&target).map(|p| &**p)
1093     }
1094
1095     /// Returns the path to the `ranlib` utility for the target specified.
1096     fn ranlib(&self, target: TargetSelection) -> Option<&Path> {
1097         self.ranlib.get(&target).map(|p| &**p)
1098     }
1099
1100     /// Returns the path to the C++ compiler for the target specified.
1101     fn cxx(&self, target: TargetSelection) -> Result<&Path, String> {
1102         match self.cxx.get(&target) {
1103             Some(p) => Ok(p.path()),
1104             None => {
1105                 Err(format!("target `{}` is not configured as a host, only as a target", target))
1106             }
1107         }
1108     }
1109
1110     /// Returns the path to the linker for the given target if it needs to be overridden.
1111     fn linker(&self, target: TargetSelection) -> Option<&Path> {
1112         if let Some(linker) = self.config.target_config.get(&target).and_then(|c| c.linker.as_ref())
1113         {
1114             Some(linker)
1115         } else if target.contains("vxworks") {
1116             // need to use CXX compiler as linker to resolve the exception functions
1117             // that are only existed in CXX libraries
1118             Some(self.cxx[&target].path())
1119         } else if target != self.config.build
1120             && util::use_host_linker(target)
1121             && !target.contains("msvc")
1122         {
1123             Some(self.cc(target))
1124         } else if self.config.use_lld && !self.is_fuse_ld_lld(target) && self.build == target {
1125             Some(&self.initial_lld)
1126         } else {
1127             None
1128         }
1129     }
1130
1131     // LLD is used through `-fuse-ld=lld` rather than directly.
1132     // Only MSVC targets use LLD directly at the moment.
1133     fn is_fuse_ld_lld(&self, target: TargetSelection) -> bool {
1134         self.config.use_lld && !target.contains("msvc")
1135     }
1136
1137     fn lld_flags(&self, target: TargetSelection) -> impl Iterator<Item = String> {
1138         let mut options = [None, None];
1139
1140         if self.config.use_lld {
1141             if self.is_fuse_ld_lld(target) {
1142                 options[0] = Some("-Clink-arg=-fuse-ld=lld".to_string());
1143             }
1144
1145             let threads = if target.contains("windows") { "/threads:1" } else { "--threads=1" };
1146             options[1] = Some(format!("-Clink-arg=-Wl,{}", threads));
1147         }
1148
1149         IntoIterator::into_iter(options).flatten()
1150     }
1151
1152     /// Returns if this target should statically link the C runtime, if specified
1153     fn crt_static(&self, target: TargetSelection) -> Option<bool> {
1154         if target.contains("pc-windows-msvc") {
1155             Some(true)
1156         } else {
1157             self.config.target_config.get(&target).and_then(|t| t.crt_static)
1158         }
1159     }
1160
1161     /// Returns the "musl root" for this `target`, if defined
1162     fn musl_root(&self, target: TargetSelection) -> Option<&Path> {
1163         self.config
1164             .target_config
1165             .get(&target)
1166             .and_then(|t| t.musl_root.as_ref())
1167             .or_else(|| self.config.musl_root.as_ref())
1168             .map(|p| &**p)
1169     }
1170
1171     /// Returns the "musl libdir" for this `target`.
1172     fn musl_libdir(&self, target: TargetSelection) -> Option<PathBuf> {
1173         let t = self.config.target_config.get(&target)?;
1174         if let libdir @ Some(_) = &t.musl_libdir {
1175             return libdir.clone();
1176         }
1177         self.musl_root(target).map(|root| root.join("lib"))
1178     }
1179
1180     /// Returns the sysroot for the wasi target, if defined
1181     fn wasi_root(&self, target: TargetSelection) -> Option<&Path> {
1182         self.config.target_config.get(&target).and_then(|t| t.wasi_root.as_ref()).map(|p| &**p)
1183     }
1184
1185     /// Returns `true` if this is a no-std `target`, if defined
1186     fn no_std(&self, target: TargetSelection) -> Option<bool> {
1187         self.config.target_config.get(&target).map(|t| t.no_std)
1188     }
1189
1190     /// Returns `true` if the target will be tested using the `remote-test-client`
1191     /// and `remote-test-server` binaries.
1192     fn remote_tested(&self, target: TargetSelection) -> bool {
1193         self.qemu_rootfs(target).is_some()
1194             || target.contains("android")
1195             || env::var_os("TEST_DEVICE_ADDR").is_some()
1196     }
1197
1198     /// Returns the root of the "rootfs" image that this target will be using,
1199     /// if one was configured.
1200     ///
1201     /// If `Some` is returned then that means that tests for this target are
1202     /// emulated with QEMU and binaries will need to be shipped to the emulator.
1203     fn qemu_rootfs(&self, target: TargetSelection) -> Option<&Path> {
1204         self.config.target_config.get(&target).and_then(|t| t.qemu_rootfs.as_ref()).map(|p| &**p)
1205     }
1206
1207     /// Path to the python interpreter to use
1208     fn python(&self) -> &Path {
1209         if self.config.build.ends_with("apple-darwin") {
1210             // Force /usr/bin/python3 on macOS for LLDB tests because we're loading the
1211             // LLDB plugin's compiled module which only works with the system python
1212             // (namely not Homebrew-installed python)
1213             Path::new("/usr/bin/python3")
1214         } else {
1215             self.config
1216                 .python
1217                 .as_ref()
1218                 .expect("python is required for running LLDB or rustdoc tests")
1219         }
1220     }
1221
1222     /// Temporary directory that extended error information is emitted to.
1223     fn extended_error_dir(&self) -> PathBuf {
1224         self.out.join("tmp/extended-error-metadata")
1225     }
1226
1227     /// Tests whether the `compiler` compiling for `target` should be forced to
1228     /// use a stage1 compiler instead.
1229     ///
1230     /// Currently, by default, the build system does not perform a "full
1231     /// bootstrap" by default where we compile the compiler three times.
1232     /// Instead, we compile the compiler two times. The final stage (stage2)
1233     /// just copies the libraries from the previous stage, which is what this
1234     /// method detects.
1235     ///
1236     /// Here we return `true` if:
1237     ///
1238     /// * The build isn't performing a full bootstrap
1239     /// * The `compiler` is in the final stage, 2
1240     /// * We're not cross-compiling, so the artifacts are already available in
1241     ///   stage1
1242     ///
1243     /// When all of these conditions are met the build will lift artifacts from
1244     /// the previous stage forward.
1245     fn force_use_stage1(&self, compiler: Compiler, target: TargetSelection) -> bool {
1246         !self.config.full_bootstrap
1247             && compiler.stage >= 2
1248             && (self.hosts.iter().any(|h| *h == target) || target == self.build)
1249     }
1250
1251     /// Given `num` in the form "a.b.c" return a "release string" which
1252     /// describes the release version number.
1253     ///
1254     /// For example on nightly this returns "a.b.c-nightly", on beta it returns
1255     /// "a.b.c-beta.1" and on stable it just returns "a.b.c".
1256     fn release(&self, num: &str) -> String {
1257         match &self.config.channel[..] {
1258             "stable" => num.to_string(),
1259             "beta" => {
1260                 if self.rust_info.is_git() && !self.config.ignore_git {
1261                     format!("{}-beta.{}", num, self.beta_prerelease_version())
1262                 } else {
1263                     format!("{}-beta", num)
1264                 }
1265             }
1266             "nightly" => format!("{}-nightly", num),
1267             _ => format!("{}-dev", num),
1268         }
1269     }
1270
1271     fn beta_prerelease_version(&self) -> u32 {
1272         if let Some(s) = self.prerelease_version.get() {
1273             return s;
1274         }
1275
1276         // Figure out how many merge commits happened since we branched off master.
1277         // That's our beta number!
1278         // (Note that we use a `..` range, not the `...` symmetric difference.)
1279         let count =
1280             output(self.config.git().arg("rev-list").arg("--count").arg("--merges").arg(format!(
1281                 "refs/remotes/origin/{}..HEAD",
1282                 self.config.stage0_metadata.config.nightly_branch
1283             )));
1284         let n = count.trim().parse().unwrap();
1285         self.prerelease_version.set(Some(n));
1286         n
1287     }
1288
1289     /// Returns the value of `release` above for Rust itself.
1290     fn rust_release(&self) -> String {
1291         self.release(&self.version)
1292     }
1293
1294     /// Returns the "package version" for a component given the `num` release
1295     /// number.
1296     ///
1297     /// The package version is typically what shows up in the names of tarballs.
1298     /// For channels like beta/nightly it's just the channel name, otherwise
1299     /// it's the `num` provided.
1300     fn package_vers(&self, num: &str) -> String {
1301         match &self.config.channel[..] {
1302             "stable" => num.to_string(),
1303             "beta" => "beta".to_string(),
1304             "nightly" => "nightly".to_string(),
1305             _ => format!("{}-dev", num),
1306         }
1307     }
1308
1309     /// Returns the value of `package_vers` above for Rust itself.
1310     fn rust_package_vers(&self) -> String {
1311         self.package_vers(&self.version)
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 }