]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/lib.rs
Auto merge of #69076 - cjgillot:split_trait, r=matthewjasper
[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 #![feature(drain_filter)]
107
108 use std::cell::{Cell, RefCell};
109 use std::collections::{HashMap, HashSet};
110 use std::env;
111 use std::fs::{self, File, OpenOptions};
112 use std::io::{Read, Seek, SeekFrom, Write};
113 use std::path::{Path, PathBuf};
114 use std::process::{self, Command};
115 use std::slice;
116 use std::str;
117
118 #[cfg(unix)]
119 use std::os::unix::fs::symlink as symlink_file;
120 #[cfg(windows)]
121 use std::os::windows::fs::symlink_file;
122
123 use build_helper::{mtime, output, run, run_suppressed, t, try_run, try_run_suppressed};
124 use filetime::FileTime;
125
126 use crate::util::{exe, libdir, CiEnv};
127
128 mod builder;
129 mod cache;
130 mod cc_detect;
131 mod channel;
132 mod check;
133 mod clean;
134 mod compile;
135 mod config;
136 mod dist;
137 mod doc;
138 mod flags;
139 mod format;
140 mod install;
141 mod metadata;
142 mod native;
143 mod sanity;
144 mod test;
145 mod tool;
146 mod toolstate;
147 pub mod util;
148
149 #[cfg(windows)]
150 mod job;
151
152 #[cfg(all(unix, not(target_os = "haiku")))]
153 mod job {
154     pub unsafe fn setup(build: &mut crate::Build) {
155         if build.config.low_priority {
156             libc::setpriority(libc::PRIO_PGRP as _, 0, 10);
157         }
158     }
159 }
160
161 #[cfg(any(target_os = "haiku", target_os = "hermit", not(any(unix, windows))))]
162 mod job {
163     pub unsafe fn setup(_build: &mut crate::Build) {}
164 }
165
166 use crate::cache::{Interned, INTERNER};
167 pub use crate::config::Config;
168 use crate::flags::Subcommand;
169
170 const LLVM_TOOLS: &[&str] = &[
171     "llvm-nm", // used to inspect binaries; it shows symbol names, their sizes and visibility
172     "llvm-objcopy", // used to transform ELFs into binary format which flashing tools consume
173     "llvm-objdump", // used to disassemble programs
174     "llvm-profdata", // used to inspect and merge files generated by profiles
175     "llvm-readobj", // used to get information from ELFs/objects that the other tools don't provide
176     "llvm-size", // used to prints the size of the linker sections of a program
177     "llvm-strip", // used to discard symbols from binary files to reduce their size
178     "llvm-ar", // used for creating and modifying archive files
179 ];
180
181 /// A structure representing a Rust compiler.
182 ///
183 /// Each compiler has a `stage` that it is associated with and a `host` that
184 /// corresponds to the platform the compiler runs on. This structure is used as
185 /// a parameter to many methods below.
186 #[derive(Eq, PartialOrd, Ord, PartialEq, Clone, Copy, Hash, Debug)]
187 pub struct Compiler {
188     stage: u32,
189     host: Interned<String>,
190 }
191
192 #[derive(PartialEq, Eq, Copy, Clone, Debug)]
193 pub enum DocTests {
194     /// Run normal tests and doc tests (default).
195     Yes,
196     /// Do not run any doc tests.
197     No,
198     /// Only run doc tests.
199     Only,
200 }
201
202 pub enum GitRepo {
203     Rustc,
204     Llvm,
205 }
206
207 /// Global configuration for the build system.
208 ///
209 /// This structure transitively contains all configuration for the build system.
210 /// All filesystem-encoded configuration is in `config`, all flags are in
211 /// `flags`, and then parsed or probed information is listed in the keys below.
212 ///
213 /// This structure is a parameter of almost all methods in the build system,
214 /// although most functions are implemented as free functions rather than
215 /// methods specifically on this structure itself (to make it easier to
216 /// organize).
217 pub struct Build {
218     /// User-specified configuration from `config.toml`.
219     config: Config,
220
221     // Properties derived from the above configuration
222     src: PathBuf,
223     out: PathBuf,
224     rust_info: channel::GitInfo,
225     cargo_info: channel::GitInfo,
226     rls_info: channel::GitInfo,
227     clippy_info: channel::GitInfo,
228     miri_info: channel::GitInfo,
229     rustfmt_info: channel::GitInfo,
230     in_tree_llvm_info: channel::GitInfo,
231     local_rebuild: bool,
232     fail_fast: bool,
233     doc_tests: DocTests,
234     verbosity: usize,
235
236     // Targets for which to build
237     build: Interned<String>,
238     hosts: Vec<Interned<String>>,
239     targets: Vec<Interned<String>>,
240
241     // Stage 0 (downloaded) compiler, lld and cargo or their local rust equivalents
242     initial_rustc: PathBuf,
243     initial_cargo: PathBuf,
244     initial_lld: PathBuf,
245
246     // Runtime state filled in later on
247     // C/C++ compilers and archiver for all targets
248     cc: HashMap<Interned<String>, cc::Tool>,
249     cxx: HashMap<Interned<String>, cc::Tool>,
250     ar: HashMap<Interned<String>, PathBuf>,
251     ranlib: HashMap<Interned<String>, PathBuf>,
252     // Miscellaneous
253     crates: HashMap<Interned<String>, Crate>,
254     is_sudo: bool,
255     ci_env: CiEnv,
256     delayed_failures: RefCell<Vec<String>>,
257     prerelease_version: Cell<Option<u32>>,
258     tool_artifacts:
259         RefCell<HashMap<Interned<String>, HashMap<String, (&'static str, PathBuf, Vec<String>)>>>,
260 }
261
262 #[derive(Debug)]
263 struct Crate {
264     name: Interned<String>,
265     deps: HashSet<Interned<String>>,
266     id: String,
267     path: PathBuf,
268 }
269
270 impl Crate {
271     fn is_local(&self, build: &Build) -> bool {
272         self.path.starts_with(&build.config.src) && !self.path.to_string_lossy().ends_with("_shim")
273     }
274
275     fn local_path(&self, build: &Build) -> PathBuf {
276         assert!(self.is_local(build));
277         self.path.strip_prefix(&build.config.src).unwrap().into()
278     }
279 }
280
281 /// The various "modes" of invoking Cargo.
282 ///
283 /// These entries currently correspond to the various output directories of the
284 /// build system, with each mod generating output in a different directory.
285 #[derive(Debug, Hash, Clone, Copy, PartialEq, Eq, PartialOrd, Ord)]
286 pub enum Mode {
287     /// Build the standard library, placing output in the "stageN-std" directory.
288     Std,
289
290     /// Build librustc, and compiler libraries, placing output in the "stageN-rustc" directory.
291     Rustc,
292
293     /// Build codegen libraries, placing output in the "stageN-codegen" directory
294     Codegen,
295
296     /// Build some tools, placing output in the "stageN-tools" directory. The
297     /// "other" here is for miscellaneous sets of tools that are built using the
298     /// bootstrap compiler in its entirety (target libraries and all).
299     /// Typically these tools compile with stable Rust.
300     ToolBootstrap,
301
302     /// Compile a tool which uses all libraries we compile (up to rustc).
303     /// Doesn't use the stage0 compiler libraries like "other", and includes
304     /// tools like rustdoc, cargo, rls, etc.
305     ToolStd,
306     ToolRustc,
307 }
308
309 impl Mode {
310     pub fn is_tool(&self) -> bool {
311         match self {
312             Mode::ToolBootstrap | Mode::ToolRustc | Mode::ToolStd => true,
313             _ => false,
314         }
315     }
316 }
317
318 impl Build {
319     /// Creates a new set of build configuration from the `flags` on the command
320     /// line and the filesystem `config`.
321     ///
322     /// By default all build output will be placed in the current directory.
323     pub fn new(config: Config) -> Build {
324         let src = config.src.clone();
325         let out = config.out.clone();
326
327         let is_sudo = match env::var_os("SUDO_USER") {
328             Some(sudo_user) => match env::var_os("USER") {
329                 Some(user) => user != sudo_user,
330                 None => false,
331             },
332             None => false,
333         };
334
335         let ignore_git = config.ignore_git;
336         let rust_info = channel::GitInfo::new(ignore_git, &src);
337         let cargo_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/cargo"));
338         let rls_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/rls"));
339         let clippy_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/clippy"));
340         let miri_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/miri"));
341         let rustfmt_info = channel::GitInfo::new(ignore_git, &src.join("src/tools/rustfmt"));
342
343         // we always try to use git for LLVM builds
344         let in_tree_llvm_info = channel::GitInfo::new(false, &src.join("src/llvm-project"));
345
346         let initial_sysroot = config.initial_rustc.parent().unwrap().parent().unwrap();
347         let initial_lld = initial_sysroot
348             .join("lib")
349             .join("rustlib")
350             .join(config.build)
351             .join("bin")
352             .join("rust-lld");
353
354         let mut build = Build {
355             initial_rustc: config.initial_rustc.clone(),
356             initial_cargo: config.initial_cargo.clone(),
357             initial_lld,
358             local_rebuild: config.local_rebuild,
359             fail_fast: config.cmd.fail_fast(),
360             doc_tests: config.cmd.doc_tests(),
361             verbosity: config.verbose,
362
363             build: config.build,
364             hosts: config.hosts.clone(),
365             targets: config.targets.clone(),
366
367             config,
368             src,
369             out,
370
371             rust_info,
372             cargo_info,
373             rls_info,
374             clippy_info,
375             miri_info,
376             rustfmt_info,
377             in_tree_llvm_info,
378             cc: HashMap::new(),
379             cxx: HashMap::new(),
380             ar: HashMap::new(),
381             ranlib: HashMap::new(),
382             crates: HashMap::new(),
383             is_sudo,
384             ci_env: CiEnv::current(),
385             delayed_failures: RefCell::new(Vec::new()),
386             prerelease_version: Cell::new(None),
387             tool_artifacts: Default::default(),
388         };
389
390         build.verbose("finding compilers");
391         cc_detect::find(&mut build);
392         build.verbose("running sanity check");
393         sanity::check(&mut build);
394
395         // If local-rust is the same major.minor as the current version, then force a
396         // local-rebuild
397         let local_version_verbose =
398             output(Command::new(&build.initial_rustc).arg("--version").arg("--verbose"));
399         let local_release = local_version_verbose
400             .lines()
401             .filter(|x| x.starts_with("release:"))
402             .next()
403             .unwrap()
404             .trim_start_matches("release:")
405             .trim();
406         let my_version = channel::CFG_RELEASE_NUM;
407         if local_release.split('.').take(2).eq(my_version.split('.').take(2)) {
408             build.verbose(&format!("auto-detected local-rebuild {}", local_release));
409             build.local_rebuild = true;
410         }
411
412         build.verbose("learning about cargo");
413         metadata::build(&mut build);
414
415         build
416     }
417
418     pub fn build_triple(&self) -> &[Interned<String>] {
419         unsafe { slice::from_raw_parts(&self.build, 1) }
420     }
421
422     /// Executes the entire build, as configured by the flags and configuration.
423     pub fn build(&mut self) {
424         unsafe {
425             job::setup(self);
426         }
427
428         if let Subcommand::Format { check } = self.config.cmd {
429             return format::format(self, check);
430         }
431
432         if let Subcommand::Clean { all } = self.config.cmd {
433             return clean::clean(self, all);
434         }
435
436         {
437             let builder = builder::Builder::new(&self);
438             if let Some(path) = builder.paths.get(0) {
439                 if path == Path::new("nonexistent/path/to/trigger/cargo/metadata") {
440                     return;
441                 }
442             }
443         }
444
445         if !self.config.dry_run {
446             {
447                 self.config.dry_run = true;
448                 let builder = builder::Builder::new(&self);
449                 builder.execute_cli();
450             }
451             self.config.dry_run = false;
452             let builder = builder::Builder::new(&self);
453             builder.execute_cli();
454         } else {
455             let builder = builder::Builder::new(&self);
456             builder.execute_cli();
457         }
458
459         // Check for postponed failures from `test --no-fail-fast`.
460         let failures = self.delayed_failures.borrow();
461         if failures.len() > 0 {
462             println!("\n{} command(s) did not execute successfully:\n", failures.len());
463             for failure in failures.iter() {
464                 println!("  - {}\n", failure);
465             }
466             process::exit(1);
467         }
468     }
469
470     /// Clear out `dir` if `input` is newer.
471     ///
472     /// After this executes, it will also ensure that `dir` exists.
473     fn clear_if_dirty(&self, dir: &Path, input: &Path) -> bool {
474         let stamp = dir.join(".stamp");
475         let mut cleared = false;
476         if mtime(&stamp) < mtime(input) {
477             self.verbose(&format!("Dirty - {}", dir.display()));
478             let _ = fs::remove_dir_all(dir);
479             cleared = true;
480         } else if stamp.exists() {
481             return cleared;
482         }
483         t!(fs::create_dir_all(dir));
484         t!(File::create(stamp));
485         cleared
486     }
487
488     /// Gets the space-separated set of activated features for the standard
489     /// library.
490     fn std_features(&self) -> String {
491         let mut features = "panic-unwind".to_string();
492
493         if self.config.llvm_libunwind {
494             features.push_str(" llvm-libunwind");
495         }
496         if self.config.backtrace {
497             features.push_str(" backtrace");
498         }
499         if self.config.profiler {
500             features.push_str(" profiler");
501         }
502         features
503     }
504
505     /// Gets the space-separated set of activated features for the compiler.
506     fn rustc_features(&self) -> String {
507         let mut features = String::new();
508         if self.config.jemalloc {
509             features.push_str("jemalloc");
510         }
511         if self.config.llvm_enabled() {
512             features.push_str(" llvm");
513         }
514         features
515     }
516
517     /// Component directory that Cargo will produce output into (e.g.
518     /// release/debug)
519     fn cargo_dir(&self) -> &'static str {
520         if self.config.rust_optimize { "release" } else { "debug" }
521     }
522
523     fn tools_dir(&self, compiler: Compiler) -> PathBuf {
524         let out = self.out.join(&*compiler.host).join(format!("stage{}-tools-bin", compiler.stage));
525         t!(fs::create_dir_all(&out));
526         out
527     }
528
529     /// Returns the root directory for all output generated in a particular
530     /// stage when running with a particular host compiler.
531     ///
532     /// The mode indicates what the root directory is for.
533     fn stage_out(&self, compiler: Compiler, mode: Mode) -> PathBuf {
534         let suffix = match mode {
535             Mode::Std => "-std",
536             Mode::Rustc => "-rustc",
537             Mode::Codegen => "-codegen",
538             Mode::ToolBootstrap => "-bootstrap-tools",
539             Mode::ToolStd | Mode::ToolRustc => "-tools",
540         };
541         self.out.join(&*compiler.host).join(format!("stage{}{}", compiler.stage, suffix))
542     }
543
544     /// Returns the root output directory for all Cargo output in a given stage,
545     /// running a particular compiler, whether or not we're building the
546     /// standard library, and targeting the specified architecture.
547     fn cargo_out(&self, compiler: Compiler, mode: Mode, target: Interned<String>) -> PathBuf {
548         self.stage_out(compiler, mode).join(&*target).join(self.cargo_dir())
549     }
550
551     /// Root output directory for LLVM compiled for `target`
552     ///
553     /// Note that if LLVM is configured externally then the directory returned
554     /// will likely be empty.
555     fn llvm_out(&self, target: Interned<String>) -> PathBuf {
556         self.out.join(&*target).join("llvm")
557     }
558
559     fn lld_out(&self, target: Interned<String>) -> PathBuf {
560         self.out.join(&*target).join("lld")
561     }
562
563     /// Output directory for all documentation for a target
564     fn doc_out(&self, target: Interned<String>) -> PathBuf {
565         self.out.join(&*target).join("doc")
566     }
567
568     /// Output directory for all documentation for a target
569     fn compiler_doc_out(&self, target: Interned<String>) -> PathBuf {
570         self.out.join(&*target).join("compiler-doc")
571     }
572
573     /// Output directory for some generated md crate documentation for a target (temporary)
574     fn md_doc_out(&self, target: Interned<String>) -> Interned<PathBuf> {
575         INTERNER.intern_path(self.out.join(&*target).join("md-doc"))
576     }
577
578     /// Output directory for all crate documentation for a target (temporary)
579     ///
580     /// The artifacts here are then copied into `doc_out` above.
581     fn crate_doc_out(&self, target: Interned<String>) -> PathBuf {
582         self.out.join(&*target).join("crate-docs")
583     }
584
585     /// Returns `true` if no custom `llvm-config` is set for the specified target.
586     ///
587     /// If no custom `llvm-config` was specified then Rust's llvm will be used.
588     fn is_rust_llvm(&self, target: Interned<String>) -> bool {
589         match self.config.target_config.get(&target) {
590             Some(ref c) => c.llvm_config.is_none(),
591             None => true,
592         }
593     }
594
595     /// Returns the path to `FileCheck` binary for the specified target
596     fn llvm_filecheck(&self, target: Interned<String>) -> PathBuf {
597         let target_config = self.config.target_config.get(&target);
598         if let Some(s) = target_config.and_then(|c| c.llvm_filecheck.as_ref()) {
599             s.to_path_buf()
600         } else if let Some(s) = target_config.and_then(|c| c.llvm_config.as_ref()) {
601             let llvm_bindir = output(Command::new(s).arg("--bindir"));
602             let filecheck = Path::new(llvm_bindir.trim()).join(exe("FileCheck", &*target));
603             if filecheck.exists() {
604                 filecheck
605             } else {
606                 // On Fedora the system LLVM installs FileCheck in the
607                 // llvm subdirectory of the libdir.
608                 let llvm_libdir = output(Command::new(s).arg("--libdir"));
609                 let lib_filecheck =
610                     Path::new(llvm_libdir.trim()).join("llvm").join(exe("FileCheck", &*target));
611                 if lib_filecheck.exists() {
612                     lib_filecheck
613                 } else {
614                     // Return the most normal file name, even though
615                     // it doesn't exist, so that any error message
616                     // refers to that.
617                     filecheck
618                 }
619             }
620         } else {
621             let base = self.llvm_out(self.config.build).join("build");
622             let base = if !self.config.ninja && self.config.build.contains("msvc") {
623                 if self.config.llvm_optimize {
624                     if self.config.llvm_release_debuginfo {
625                         base.join("RelWithDebInfo")
626                     } else {
627                         base.join("Release")
628                     }
629                 } else {
630                     base.join("Debug")
631                 }
632             } else {
633                 base
634             };
635             base.join("bin").join(exe("FileCheck", &*target))
636         }
637     }
638
639     /// Directory for libraries built from C/C++ code and shared between stages.
640     fn native_dir(&self, target: Interned<String>) -> PathBuf {
641         self.out.join(&*target).join("native")
642     }
643
644     /// Root output directory for rust_test_helpers library compiled for
645     /// `target`
646     fn test_helpers_out(&self, target: Interned<String>) -> PathBuf {
647         self.native_dir(target).join("rust-test-helpers")
648     }
649
650     /// Adds the `RUST_TEST_THREADS` env var if necessary
651     fn add_rust_test_threads(&self, cmd: &mut Command) {
652         if env::var_os("RUST_TEST_THREADS").is_none() {
653             cmd.env("RUST_TEST_THREADS", self.jobs().to_string());
654         }
655     }
656
657     /// Returns the libdir of the snapshot compiler.
658     fn rustc_snapshot_libdir(&self) -> PathBuf {
659         self.rustc_snapshot_sysroot().join(libdir(&self.config.build))
660     }
661
662     /// Returns the sysroot of the snapshot compiler.
663     fn rustc_snapshot_sysroot(&self) -> &Path {
664         self.initial_rustc.parent().unwrap().parent().unwrap()
665     }
666
667     /// Runs a command, printing out nice contextual information if it fails.
668     fn run(&self, cmd: &mut Command) {
669         if self.config.dry_run {
670             return;
671         }
672         self.verbose(&format!("running: {:?}", cmd));
673         run(cmd)
674     }
675
676     /// Runs a command, printing out nice contextual information if it fails.
677     fn run_quiet(&self, cmd: &mut Command) {
678         if self.config.dry_run {
679             return;
680         }
681         self.verbose(&format!("running: {:?}", cmd));
682         run_suppressed(cmd)
683     }
684
685     /// Runs a command, printing out nice contextual information if it fails.
686     /// Exits if the command failed to execute at all, otherwise returns its
687     /// `status.success()`.
688     fn try_run(&self, cmd: &mut Command) -> bool {
689         if self.config.dry_run {
690             return true;
691         }
692         self.verbose(&format!("running: {:?}", cmd));
693         try_run(cmd)
694     }
695
696     /// Runs a command, printing out nice contextual information if it fails.
697     /// Exits if the command failed to execute at all, otherwise returns its
698     /// `status.success()`.
699     fn try_run_quiet(&self, cmd: &mut Command) -> bool {
700         if self.config.dry_run {
701             return true;
702         }
703         self.verbose(&format!("running: {:?}", cmd));
704         try_run_suppressed(cmd)
705     }
706
707     pub fn is_verbose(&self) -> bool {
708         self.verbosity > 0
709     }
710
711     /// Prints a message if this build is configured in verbose mode.
712     fn verbose(&self, msg: &str) {
713         if self.is_verbose() {
714             println!("{}", msg);
715         }
716     }
717
718     pub fn is_verbose_than(&self, level: usize) -> bool {
719         self.verbosity > level
720     }
721
722     /// Prints a message if this build is configured in more verbose mode than `level`.
723     fn verbose_than(&self, level: usize, msg: &str) {
724         if self.is_verbose_than(level) {
725             println!("{}", msg);
726         }
727     }
728
729     fn info(&self, msg: &str) {
730         if self.config.dry_run {
731             return;
732         }
733         println!("{}", msg);
734     }
735
736     /// Returns the number of parallel jobs that have been configured for this
737     /// build.
738     fn jobs(&self) -> u32 {
739         self.config.jobs.unwrap_or_else(|| num_cpus::get() as u32)
740     }
741
742     fn debuginfo_map(&self, which: GitRepo) -> Option<String> {
743         if !self.config.rust_remap_debuginfo {
744             return None;
745         }
746
747         let path = match which {
748             GitRepo::Rustc => {
749                 let sha = self.rust_sha().unwrap_or(channel::CFG_RELEASE_NUM);
750                 format!("/rustc/{}", sha)
751             }
752             GitRepo::Llvm => String::from("/rustc/llvm"),
753         };
754         Some(format!("{}={}", self.src.display(), path))
755     }
756
757     /// Returns the path to the C compiler for the target specified.
758     fn cc(&self, target: Interned<String>) -> &Path {
759         self.cc[&target].path()
760     }
761
762     /// Returns a list of flags to pass to the C compiler for the target
763     /// specified.
764     fn cflags(&self, target: Interned<String>, which: GitRepo) -> Vec<String> {
765         // Filter out -O and /O (the optimization flags) that we picked up from
766         // cc-rs because the build scripts will determine that for themselves.
767         let mut base = self.cc[&target]
768             .args()
769             .iter()
770             .map(|s| s.to_string_lossy().into_owned())
771             .filter(|s| !s.starts_with("-O") && !s.starts_with("/O"))
772             .collect::<Vec<String>>();
773
774         // If we're compiling on macOS then we add a few unconditional flags
775         // indicating that we want libc++ (more filled out than libstdc++) and
776         // we want to compile for 10.7. This way we can ensure that
777         // LLVM/etc are all properly compiled.
778         if target.contains("apple-darwin") {
779             base.push("-stdlib=libc++".into());
780         }
781
782         // Work around an apparently bad MinGW / GCC optimization,
783         // See: http://lists.llvm.org/pipermail/cfe-dev/2016-December/051980.html
784         // See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78936
785         if &*target == "i686-pc-windows-gnu" {
786             base.push("-fno-omit-frame-pointer".into());
787         }
788
789         if let Some(map) = self.debuginfo_map(which) {
790             let cc = self.cc(target);
791             if cc.ends_with("clang") || cc.ends_with("gcc") {
792                 base.push(format!("-fdebug-prefix-map={}", map));
793             } else if cc.ends_with("clang-cl.exe") {
794                 base.push("-Xclang".into());
795                 base.push(format!("-fdebug-prefix-map={}", map));
796             }
797         }
798         base
799     }
800
801     /// Returns the path to the `ar` archive utility for the target specified.
802     fn ar(&self, target: Interned<String>) -> Option<&Path> {
803         self.ar.get(&target).map(|p| &**p)
804     }
805
806     /// Returns the path to the `ranlib` utility for the target specified.
807     fn ranlib(&self, target: Interned<String>) -> Option<&Path> {
808         self.ranlib.get(&target).map(|p| &**p)
809     }
810
811     /// Returns the path to the C++ compiler for the target specified.
812     fn cxx(&self, target: Interned<String>) -> Result<&Path, String> {
813         match self.cxx.get(&target) {
814             Some(p) => Ok(p.path()),
815             None => {
816                 Err(format!("target `{}` is not configured as a host, only as a target", target))
817             }
818         }
819     }
820
821     /// Returns the path to the linker for the given target if it needs to be overridden.
822     fn linker(&self, target: Interned<String>, can_use_lld: bool) -> Option<&Path> {
823         if let Some(linker) = self.config.target_config.get(&target).and_then(|c| c.linker.as_ref())
824         {
825             Some(linker)
826         } else if target != self.config.build
827             && util::use_host_linker(&target)
828             && !target.contains("msvc")
829         {
830             Some(self.cc(target))
831         } else if can_use_lld && self.config.use_lld && self.build == target {
832             Some(&self.initial_lld)
833         } else {
834             None
835         }
836     }
837
838     /// Returns if this target should statically link the C runtime, if specified
839     fn crt_static(&self, target: Interned<String>) -> Option<bool> {
840         if target.contains("pc-windows-msvc") {
841             Some(true)
842         } else {
843             self.config.target_config.get(&target).and_then(|t| t.crt_static)
844         }
845     }
846
847     /// Returns the "musl root" for this `target`, if defined
848     fn musl_root(&self, target: Interned<String>) -> Option<&Path> {
849         self.config
850             .target_config
851             .get(&target)
852             .and_then(|t| t.musl_root.as_ref())
853             .or_else(|| self.config.musl_root.as_ref())
854             .map(|p| &**p)
855     }
856
857     /// Returns the sysroot for the wasi target, if defined
858     fn wasi_root(&self, target: Interned<String>) -> Option<&Path> {
859         self.config.target_config.get(&target).and_then(|t| t.wasi_root.as_ref()).map(|p| &**p)
860     }
861
862     /// Returns `true` if this is a no-std `target`, if defined
863     fn no_std(&self, target: Interned<String>) -> Option<bool> {
864         self.config.target_config.get(&target).map(|t| t.no_std)
865     }
866
867     /// Returns `true` if the target will be tested using the `remote-test-client`
868     /// and `remote-test-server` binaries.
869     fn remote_tested(&self, target: Interned<String>) -> bool {
870         self.qemu_rootfs(target).is_some()
871             || target.contains("android")
872             || env::var_os("TEST_DEVICE_ADDR").is_some()
873     }
874
875     /// Returns the root of the "rootfs" image that this target will be using,
876     /// if one was configured.
877     ///
878     /// If `Some` is returned then that means that tests for this target are
879     /// emulated with QEMU and binaries will need to be shipped to the emulator.
880     fn qemu_rootfs(&self, target: Interned<String>) -> Option<&Path> {
881         self.config.target_config.get(&target).and_then(|t| t.qemu_rootfs.as_ref()).map(|p| &**p)
882     }
883
884     /// Path to the python interpreter to use
885     fn python(&self) -> &Path {
886         self.config.python.as_ref().unwrap()
887     }
888
889     /// Temporary directory that extended error information is emitted to.
890     fn extended_error_dir(&self) -> PathBuf {
891         self.out.join("tmp/extended-error-metadata")
892     }
893
894     /// Tests whether the `compiler` compiling for `target` should be forced to
895     /// use a stage1 compiler instead.
896     ///
897     /// Currently, by default, the build system does not perform a "full
898     /// bootstrap" by default where we compile the compiler three times.
899     /// Instead, we compile the compiler two times. The final stage (stage2)
900     /// just copies the libraries from the previous stage, which is what this
901     /// method detects.
902     ///
903     /// Here we return `true` if:
904     ///
905     /// * The build isn't performing a full bootstrap
906     /// * The `compiler` is in the final stage, 2
907     /// * We're not cross-compiling, so the artifacts are already available in
908     ///   stage1
909     ///
910     /// When all of these conditions are met the build will lift artifacts from
911     /// the previous stage forward.
912     fn force_use_stage1(&self, compiler: Compiler, target: Interned<String>) -> bool {
913         !self.config.full_bootstrap
914             && compiler.stage >= 2
915             && (self.hosts.iter().any(|h| *h == target) || target == self.build)
916     }
917
918     /// Given `num` in the form "a.b.c" return a "release string" which
919     /// describes the release version number.
920     ///
921     /// For example on nightly this returns "a.b.c-nightly", on beta it returns
922     /// "a.b.c-beta.1" and on stable it just returns "a.b.c".
923     fn release(&self, num: &str) -> String {
924         match &self.config.channel[..] {
925             "stable" => num.to_string(),
926             "beta" => {
927                 if self.rust_info.is_git() {
928                     format!("{}-beta.{}", num, self.beta_prerelease_version())
929                 } else {
930                     format!("{}-beta", num)
931                 }
932             }
933             "nightly" => format!("{}-nightly", num),
934             _ => format!("{}-dev", num),
935         }
936     }
937
938     fn beta_prerelease_version(&self) -> u32 {
939         if let Some(s) = self.prerelease_version.get() {
940             return s;
941         }
942
943         let beta = output(
944             Command::new("git").arg("ls-remote").arg("origin").arg("beta").current_dir(&self.src),
945         );
946         let beta = beta.trim().split_whitespace().next().unwrap();
947         let master = output(
948             Command::new("git").arg("ls-remote").arg("origin").arg("master").current_dir(&self.src),
949         );
950         let master = master.trim().split_whitespace().next().unwrap();
951
952         // Figure out where the current beta branch started.
953         let base = output(
954             Command::new("git").arg("merge-base").arg(beta).arg(master).current_dir(&self.src),
955         );
956         let base = base.trim();
957
958         // Next figure out how many merge commits happened since we branched off
959         // beta. That's our beta number!
960         let count = output(
961             Command::new("git")
962                 .arg("rev-list")
963                 .arg("--count")
964                 .arg("--merges")
965                 .arg(format!("{}...HEAD", base))
966                 .current_dir(&self.src),
967         );
968         let n = count.trim().parse().unwrap();
969         self.prerelease_version.set(Some(n));
970         n
971     }
972
973     /// Returns the value of `release` above for Rust itself.
974     fn rust_release(&self) -> String {
975         self.release(channel::CFG_RELEASE_NUM)
976     }
977
978     /// Returns the "package version" for a component given the `num` release
979     /// number.
980     ///
981     /// The package version is typically what shows up in the names of tarballs.
982     /// For channels like beta/nightly it's just the channel name, otherwise
983     /// it's the `num` provided.
984     fn package_vers(&self, num: &str) -> String {
985         match &self.config.channel[..] {
986             "stable" => num.to_string(),
987             "beta" => "beta".to_string(),
988             "nightly" => "nightly".to_string(),
989             _ => format!("{}-dev", num),
990         }
991     }
992
993     /// Returns the value of `package_vers` above for Rust itself.
994     fn rust_package_vers(&self) -> String {
995         self.package_vers(channel::CFG_RELEASE_NUM)
996     }
997
998     /// Returns the value of `package_vers` above for Cargo
999     fn cargo_package_vers(&self) -> String {
1000         self.package_vers(&self.release_num("cargo"))
1001     }
1002
1003     /// Returns the value of `package_vers` above for rls
1004     fn rls_package_vers(&self) -> String {
1005         self.package_vers(&self.release_num("rls"))
1006     }
1007
1008     /// Returns the value of `package_vers` above for clippy
1009     fn clippy_package_vers(&self) -> String {
1010         self.package_vers(&self.release_num("clippy"))
1011     }
1012
1013     /// Returns the value of `package_vers` above for miri
1014     fn miri_package_vers(&self) -> String {
1015         self.package_vers(&self.release_num("miri"))
1016     }
1017
1018     /// Returns the value of `package_vers` above for rustfmt
1019     fn rustfmt_package_vers(&self) -> String {
1020         self.package_vers(&self.release_num("rustfmt"))
1021     }
1022
1023     fn llvm_tools_package_vers(&self) -> String {
1024         self.package_vers(channel::CFG_RELEASE_NUM)
1025     }
1026
1027     fn llvm_tools_vers(&self) -> String {
1028         self.rust_version()
1029     }
1030
1031     fn lldb_package_vers(&self) -> String {
1032         self.package_vers(channel::CFG_RELEASE_NUM)
1033     }
1034
1035     fn lldb_vers(&self) -> String {
1036         self.rust_version()
1037     }
1038
1039     fn llvm_link_tools_dynamically(&self, target: Interned<String>) -> bool {
1040         target.contains("linux-gnu") || target.contains("apple-darwin")
1041     }
1042
1043     /// Returns the `version` string associated with this compiler for Rust
1044     /// itself.
1045     ///
1046     /// Note that this is a descriptive string which includes the commit date,
1047     /// sha, version, etc.
1048     fn rust_version(&self) -> String {
1049         self.rust_info.version(self, channel::CFG_RELEASE_NUM)
1050     }
1051
1052     /// Returns the full commit hash.
1053     fn rust_sha(&self) -> Option<&str> {
1054         self.rust_info.sha()
1055     }
1056
1057     /// Returns the `a.b.c` version that the given package is at.
1058     fn release_num(&self, package: &str) -> String {
1059         let toml_file_name = self.src.join(&format!("src/tools/{}/Cargo.toml", package));
1060         let toml = t!(fs::read_to_string(&toml_file_name));
1061         for line in toml.lines() {
1062             let prefix = "version = \"";
1063             let suffix = "\"";
1064             if line.starts_with(prefix) && line.ends_with(suffix) {
1065                 return line[prefix.len()..line.len() - suffix.len()].to_string();
1066             }
1067         }
1068
1069         panic!("failed to find version in {}'s Cargo.toml", package)
1070     }
1071
1072     /// Returns `true` if unstable features should be enabled for the compiler
1073     /// we're building.
1074     fn unstable_features(&self) -> bool {
1075         match &self.config.channel[..] {
1076             "stable" | "beta" => false,
1077             "nightly" | _ => true,
1078         }
1079     }
1080
1081     fn in_tree_crates(&self, root: &str) -> Vec<&Crate> {
1082         let mut ret = Vec::new();
1083         let mut list = vec![INTERNER.intern_str(root)];
1084         let mut visited = HashSet::new();
1085         while let Some(krate) = list.pop() {
1086             let krate = &self.crates[&krate];
1087             if krate.is_local(self) {
1088                 ret.push(krate);
1089             }
1090             for dep in &krate.deps {
1091                 if visited.insert(dep) && dep != "build_helper" {
1092                     list.push(*dep);
1093                 }
1094             }
1095         }
1096         ret
1097     }
1098
1099     fn read_stamp_file(&self, stamp: &Path) -> Vec<(PathBuf, bool)> {
1100         if self.config.dry_run {
1101             return Vec::new();
1102         }
1103
1104         let mut paths = Vec::new();
1105         let contents = t!(fs::read(stamp), &stamp);
1106         // This is the method we use for extracting paths from the stamp file passed to us. See
1107         // run_cargo for more information (in compile.rs).
1108         for part in contents.split(|b| *b == 0) {
1109             if part.is_empty() {
1110                 continue;
1111             }
1112             let host = part[0] as char == 'h';
1113             let path = PathBuf::from(t!(str::from_utf8(&part[1..])));
1114             paths.push((path, host));
1115         }
1116         paths
1117     }
1118
1119     /// Copies a file from `src` to `dst`
1120     pub fn copy(&self, src: &Path, dst: &Path) {
1121         if self.config.dry_run {
1122             return;
1123         }
1124         self.verbose_than(1, &format!("Copy {:?} to {:?}", src, dst));
1125         if src == dst {
1126             return;
1127         }
1128         let _ = fs::remove_file(&dst);
1129         let metadata = t!(src.symlink_metadata());
1130         if metadata.file_type().is_symlink() {
1131             let link = t!(fs::read_link(src));
1132             t!(symlink_file(link, dst));
1133         } else if let Ok(()) = fs::hard_link(src, dst) {
1134             // Attempt to "easy copy" by creating a hard link
1135             // (symlinks don't work on windows), but if that fails
1136             // just fall back to a slow `copy` operation.
1137         } else {
1138             if let Err(e) = fs::copy(src, dst) {
1139                 panic!("failed to copy `{}` to `{}`: {}", src.display(), dst.display(), e)
1140             }
1141             t!(fs::set_permissions(dst, metadata.permissions()));
1142             let atime = FileTime::from_last_access_time(&metadata);
1143             let mtime = FileTime::from_last_modification_time(&metadata);
1144             t!(filetime::set_file_times(dst, atime, mtime));
1145         }
1146     }
1147
1148     /// Search-and-replaces within a file. (Not maximally efficiently: allocates a
1149     /// new string for each replacement.)
1150     pub fn replace_in_file(&self, path: &Path, replacements: &[(&str, &str)]) {
1151         if self.config.dry_run {
1152             return;
1153         }
1154         let mut contents = String::new();
1155         let mut file = t!(OpenOptions::new().read(true).write(true).open(path));
1156         t!(file.read_to_string(&mut contents));
1157         for &(target, replacement) in replacements {
1158             contents = contents.replace(target, replacement);
1159         }
1160         t!(file.seek(SeekFrom::Start(0)));
1161         t!(file.set_len(0));
1162         t!(file.write_all(contents.as_bytes()));
1163     }
1164
1165     /// Copies the `src` directory recursively to `dst`. Both are assumed to exist
1166     /// when this function is called.
1167     pub fn cp_r(&self, src: &Path, dst: &Path) {
1168         if self.config.dry_run {
1169             return;
1170         }
1171         for f in self.read_dir(src) {
1172             let path = f.path();
1173             let name = path.file_name().unwrap();
1174             let dst = dst.join(name);
1175             if t!(f.file_type()).is_dir() {
1176                 t!(fs::create_dir_all(&dst));
1177                 self.cp_r(&path, &dst);
1178             } else {
1179                 let _ = fs::remove_file(&dst);
1180                 self.copy(&path, &dst);
1181             }
1182         }
1183     }
1184
1185     /// Copies the `src` directory recursively to `dst`. Both are assumed to exist
1186     /// when this function is called. Unwanted files or directories can be skipped
1187     /// by returning `false` from the filter function.
1188     pub fn cp_filtered(&self, src: &Path, dst: &Path, filter: &dyn Fn(&Path) -> bool) {
1189         // Immediately recurse with an empty relative path
1190         self.recurse_(src, dst, Path::new(""), filter)
1191     }
1192
1193     // Inner function does the actual work
1194     fn recurse_(&self, src: &Path, dst: &Path, relative: &Path, filter: &dyn Fn(&Path) -> bool) {
1195         for f in self.read_dir(src) {
1196             let path = f.path();
1197             let name = path.file_name().unwrap();
1198             let dst = dst.join(name);
1199             let relative = relative.join(name);
1200             // Only copy file or directory if the filter function returns true
1201             if filter(&relative) {
1202                 if t!(f.file_type()).is_dir() {
1203                     let _ = fs::remove_dir_all(&dst);
1204                     self.create_dir(&dst);
1205                     self.recurse_(&path, &dst, &relative, filter);
1206                 } else {
1207                     let _ = fs::remove_file(&dst);
1208                     self.copy(&path, &dst);
1209                 }
1210             }
1211         }
1212     }
1213
1214     fn copy_to_folder(&self, src: &Path, dest_folder: &Path) {
1215         let file_name = src.file_name().unwrap();
1216         let dest = dest_folder.join(file_name);
1217         self.copy(src, &dest);
1218     }
1219
1220     fn install(&self, src: &Path, dstdir: &Path, perms: u32) {
1221         if self.config.dry_run {
1222             return;
1223         }
1224         let dst = dstdir.join(src.file_name().unwrap());
1225         self.verbose_than(1, &format!("Install {:?} to {:?}", src, dst));
1226         t!(fs::create_dir_all(dstdir));
1227         drop(fs::remove_file(&dst));
1228         {
1229             if !src.exists() {
1230                 panic!("Error: File \"{}\" not found!", src.display());
1231             }
1232             let metadata = t!(src.symlink_metadata());
1233             if let Err(e) = fs::copy(&src, &dst) {
1234                 panic!("failed to copy `{}` to `{}`: {}", src.display(), dst.display(), e)
1235             }
1236             t!(fs::set_permissions(&dst, metadata.permissions()));
1237             let atime = FileTime::from_last_access_time(&metadata);
1238             let mtime = FileTime::from_last_modification_time(&metadata);
1239             t!(filetime::set_file_times(&dst, atime, mtime));
1240         }
1241         chmod(&dst, perms);
1242     }
1243
1244     fn create(&self, path: &Path, s: &str) {
1245         if self.config.dry_run {
1246             return;
1247         }
1248         t!(fs::write(path, s));
1249     }
1250
1251     fn read(&self, path: &Path) -> String {
1252         if self.config.dry_run {
1253             return String::new();
1254         }
1255         t!(fs::read_to_string(path))
1256     }
1257
1258     fn create_dir(&self, dir: &Path) {
1259         if self.config.dry_run {
1260             return;
1261         }
1262         t!(fs::create_dir_all(dir))
1263     }
1264
1265     fn remove_dir(&self, dir: &Path) {
1266         if self.config.dry_run {
1267             return;
1268         }
1269         t!(fs::remove_dir_all(dir))
1270     }
1271
1272     fn read_dir(&self, dir: &Path) -> impl Iterator<Item = fs::DirEntry> {
1273         let iter = match fs::read_dir(dir) {
1274             Ok(v) => v,
1275             Err(_) if self.config.dry_run => return vec![].into_iter(),
1276             Err(err) => panic!("could not read dir {:?}: {:?}", dir, err),
1277         };
1278         iter.map(|e| t!(e)).collect::<Vec<_>>().into_iter()
1279     }
1280
1281     fn remove(&self, f: &Path) {
1282         if self.config.dry_run {
1283             return;
1284         }
1285         fs::remove_file(f).unwrap_or_else(|_| panic!("failed to remove {:?}", f));
1286     }
1287 }
1288
1289 #[cfg(unix)]
1290 fn chmod(path: &Path, perms: u32) {
1291     use std::os::unix::fs::*;
1292     t!(fs::set_permissions(path, fs::Permissions::from_mode(perms)));
1293 }
1294 #[cfg(windows)]
1295 fn chmod(_path: &Path, _perms: u32) {}
1296
1297 impl Compiler {
1298     pub fn with_stage(mut self, stage: u32) -> Compiler {
1299         self.stage = stage;
1300         self
1301     }
1302
1303     /// Returns `true` if this is a snapshot compiler for `build`'s configuration
1304     pub fn is_snapshot(&self, build: &Build) -> bool {
1305         self.stage == 0 && self.host == build.build
1306     }
1307
1308     /// Returns if this compiler should be treated as a final stage one in the
1309     /// current build session.
1310     /// This takes into account whether we're performing a full bootstrap or
1311     /// not; don't directly compare the stage with `2`!
1312     pub fn is_final_stage(&self, build: &Build) -> bool {
1313         let final_stage = if build.config.full_bootstrap { 2 } else { 1 };
1314         self.stage >= final_stage
1315     }
1316 }
1317
1318 fn envify(s: &str) -> String {
1319     s.chars()
1320         .map(|c| match c {
1321             '-' => '_',
1322             c => c,
1323         })
1324         .flat_map(|c| c.to_uppercase())
1325         .collect()
1326 }