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