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