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