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