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