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