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