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