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