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