]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/lib.rs
Merge from rustc
[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         if let Subcommand::Clean { all } = self.config.cmd {
731             return clean::clean(self, all);
732         }
733
734         // Download rustfmt early so that it can be used in rust-analyzer configs.
735         let _ = &builder::Builder::new(&self).initial_rustfmt();
736
737         {
738             let builder = builder::Builder::new(&self);
739             if let Some(path) = builder.paths.get(0) {
740                 if path == Path::new("nonexistent/path/to/trigger/cargo/metadata") {
741                     return;
742                 }
743             }
744         }
745
746         if !self.config.dry_run() {
747             {
748                 self.config.dry_run = DryRun::SelfCheck;
749                 let builder = builder::Builder::new(&self);
750                 builder.execute_cli();
751             }
752             self.config.dry_run = DryRun::Disabled;
753             let builder = builder::Builder::new(&self);
754             builder.execute_cli();
755         } else {
756             let builder = builder::Builder::new(&self);
757             builder.execute_cli();
758         }
759
760         // Check for postponed failures from `test --no-fail-fast`.
761         let failures = self.delayed_failures.borrow();
762         if failures.len() > 0 {
763             eprintln!("\n{} command(s) did not execute successfully:\n", failures.len());
764             for failure in failures.iter() {
765                 eprintln!("  - {}\n", failure);
766             }
767             detail_exit(1);
768         }
769
770         #[cfg(feature = "build-metrics")]
771         self.metrics.persist(self);
772     }
773
774     /// Clear out `dir` if `input` is newer.
775     ///
776     /// After this executes, it will also ensure that `dir` exists.
777     fn clear_if_dirty(&self, dir: &Path, input: &Path) -> bool {
778         let stamp = dir.join(".stamp");
779         let mut cleared = false;
780         if mtime(&stamp) < mtime(input) {
781             self.verbose(&format!("Dirty - {}", dir.display()));
782             let _ = fs::remove_dir_all(dir);
783             cleared = true;
784         } else if stamp.exists() {
785             return cleared;
786         }
787         t!(fs::create_dir_all(dir));
788         t!(File::create(stamp));
789         cleared
790     }
791
792     fn rust_info(&self) -> &GitInfo {
793         &self.config.rust_info
794     }
795
796     /// Gets the space-separated set of activated features for the standard
797     /// library.
798     fn std_features(&self, target: TargetSelection) -> String {
799         let mut features = " panic-unwind".to_string();
800
801         match self.config.llvm_libunwind(target) {
802             LlvmLibunwind::InTree => features.push_str(" llvm-libunwind"),
803             LlvmLibunwind::System => features.push_str(" system-llvm-libunwind"),
804             LlvmLibunwind::No => {}
805         }
806         if self.config.backtrace {
807             features.push_str(" backtrace");
808         }
809         if self.config.profiler_enabled(target) {
810             features.push_str(" profiler");
811         }
812         features
813     }
814
815     /// Gets the space-separated set of activated features for the compiler.
816     fn rustc_features(&self, kind: Kind) -> String {
817         let mut features = vec![];
818         if self.config.jemalloc {
819             features.push("jemalloc");
820         }
821         if self.config.llvm_enabled() || kind == Kind::Check {
822             features.push("llvm");
823         }
824         // keep in sync with `bootstrap/compile.rs:rustc_cargo_env`
825         if self.config.rustc_parallel {
826             features.push("rustc_use_parallel_compiler");
827         }
828
829         // If debug logging is on, then we want the default for tracing:
830         // https://github.com/tokio-rs/tracing/blob/3dd5c03d907afdf2c39444a29931833335171554/tracing/src/level_filters.rs#L26
831         // which is everything (including debug/trace/etc.)
832         // if its unset, if debug_assertions is on, then debug_logging will also be on
833         // as well as tracing *ignoring* this feature when debug_assertions is on
834         if !self.config.rust_debug_logging {
835             features.push("max_level_info");
836         }
837
838         features.join(" ")
839     }
840
841     /// Component directory that Cargo will produce output into (e.g.
842     /// release/debug)
843     fn cargo_dir(&self) -> &'static str {
844         if self.config.rust_optimize { "release" } else { "debug" }
845     }
846
847     fn tools_dir(&self, compiler: Compiler) -> PathBuf {
848         let out = self
849             .out
850             .join(&*compiler.host.triple)
851             .join(format!("stage{}-tools-bin", compiler.stage));
852         t!(fs::create_dir_all(&out));
853         out
854     }
855
856     /// Returns the root directory for all output generated in a particular
857     /// stage when running with a particular host compiler.
858     ///
859     /// The mode indicates what the root directory is for.
860     fn stage_out(&self, compiler: Compiler, mode: Mode) -> PathBuf {
861         let suffix = match mode {
862             Mode::Std => "-std",
863             Mode::Rustc => "-rustc",
864             Mode::Codegen => "-codegen",
865             Mode::ToolBootstrap => "-bootstrap-tools",
866             Mode::ToolStd | Mode::ToolRustc => "-tools",
867         };
868         self.out.join(&*compiler.host.triple).join(format!("stage{}{}", compiler.stage, suffix))
869     }
870
871     /// Returns the root output directory for all Cargo output in a given stage,
872     /// running a particular compiler, whether or not we're building the
873     /// standard library, and targeting the specified architecture.
874     fn cargo_out(&self, compiler: Compiler, mode: Mode, target: TargetSelection) -> PathBuf {
875         self.stage_out(compiler, mode).join(&*target.triple).join(self.cargo_dir())
876     }
877
878     /// Root output directory for LLVM compiled for `target`
879     ///
880     /// Note that if LLVM is configured externally then the directory returned
881     /// will likely be empty.
882     fn llvm_out(&self, target: TargetSelection) -> PathBuf {
883         self.out.join(&*target.triple).join("llvm")
884     }
885
886     fn lld_out(&self, target: TargetSelection) -> PathBuf {
887         self.out.join(&*target.triple).join("lld")
888     }
889
890     /// Output directory for all documentation for a target
891     fn doc_out(&self, target: TargetSelection) -> PathBuf {
892         self.out.join(&*target.triple).join("doc")
893     }
894
895     /// Output directory for all JSON-formatted documentation for a target
896     fn json_doc_out(&self, target: TargetSelection) -> PathBuf {
897         self.out.join(&*target.triple).join("json-doc")
898     }
899
900     fn test_out(&self, target: TargetSelection) -> PathBuf {
901         self.out.join(&*target.triple).join("test")
902     }
903
904     /// Output directory for all documentation for a target
905     fn compiler_doc_out(&self, target: TargetSelection) -> PathBuf {
906         self.out.join(&*target.triple).join("compiler-doc")
907     }
908
909     /// Output directory for some generated md crate documentation for a target (temporary)
910     fn md_doc_out(&self, target: TargetSelection) -> Interned<PathBuf> {
911         INTERNER.intern_path(self.out.join(&*target.triple).join("md-doc"))
912     }
913
914     /// Returns `true` if no custom `llvm-config` is set for the specified target.
915     ///
916     /// If no custom `llvm-config` was specified then Rust's llvm will be used.
917     fn is_rust_llvm(&self, target: TargetSelection) -> bool {
918         match self.config.target_config.get(&target) {
919             Some(Target { llvm_has_rust_patches: Some(patched), .. }) => *patched,
920             Some(Target { llvm_config, .. }) => {
921                 // If the user set llvm-config we assume Rust is not patched,
922                 // but first check to see if it was configured by llvm-from-ci.
923                 (self.config.llvm_from_ci && target == self.config.build) || llvm_config.is_none()
924             }
925             None => true,
926         }
927     }
928
929     /// Returns the path to `FileCheck` binary for the specified target
930     fn llvm_filecheck(&self, target: TargetSelection) -> PathBuf {
931         let target_config = self.config.target_config.get(&target);
932         if let Some(s) = target_config.and_then(|c| c.llvm_filecheck.as_ref()) {
933             s.to_path_buf()
934         } else if let Some(s) = target_config.and_then(|c| c.llvm_config.as_ref()) {
935             let llvm_bindir = output(Command::new(s).arg("--bindir"));
936             let filecheck = Path::new(llvm_bindir.trim()).join(exe("FileCheck", target));
937             if filecheck.exists() {
938                 filecheck
939             } else {
940                 // On Fedora the system LLVM installs FileCheck in the
941                 // llvm subdirectory of the libdir.
942                 let llvm_libdir = output(Command::new(s).arg("--libdir"));
943                 let lib_filecheck =
944                     Path::new(llvm_libdir.trim()).join("llvm").join(exe("FileCheck", target));
945                 if lib_filecheck.exists() {
946                     lib_filecheck
947                 } else {
948                     // Return the most normal file name, even though
949                     // it doesn't exist, so that any error message
950                     // refers to that.
951                     filecheck
952                 }
953             }
954         } else {
955             let base = self.llvm_out(target).join("build");
956             let base = if !self.ninja() && target.contains("msvc") {
957                 if self.config.llvm_optimize {
958                     if self.config.llvm_release_debuginfo {
959                         base.join("RelWithDebInfo")
960                     } else {
961                         base.join("Release")
962                     }
963                 } else {
964                     base.join("Debug")
965                 }
966             } else {
967                 base
968             };
969             base.join("bin").join(exe("FileCheck", target))
970         }
971     }
972
973     /// Directory for libraries built from C/C++ code and shared between stages.
974     fn native_dir(&self, target: TargetSelection) -> PathBuf {
975         self.out.join(&*target.triple).join("native")
976     }
977
978     /// Root output directory for rust_test_helpers library compiled for
979     /// `target`
980     fn test_helpers_out(&self, target: TargetSelection) -> PathBuf {
981         self.native_dir(target).join("rust-test-helpers")
982     }
983
984     /// Adds the `RUST_TEST_THREADS` env var if necessary
985     fn add_rust_test_threads(&self, cmd: &mut Command) {
986         if env::var_os("RUST_TEST_THREADS").is_none() {
987             cmd.env("RUST_TEST_THREADS", self.jobs().to_string());
988         }
989     }
990
991     /// Returns the libdir of the snapshot compiler.
992     fn rustc_snapshot_libdir(&self) -> PathBuf {
993         self.rustc_snapshot_sysroot().join(libdir(self.config.build))
994     }
995
996     /// Returns the sysroot of the snapshot compiler.
997     fn rustc_snapshot_sysroot(&self) -> &Path {
998         static SYSROOT_CACHE: OnceCell<PathBuf> = once_cell::sync::OnceCell::new();
999         SYSROOT_CACHE.get_or_init(|| {
1000             let mut rustc = Command::new(&self.initial_rustc);
1001             rustc.args(&["--print", "sysroot"]);
1002             output(&mut rustc).trim().into()
1003         })
1004     }
1005
1006     /// Runs a command, printing out nice contextual information if it fails.
1007     fn run(&self, cmd: &mut Command) {
1008         if self.config.dry_run() {
1009             return;
1010         }
1011         self.verbose(&format!("running: {:?}", cmd));
1012         run(cmd, self.is_verbose())
1013     }
1014
1015     /// Runs a command, printing out nice contextual information if it fails.
1016     fn run_quiet(&self, cmd: &mut Command) {
1017         if self.config.dry_run() {
1018             return;
1019         }
1020         self.verbose(&format!("running: {:?}", cmd));
1021         run_suppressed(cmd)
1022     }
1023
1024     /// Runs a command, printing out nice contextual information if it fails.
1025     /// Exits if the command failed to execute at all, otherwise returns its
1026     /// `status.success()`.
1027     fn try_run_quiet(&self, cmd: &mut Command) -> bool {
1028         if self.config.dry_run() {
1029             return true;
1030         }
1031         self.verbose(&format!("running: {:?}", cmd));
1032         try_run_suppressed(cmd)
1033     }
1034
1035     pub fn is_verbose_than(&self, level: usize) -> bool {
1036         self.verbosity > level
1037     }
1038
1039     /// Prints a message if this build is configured in more verbose mode than `level`.
1040     fn verbose_than(&self, level: usize, msg: &str) {
1041         if self.is_verbose_than(level) {
1042             println!("{}", msg);
1043         }
1044     }
1045
1046     fn info(&self, msg: &str) {
1047         match self.config.dry_run {
1048             DryRun::SelfCheck => return,
1049             DryRun::Disabled | DryRun::UserSelected => {
1050                 println!("{}", msg);
1051             }
1052         }
1053     }
1054
1055     /// Returns the number of parallel jobs that have been configured for this
1056     /// build.
1057     fn jobs(&self) -> u32 {
1058         self.config.jobs.unwrap_or_else(|| {
1059             std::thread::available_parallelism().map_or(1, std::num::NonZeroUsize::get) as u32
1060         })
1061     }
1062
1063     fn debuginfo_map_to(&self, which: GitRepo) -> Option<String> {
1064         if !self.config.rust_remap_debuginfo {
1065             return None;
1066         }
1067
1068         match which {
1069             GitRepo::Rustc => {
1070                 let sha = self.rust_sha().unwrap_or(&self.version);
1071                 Some(format!("/rustc/{}", sha))
1072             }
1073             GitRepo::Llvm => Some(String::from("/rustc/llvm")),
1074         }
1075     }
1076
1077     /// Returns the path to the C compiler for the target specified.
1078     fn cc(&self, target: TargetSelection) -> &Path {
1079         self.cc[&target].path()
1080     }
1081
1082     /// Returns a list of flags to pass to the C compiler for the target
1083     /// specified.
1084     fn cflags(&self, target: TargetSelection, which: GitRepo, c: CLang) -> Vec<String> {
1085         let base = match c {
1086             CLang::C => &self.cc[&target],
1087             CLang::Cxx => &self.cxx[&target],
1088         };
1089
1090         // Filter out -O and /O (the optimization flags) that we picked up from
1091         // cc-rs because the build scripts will determine that for themselves.
1092         let mut base = base
1093             .args()
1094             .iter()
1095             .map(|s| s.to_string_lossy().into_owned())
1096             .filter(|s| !s.starts_with("-O") && !s.starts_with("/O"))
1097             .collect::<Vec<String>>();
1098
1099         // If we're compiling on macOS then we add a few unconditional flags
1100         // indicating that we want libc++ (more filled out than libstdc++) and
1101         // we want to compile for 10.7. This way we can ensure that
1102         // LLVM/etc are all properly compiled.
1103         if target.contains("apple-darwin") {
1104             base.push("-stdlib=libc++".into());
1105         }
1106
1107         // Work around an apparently bad MinGW / GCC optimization,
1108         // See: https://lists.llvm.org/pipermail/cfe-dev/2016-December/051980.html
1109         // See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78936
1110         if &*target.triple == "i686-pc-windows-gnu" {
1111             base.push("-fno-omit-frame-pointer".into());
1112         }
1113
1114         if let Some(map_to) = self.debuginfo_map_to(which) {
1115             let map = format!("{}={}", self.src.display(), map_to);
1116             let cc = self.cc(target);
1117             if cc.ends_with("clang") || cc.ends_with("gcc") {
1118                 base.push(format!("-fdebug-prefix-map={}", map));
1119             } else if cc.ends_with("clang-cl.exe") {
1120                 base.push("-Xclang".into());
1121                 base.push(format!("-fdebug-prefix-map={}", map));
1122             }
1123         }
1124         base
1125     }
1126
1127     /// Returns the path to the `ar` archive utility for the target specified.
1128     fn ar(&self, target: TargetSelection) -> Option<&Path> {
1129         self.ar.get(&target).map(|p| &**p)
1130     }
1131
1132     /// Returns the path to the `ranlib` utility for the target specified.
1133     fn ranlib(&self, target: TargetSelection) -> Option<&Path> {
1134         self.ranlib.get(&target).map(|p| &**p)
1135     }
1136
1137     /// Returns the path to the C++ compiler for the target specified.
1138     fn cxx(&self, target: TargetSelection) -> Result<&Path, String> {
1139         match self.cxx.get(&target) {
1140             Some(p) => Ok(p.path()),
1141             None => {
1142                 Err(format!("target `{}` is not configured as a host, only as a target", target))
1143             }
1144         }
1145     }
1146
1147     /// Returns the path to the linker for the given target if it needs to be overridden.
1148     fn linker(&self, target: TargetSelection) -> Option<&Path> {
1149         if let Some(linker) = self.config.target_config.get(&target).and_then(|c| c.linker.as_ref())
1150         {
1151             Some(linker)
1152         } else if target.contains("vxworks") {
1153             // need to use CXX compiler as linker to resolve the exception functions
1154             // that are only existed in CXX libraries
1155             Some(self.cxx[&target].path())
1156         } else if target != self.config.build
1157             && util::use_host_linker(target)
1158             && !target.contains("msvc")
1159         {
1160             Some(self.cc(target))
1161         } else if self.config.use_lld && !self.is_fuse_ld_lld(target) && self.build == target {
1162             Some(&self.initial_lld)
1163         } else {
1164             None
1165         }
1166     }
1167
1168     // LLD is used through `-fuse-ld=lld` rather than directly.
1169     // Only MSVC targets use LLD directly at the moment.
1170     fn is_fuse_ld_lld(&self, target: TargetSelection) -> bool {
1171         self.config.use_lld && !target.contains("msvc")
1172     }
1173
1174     fn lld_flags(&self, target: TargetSelection) -> impl Iterator<Item = String> {
1175         let mut options = [None, None];
1176
1177         if self.config.use_lld {
1178             if self.is_fuse_ld_lld(target) {
1179                 options[0] = Some("-Clink-arg=-fuse-ld=lld".to_string());
1180             }
1181
1182             let no_threads = util::lld_flag_no_threads(target.contains("windows"));
1183             options[1] = Some(format!("-Clink-arg=-Wl,{}", no_threads));
1184         }
1185
1186         IntoIterator::into_iter(options).flatten()
1187     }
1188
1189     /// Returns if this target should statically link the C runtime, if specified
1190     fn crt_static(&self, target: TargetSelection) -> Option<bool> {
1191         if target.contains("pc-windows-msvc") {
1192             Some(true)
1193         } else {
1194             self.config.target_config.get(&target).and_then(|t| t.crt_static)
1195         }
1196     }
1197
1198     /// Returns the "musl root" for this `target`, if defined
1199     fn musl_root(&self, target: TargetSelection) -> Option<&Path> {
1200         self.config
1201             .target_config
1202             .get(&target)
1203             .and_then(|t| t.musl_root.as_ref())
1204             .or_else(|| self.config.musl_root.as_ref())
1205             .map(|p| &**p)
1206     }
1207
1208     /// Returns the "musl libdir" for this `target`.
1209     fn musl_libdir(&self, target: TargetSelection) -> Option<PathBuf> {
1210         let t = self.config.target_config.get(&target)?;
1211         if let libdir @ Some(_) = &t.musl_libdir {
1212             return libdir.clone();
1213         }
1214         self.musl_root(target).map(|root| root.join("lib"))
1215     }
1216
1217     /// Returns the sysroot for the wasi target, if defined
1218     fn wasi_root(&self, target: TargetSelection) -> Option<&Path> {
1219         self.config.target_config.get(&target).and_then(|t| t.wasi_root.as_ref()).map(|p| &**p)
1220     }
1221
1222     /// Returns `true` if this is a no-std `target`, if defined
1223     fn no_std(&self, target: TargetSelection) -> Option<bool> {
1224         self.config.target_config.get(&target).map(|t| t.no_std)
1225     }
1226
1227     /// Returns `true` if the target will be tested using the `remote-test-client`
1228     /// and `remote-test-server` binaries.
1229     fn remote_tested(&self, target: TargetSelection) -> bool {
1230         self.qemu_rootfs(target).is_some()
1231             || target.contains("android")
1232             || env::var_os("TEST_DEVICE_ADDR").is_some()
1233     }
1234
1235     /// Returns the root of the "rootfs" image that this target will be using,
1236     /// if one was configured.
1237     ///
1238     /// If `Some` is returned then that means that tests for this target are
1239     /// emulated with QEMU and binaries will need to be shipped to the emulator.
1240     fn qemu_rootfs(&self, target: TargetSelection) -> Option<&Path> {
1241         self.config.target_config.get(&target).and_then(|t| t.qemu_rootfs.as_ref()).map(|p| &**p)
1242     }
1243
1244     /// Path to the python interpreter to use
1245     fn python(&self) -> &Path {
1246         if self.config.build.ends_with("apple-darwin") {
1247             // Force /usr/bin/python3 on macOS for LLDB tests because we're loading the
1248             // LLDB plugin's compiled module which only works with the system python
1249             // (namely not Homebrew-installed python)
1250             Path::new("/usr/bin/python3")
1251         } else {
1252             self.config
1253                 .python
1254                 .as_ref()
1255                 .expect("python is required for running LLDB or rustdoc tests")
1256         }
1257     }
1258
1259     /// Temporary directory that extended error information is emitted to.
1260     fn extended_error_dir(&self) -> PathBuf {
1261         self.out.join("tmp/extended-error-metadata")
1262     }
1263
1264     /// Tests whether the `compiler` compiling for `target` should be forced to
1265     /// use a stage1 compiler instead.
1266     ///
1267     /// Currently, by default, the build system does not perform a "full
1268     /// bootstrap" by default where we compile the compiler three times.
1269     /// Instead, we compile the compiler two times. The final stage (stage2)
1270     /// just copies the libraries from the previous stage, which is what this
1271     /// method detects.
1272     ///
1273     /// Here we return `true` if:
1274     ///
1275     /// * The build isn't performing a full bootstrap
1276     /// * The `compiler` is in the final stage, 2
1277     /// * We're not cross-compiling, so the artifacts are already available in
1278     ///   stage1
1279     ///
1280     /// When all of these conditions are met the build will lift artifacts from
1281     /// the previous stage forward.
1282     fn force_use_stage1(&self, compiler: Compiler, target: TargetSelection) -> bool {
1283         !self.config.full_bootstrap
1284             && compiler.stage >= 2
1285             && (self.hosts.iter().any(|h| *h == target) || target == self.build)
1286     }
1287
1288     /// Given `num` in the form "a.b.c" return a "release string" which
1289     /// describes the release version number.
1290     ///
1291     /// For example on nightly this returns "a.b.c-nightly", on beta it returns
1292     /// "a.b.c-beta.1" and on stable it just returns "a.b.c".
1293     fn release(&self, num: &str) -> String {
1294         match &self.config.channel[..] {
1295             "stable" => num.to_string(),
1296             "beta" => {
1297                 if self.rust_info().is_managed_git_subrepository() && !self.config.ignore_git {
1298                     format!("{}-beta.{}", num, self.beta_prerelease_version())
1299                 } else {
1300                     format!("{}-beta", num)
1301                 }
1302             }
1303             "nightly" => format!("{}-nightly", num),
1304             _ => format!("{}-dev", num),
1305         }
1306     }
1307
1308     fn beta_prerelease_version(&self) -> u32 {
1309         if let Some(s) = self.prerelease_version.get() {
1310             return s;
1311         }
1312
1313         // Figure out how many merge commits happened since we branched off master.
1314         // That's our beta number!
1315         // (Note that we use a `..` range, not the `...` symmetric difference.)
1316         let count =
1317             output(self.config.git().arg("rev-list").arg("--count").arg("--merges").arg(format!(
1318                 "refs/remotes/origin/{}..HEAD",
1319                 self.config.stage0_metadata.config.nightly_branch
1320             )));
1321         let n = count.trim().parse().unwrap();
1322         self.prerelease_version.set(Some(n));
1323         n
1324     }
1325
1326     /// Returns the value of `release` above for Rust itself.
1327     fn rust_release(&self) -> String {
1328         self.release(&self.version)
1329     }
1330
1331     /// Returns the "package version" for a component given the `num` release
1332     /// number.
1333     ///
1334     /// The package version is typically what shows up in the names of tarballs.
1335     /// For channels like beta/nightly it's just the channel name, otherwise
1336     /// it's the `num` provided.
1337     fn package_vers(&self, num: &str) -> String {
1338         match &self.config.channel[..] {
1339             "stable" => num.to_string(),
1340             "beta" => "beta".to_string(),
1341             "nightly" => "nightly".to_string(),
1342             _ => format!("{}-dev", num),
1343         }
1344     }
1345
1346     /// Returns the value of `package_vers` above for Rust itself.
1347     fn rust_package_vers(&self) -> String {
1348         self.package_vers(&self.version)
1349     }
1350
1351     /// Returns the `version` string associated with this compiler for Rust
1352     /// itself.
1353     ///
1354     /// Note that this is a descriptive string which includes the commit date,
1355     /// sha, version, etc.
1356     fn rust_version(&self) -> String {
1357         let mut version = self.rust_info().version(self, &self.version);
1358         if let Some(ref s) = self.config.description {
1359             version.push_str(" (");
1360             version.push_str(s);
1361             version.push(')');
1362         }
1363         version
1364     }
1365
1366     /// Returns the full commit hash.
1367     fn rust_sha(&self) -> Option<&str> {
1368         self.rust_info().sha()
1369     }
1370
1371     /// Returns the `a.b.c` version that the given package is at.
1372     fn release_num(&self, package: &str) -> String {
1373         let toml_file_name = self.src.join(&format!("src/tools/{}/Cargo.toml", package));
1374         let toml = t!(fs::read_to_string(&toml_file_name));
1375         for line in toml.lines() {
1376             if let Some(stripped) =
1377                 line.strip_prefix("version = \"").and_then(|s| s.strip_suffix("\""))
1378             {
1379                 return stripped.to_owned();
1380             }
1381         }
1382
1383         panic!("failed to find version in {}'s Cargo.toml", package)
1384     }
1385
1386     /// Returns `true` if unstable features should be enabled for the compiler
1387     /// we're building.
1388     fn unstable_features(&self) -> bool {
1389         match &self.config.channel[..] {
1390             "stable" | "beta" => false,
1391             "nightly" | _ => true,
1392         }
1393     }
1394
1395     /// Returns a Vec of all the dependencies of the given root crate,
1396     /// including transitive dependencies and the root itself. Only includes
1397     /// "local" crates (those in the local source tree, not from a registry).
1398     fn in_tree_crates(&self, root: &str, target: Option<TargetSelection>) -> Vec<&Crate> {
1399         let mut ret = Vec::new();
1400         let mut list = vec![INTERNER.intern_str(root)];
1401         let mut visited = HashSet::new();
1402         while let Some(krate) = list.pop() {
1403             let krate = &self.crates[&krate];
1404             ret.push(krate);
1405             for dep in &krate.deps {
1406                 if !self.crates.contains_key(dep) {
1407                     // Ignore non-workspace members.
1408                     continue;
1409                 }
1410                 // Don't include optional deps if their features are not
1411                 // enabled. Ideally this would be computed from `cargo
1412                 // metadata --features â€¦`, but that is somewhat slow. In
1413                 // the future, we may want to consider just filtering all
1414                 // build and dev dependencies in metadata::build.
1415                 if visited.insert(dep)
1416                     && (dep != "profiler_builtins"
1417                         || target
1418                             .map(|t| self.config.profiler_enabled(t))
1419                             .unwrap_or_else(|| self.config.any_profiler_enabled()))
1420                     && (dep != "rustc_codegen_llvm" || self.config.llvm_enabled())
1421                 {
1422                     list.push(*dep);
1423                 }
1424             }
1425         }
1426         ret
1427     }
1428
1429     fn read_stamp_file(&self, stamp: &Path) -> Vec<(PathBuf, DependencyType)> {
1430         if self.config.dry_run() {
1431             return Vec::new();
1432         }
1433
1434         let mut paths = Vec::new();
1435         let contents = t!(fs::read(stamp), &stamp);
1436         // This is the method we use for extracting paths from the stamp file passed to us. See
1437         // run_cargo for more information (in compile.rs).
1438         for part in contents.split(|b| *b == 0) {
1439             if part.is_empty() {
1440                 continue;
1441             }
1442             let dependency_type = match part[0] as char {
1443                 'h' => DependencyType::Host,
1444                 's' => DependencyType::TargetSelfContained,
1445                 't' => DependencyType::Target,
1446                 _ => unreachable!(),
1447             };
1448             let path = PathBuf::from(t!(str::from_utf8(&part[1..])));
1449             paths.push((path, dependency_type));
1450         }
1451         paths
1452     }
1453
1454     /// Copies a file from `src` to `dst`
1455     pub fn copy(&self, src: &Path, dst: &Path) {
1456         self.copy_internal(src, dst, false);
1457     }
1458
1459     fn copy_internal(&self, src: &Path, dst: &Path, dereference_symlinks: bool) {
1460         if self.config.dry_run() {
1461             return;
1462         }
1463         self.verbose_than(1, &format!("Copy {:?} to {:?}", src, dst));
1464         if src == dst {
1465             return;
1466         }
1467         let _ = fs::remove_file(&dst);
1468         let metadata = t!(src.symlink_metadata());
1469         let mut src = src.to_path_buf();
1470         if metadata.file_type().is_symlink() {
1471             if dereference_symlinks {
1472                 src = t!(fs::canonicalize(src));
1473             } else {
1474                 let link = t!(fs::read_link(src));
1475                 t!(self.symlink_file(link, dst));
1476                 return;
1477             }
1478         }
1479         if let Ok(()) = fs::hard_link(&src, dst) {
1480             // Attempt to "easy copy" by creating a hard link
1481             // (symlinks don't work on windows), but if that fails
1482             // just fall back to a slow `copy` operation.
1483         } else {
1484             if let Err(e) = fs::copy(&src, dst) {
1485                 panic!("failed to copy `{}` to `{}`: {}", src.display(), dst.display(), e)
1486             }
1487             t!(fs::set_permissions(dst, metadata.permissions()));
1488             let atime = FileTime::from_last_access_time(&metadata);
1489             let mtime = FileTime::from_last_modification_time(&metadata);
1490             t!(filetime::set_file_times(dst, atime, mtime));
1491         }
1492     }
1493
1494     /// Copies the `src` directory recursively to `dst`. Both are assumed to exist
1495     /// when this function is called.
1496     pub fn cp_r(&self, src: &Path, dst: &Path) {
1497         if self.config.dry_run() {
1498             return;
1499         }
1500         for f in self.read_dir(src) {
1501             let path = f.path();
1502             let name = path.file_name().unwrap();
1503             let dst = dst.join(name);
1504             if t!(f.file_type()).is_dir() {
1505                 t!(fs::create_dir_all(&dst));
1506                 self.cp_r(&path, &dst);
1507             } else {
1508                 let _ = fs::remove_file(&dst);
1509                 self.copy(&path, &dst);
1510             }
1511         }
1512     }
1513
1514     /// Copies the `src` directory recursively to `dst`. Both are assumed to exist
1515     /// when this function is called. Unwanted files or directories can be skipped
1516     /// by returning `false` from the filter function.
1517     pub fn cp_filtered(&self, src: &Path, dst: &Path, filter: &dyn Fn(&Path) -> bool) {
1518         // Immediately recurse with an empty relative path
1519         self.recurse_(src, dst, Path::new(""), filter)
1520     }
1521
1522     // Inner function does the actual work
1523     fn recurse_(&self, src: &Path, dst: &Path, relative: &Path, filter: &dyn Fn(&Path) -> bool) {
1524         for f in self.read_dir(src) {
1525             let path = f.path();
1526             let name = path.file_name().unwrap();
1527             let dst = dst.join(name);
1528             let relative = relative.join(name);
1529             // Only copy file or directory if the filter function returns true
1530             if filter(&relative) {
1531                 if t!(f.file_type()).is_dir() {
1532                     let _ = fs::remove_dir_all(&dst);
1533                     self.create_dir(&dst);
1534                     self.recurse_(&path, &dst, &relative, filter);
1535                 } else {
1536                     let _ = fs::remove_file(&dst);
1537                     self.copy(&path, &dst);
1538                 }
1539             }
1540         }
1541     }
1542
1543     fn copy_to_folder(&self, src: &Path, dest_folder: &Path) {
1544         let file_name = src.file_name().unwrap();
1545         let dest = dest_folder.join(file_name);
1546         self.copy(src, &dest);
1547     }
1548
1549     fn install(&self, src: &Path, dstdir: &Path, perms: u32) {
1550         if self.config.dry_run() {
1551             return;
1552         }
1553         let dst = dstdir.join(src.file_name().unwrap());
1554         self.verbose_than(1, &format!("Install {:?} to {:?}", src, dst));
1555         t!(fs::create_dir_all(dstdir));
1556         if !src.exists() {
1557             panic!("Error: File \"{}\" not found!", src.display());
1558         }
1559         self.copy_internal(src, &dst, true);
1560         chmod(&dst, perms);
1561     }
1562
1563     fn read(&self, path: &Path) -> String {
1564         if self.config.dry_run() {
1565             return String::new();
1566         }
1567         t!(fs::read_to_string(path))
1568     }
1569
1570     fn create_dir(&self, dir: &Path) {
1571         if self.config.dry_run() {
1572             return;
1573         }
1574         t!(fs::create_dir_all(dir))
1575     }
1576
1577     fn remove_dir(&self, dir: &Path) {
1578         if self.config.dry_run() {
1579             return;
1580         }
1581         t!(fs::remove_dir_all(dir))
1582     }
1583
1584     fn read_dir(&self, dir: &Path) -> impl Iterator<Item = fs::DirEntry> {
1585         let iter = match fs::read_dir(dir) {
1586             Ok(v) => v,
1587             Err(_) if self.config.dry_run() => return vec![].into_iter(),
1588             Err(err) => panic!("could not read dir {:?}: {:?}", dir, err),
1589         };
1590         iter.map(|e| t!(e)).collect::<Vec<_>>().into_iter()
1591     }
1592
1593     fn symlink_file<P: AsRef<Path>, Q: AsRef<Path>>(&self, src: P, link: Q) -> io::Result<()> {
1594         #[cfg(unix)]
1595         use std::os::unix::fs::symlink as symlink_file;
1596         #[cfg(windows)]
1597         use std::os::windows::fs::symlink_file;
1598         if !self.config.dry_run() { symlink_file(src.as_ref(), link.as_ref()) } else { Ok(()) }
1599     }
1600
1601     /// Returns if config.ninja is enabled, and checks for ninja existence,
1602     /// exiting with a nicer error message if not.
1603     fn ninja(&self) -> bool {
1604         let mut cmd_finder = crate::sanity::Finder::new();
1605
1606         if self.config.ninja_in_file {
1607             // Some Linux distros rename `ninja` to `ninja-build`.
1608             // CMake can work with either binary name.
1609             if cmd_finder.maybe_have("ninja-build").is_none()
1610                 && cmd_finder.maybe_have("ninja").is_none()
1611             {
1612                 eprintln!(
1613                     "
1614 Couldn't find required command: ninja (or ninja-build)
1615
1616 You should install ninja as described at
1617 <https://github.com/ninja-build/ninja/wiki/Pre-built-Ninja-packages>,
1618 or set `ninja = false` in the `[llvm]` section of `config.toml`.
1619 Alternatively, set `download-ci-llvm = true` in that `[llvm]` section
1620 to download LLVM rather than building it.
1621 "
1622                 );
1623                 detail_exit(1);
1624             }
1625         }
1626
1627         // If ninja isn't enabled but we're building for MSVC then we try
1628         // doubly hard to enable it. It was realized in #43767 that the msbuild
1629         // CMake generator for MSVC doesn't respect configuration options like
1630         // disabling LLVM assertions, which can often be quite important!
1631         //
1632         // In these cases we automatically enable Ninja if we find it in the
1633         // environment.
1634         if !self.config.ninja_in_file && self.config.build.contains("msvc") {
1635             if cmd_finder.maybe_have("ninja").is_some() {
1636                 return true;
1637             }
1638         }
1639
1640         self.config.ninja_in_file
1641     }
1642 }
1643
1644 #[cfg(unix)]
1645 fn chmod(path: &Path, perms: u32) {
1646     use std::os::unix::fs::*;
1647     t!(fs::set_permissions(path, fs::Permissions::from_mode(perms)));
1648 }
1649 #[cfg(windows)]
1650 fn chmod(_path: &Path, _perms: u32) {}
1651
1652 /// If code is not 0 (successful exit status), exit status is 101 (rust's default error code.)
1653 /// If the test is running and code is an error code, it will cause a panic.
1654 fn detail_exit(code: i32) -> ! {
1655     // if in test and code is an error code, panic with status code provided
1656     if cfg!(test) {
1657         panic!("status code: {}", code);
1658     } else {
1659         // otherwise,exit with provided status code
1660         std::process::exit(code);
1661     }
1662 }
1663
1664 impl Compiler {
1665     pub fn with_stage(mut self, stage: u32) -> Compiler {
1666         self.stage = stage;
1667         self
1668     }
1669
1670     /// Returns `true` if this is a snapshot compiler for `build`'s configuration
1671     pub fn is_snapshot(&self, build: &Build) -> bool {
1672         self.stage == 0 && self.host == build.build
1673     }
1674
1675     /// Returns if this compiler should be treated as a final stage one in the
1676     /// current build session.
1677     /// This takes into account whether we're performing a full bootstrap or
1678     /// not; don't directly compare the stage with `2`!
1679     pub fn is_final_stage(&self, build: &Build) -> bool {
1680         let final_stage = if build.config.full_bootstrap { 2 } else { 1 };
1681         self.stage >= final_stage
1682     }
1683 }
1684
1685 fn envify(s: &str) -> String {
1686     s.chars()
1687         .map(|c| match c {
1688             '-' => '_',
1689             c => c,
1690         })
1691         .flat_map(|c| c.to_uppercase())
1692         .collect()
1693 }