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