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