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