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