]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/lib.rs
Auto merge of #47956 - retep998:is-nibbles, r=BurntSushi
[rust.git] / src / bootstrap / lib.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Implementation of rustbuild, the Rust build system.
12 //!
13 //! This module, and its descendants, are the implementation of the Rust build
14 //! system. Most of this build system is backed by Cargo but the outer layer
15 //! here serves as the ability to orchestrate calling Cargo, sequencing Cargo
16 //! builds, building artifacts like LLVM, etc. The goals of rustbuild are:
17 //!
18 //! * To be an easily understandable, easily extensible, and maintainable build
19 //!   system.
20 //! * Leverage standard tools in the Rust ecosystem to build the compiler, aka
21 //!   crates.io and Cargo.
22 //! * A standard interface to build across all platforms, including MSVC
23 //!
24 //! ## Architecture
25 //!
26 //! The build system defers most of the complicated logic managing invocations
27 //! of rustc and rustdoc to Cargo itself. However, moving through various stages
28 //! and copying artifacts is still necessary for it to do. Each time rustbuild
29 //! is invoked, it will iterate through the list of predefined steps and execute
30 //! each serially in turn if it matches the paths passed or is a default rule.
31 //! For each step rustbuild relies on the step internally being incremental and
32 //! parallel. Note, though, that the `-j` parameter to rustbuild gets forwarded
33 //! to appropriate test harnesses and such.
34 //!
35 //! Most of the "meaty" steps that matter are backed by Cargo, which does indeed
36 //! have its own parallelism and incremental management. Later steps, like
37 //! tests, aren't incremental and simply run the entire suite currently.
38 //! However, compiletest itself tries to avoid running tests when the artifacts
39 //! that are involved (mainly the compiler) haven't changed.
40 //!
41 //! When you execute `x.py build`, the steps which are executed are:
42 //!
43 //! * First, the python script is run. This will automatically download the
44 //!   stage0 rustc and cargo according to `src/stage0.txt`, or use the cached
45 //!   versions if they're available. These are then used to compile rustbuild
46 //!   itself (using Cargo). Finally, control is then transferred to rustbuild.
47 //!
48 //! * Rustbuild takes over, performs sanity checks, probes the environment,
49 //!   reads configuration, and starts executing steps as it reads the command
50 //!   line arguments (paths) or going through the default rules.
51 //!
52 //!   The build output will be something like the following:
53 //!
54 //!   Building stage0 std artifacts
55 //!   Copying stage0 std
56 //!   Building stage0 test artifacts
57 //!   Copying stage0 test
58 //!   Building stage0 compiler artifacts
59 //!   Copying stage0 rustc
60 //!   Assembling stage1 compiler
61 //!   Building stage1 std artifacts
62 //!   Copying stage1 std
63 //!   Building stage1 test artifacts
64 //!   Copying stage1 test
65 //!   Building stage1 compiler artifacts
66 //!   Copying stage1 rustc
67 //!   Assembling stage2 compiler
68 //!   Uplifting stage1 std
69 //!   Uplifting stage1 test
70 //!   Uplifting stage1 rustc
71 //!
72 //! Let's disect that a little:
73 //!
74 //! ## Building stage0 {std,test,compiler} artifacts
75 //!
76 //! These steps use the provided (downloaded, usually) compiler to compile the
77 //! local Rust source into libraries we can use.
78 //!
79 //! ## Copying stage0 {std,test,rustc}
80 //!
81 //! This copies the build output from Cargo into
82 //! `build/$HOST/stage0-sysroot/lib/rustlib/$ARCH/lib`. FIXME: This step's
83 //! documentation should be expanded -- the information already here may be
84 //! incorrect.
85 //!
86 //! ## Assembling stage1 compiler
87 //!
88 //! This copies the libraries we built in "building stage0 ... artifacts" into
89 //! the stage1 compiler's lib directory. These are the host libraries that the
90 //! compiler itself uses to run. These aren't actually used by artifacts the new
91 //! compiler generates. This step also copies the rustc and rustdoc binaries we
92 //! generated into build/$HOST/stage/bin.
93 //!
94 //! The stage1/bin/rustc is a fully functional compiler, but it doesn't yet have
95 //! any libraries to link built binaries or libraries to. The next 3 steps will
96 //! provide those libraries for it; they are mostly equivalent to constructing
97 //! the stage1/bin compiler so we don't go through them individually.
98 //!
99 //! ## Uplifting stage1 {std,test,rustc}
100 //!
101 //! This step copies the libraries from the stage1 compiler sysroot into the
102 //! stage2 compiler. This is done to avoid rebuilding the compiler; libraries
103 //! we'd build in this step should be identical (in function, if not necessarily
104 //! identical on disk) so there's no need to recompile the compiler again. Note
105 //! that if you want to, you can enable the full-bootstrap option to change this
106 //! behavior.
107 //!
108 //! Each step is driven by a separate Cargo project and rustbuild orchestrates
109 //! copying files between steps and otherwise preparing for Cargo to run.
110 //!
111 //! ## Further information
112 //!
113 //! More documentation can be found in each respective module below, and you can
114 //! also check out the `src/bootstrap/README.md` file for more information.
115
116 //#![deny(warnings)]
117 #![feature(core_intrinsics)]
118
119 #[macro_use]
120 extern crate build_helper;
121 #[macro_use]
122 extern crate serde_derive;
123 #[macro_use]
124 extern crate lazy_static;
125 extern crate serde_json;
126 extern crate cmake;
127 extern crate filetime;
128 extern crate cc;
129 extern crate getopts;
130 extern crate num_cpus;
131 extern crate toml;
132 extern crate time;
133
134 #[cfg(unix)]
135 extern crate libc;
136
137 use std::cell::{RefCell, Cell};
138 use std::collections::{HashSet, HashMap};
139 use std::env;
140 use std::fs::{self, File};
141 use std::io::Read;
142 use std::path::{PathBuf, Path};
143 use std::process::{self, Command};
144 use std::slice;
145
146 use build_helper::{run_silent, run_suppressed, try_run_silent, try_run_suppressed, output, mtime};
147
148 use util::{exe, libdir, OutputFolder, CiEnv};
149
150 mod cc_detect;
151 mod channel;
152 mod check;
153 mod test;
154 mod clean;
155 mod compile;
156 mod metadata;
157 mod config;
158 mod dist;
159 mod doc;
160 mod flags;
161 mod install;
162 mod native;
163 mod sanity;
164 pub mod util;
165 mod builder;
166 mod cache;
167 mod tool;
168 mod toolstate;
169
170 #[cfg(windows)]
171 mod job;
172
173 #[cfg(unix)]
174 mod job {
175     use libc;
176
177     pub unsafe fn setup(build: &mut ::Build) {
178         if build.config.low_priority {
179             libc::setpriority(libc::PRIO_PGRP as _, 0, 10);
180         }
181     }
182 }
183
184 #[cfg(not(any(unix, windows)))]
185 mod job {
186     pub unsafe fn setup(_build: &mut ::Build) {
187     }
188 }
189
190 pub use config::Config;
191 use flags::Subcommand;
192 use cache::{Interned, INTERNER};
193 use toolstate::ToolState;
194
195 /// A structure representing a Rust compiler.
196 ///
197 /// Each compiler has a `stage` that it is associated with and a `host` that
198 /// corresponds to the platform the compiler runs on. This structure is used as
199 /// a parameter to many methods below.
200 #[derive(Eq, PartialEq, Clone, Copy, Hash, Debug)]
201 pub struct Compiler {
202     stage: u32,
203     host: Interned<String>,
204 }
205
206 /// Global configuration for the build system.
207 ///
208 /// This structure transitively contains all configuration for the build system.
209 /// All filesystem-encoded configuration is in `config`, all flags are in
210 /// `flags`, and then parsed or probed information is listed in the keys below.
211 ///
212 /// This structure is a parameter of almost all methods in the build system,
213 /// although most functions are implemented as free functions rather than
214 /// methods specifically on this structure itself (to make it easier to
215 /// organize).
216 pub struct Build {
217     // User-specified configuration via config.toml
218     config: Config,
219
220     // Derived properties from the above two configurations
221     src: PathBuf,
222     out: PathBuf,
223     rust_info: channel::GitInfo,
224     cargo_info: channel::GitInfo,
225     rls_info: channel::GitInfo,
226     rustfmt_info: channel::GitInfo,
227     local_rebuild: bool,
228     fail_fast: bool,
229     verbosity: usize,
230
231     // Targets for which to build.
232     build: Interned<String>,
233     hosts: Vec<Interned<String>>,
234     targets: Vec<Interned<String>>,
235
236     // Stage 0 (downloaded) compiler and cargo or their local rust equivalents.
237     initial_rustc: PathBuf,
238     initial_cargo: PathBuf,
239
240     // Probed tools at runtime
241     lldb_version: Option<String>,
242     lldb_python_dir: Option<String>,
243
244     // Runtime state filled in later on
245     // C/C++ compilers and archiver for all targets
246     cc: HashMap<Interned<String>, cc::Tool>,
247     cxx: HashMap<Interned<String>, cc::Tool>,
248     ar: HashMap<Interned<String>, PathBuf>,
249     // Misc
250     crates: HashMap<Interned<String>, Crate>,
251     is_sudo: bool,
252     ci_env: CiEnv,
253     delayed_failures: RefCell<Vec<String>>,
254     prerelease_version: Cell<Option<u32>>,
255 }
256
257 #[derive(Debug)]
258 struct Crate {
259     name: Interned<String>,
260     version: String,
261     deps: Vec<Interned<String>>,
262     path: PathBuf,
263     doc_step: String,
264     build_step: String,
265     test_step: String,
266     bench_step: String,
267 }
268
269 impl Crate {
270     fn is_local(&self, build: &Build) -> bool {
271         self.path.starts_with(&build.config.src) &&
272         !self.path.to_string_lossy().ends_with("_shim")
273     }
274
275     fn local_path(&self, build: &Build) -> PathBuf {
276         assert!(self.is_local(build));
277         self.path.strip_prefix(&build.config.src).unwrap().into()
278     }
279 }
280
281 /// The various "modes" of invoking Cargo.
282 ///
283 /// These entries currently correspond to the various output directories of the
284 /// build system, with each mod generating output in a different directory.
285 #[derive(Debug, Hash, Clone, Copy, PartialEq, Eq)]
286 pub enum Mode {
287     /// Build the standard library, placing output in the "stageN-std" directory.
288     Libstd,
289
290     /// Build libtest, placing output in the "stageN-test" directory.
291     Libtest,
292
293     /// Build librustc and compiler libraries, placing output in the "stageN-rustc" directory.
294     Librustc,
295
296     /// Build some tool, placing output in the "stageN-tools" directory.
297     Tool,
298 }
299
300 impl Build {
301     /// Creates a new set of build configuration from the `flags` on the command
302     /// line and the filesystem `config`.
303     ///
304     /// By default all build output will be placed in the current directory.
305     pub fn new(config: Config) -> Build {
306         let cwd = t!(env::current_dir());
307         let src = config.src.clone();
308         let out = cwd.join("build");
309
310         let is_sudo = match env::var_os("SUDO_USER") {
311             Some(sudo_user) => {
312                 match env::var_os("USER") {
313                     Some(user) => user != sudo_user,
314                     None => false,
315                 }
316             }
317             None => false,
318         };
319         let rust_info = channel::GitInfo::new(&config, &src);
320         let cargo_info = channel::GitInfo::new(&config, &src.join("src/tools/cargo"));
321         let rls_info = channel::GitInfo::new(&config, &src.join("src/tools/rls"));
322         let rustfmt_info = channel::GitInfo::new(&config, &src.join("src/tools/rustfmt"));
323
324         Build {
325             initial_rustc: config.initial_rustc.clone(),
326             initial_cargo: config.initial_cargo.clone(),
327             local_rebuild: config.local_rebuild,
328             fail_fast: config.cmd.fail_fast(),
329             verbosity: config.verbose,
330
331             build: config.build,
332             hosts: config.hosts.clone(),
333             targets: config.targets.clone(),
334
335             config,
336             src,
337             out,
338
339             rust_info,
340             cargo_info,
341             rls_info,
342             rustfmt_info,
343             cc: HashMap::new(),
344             cxx: HashMap::new(),
345             ar: HashMap::new(),
346             crates: HashMap::new(),
347             lldb_version: None,
348             lldb_python_dir: None,
349             is_sudo,
350             ci_env: CiEnv::current(),
351             delayed_failures: RefCell::new(Vec::new()),
352             prerelease_version: Cell::new(None),
353         }
354     }
355
356     pub fn build_triple(&self) -> &[Interned<String>] {
357         unsafe {
358             slice::from_raw_parts(&self.build, 1)
359         }
360     }
361
362     /// Executes the entire build, as configured by the flags and configuration.
363     pub fn build(&mut self) {
364         unsafe {
365             job::setup(self);
366         }
367
368         if let Subcommand::Clean { all } = self.config.cmd {
369             return clean::clean(self, all);
370         }
371
372         self.verbose("finding compilers");
373         cc_detect::find(self);
374         self.verbose("running sanity check");
375         sanity::check(self);
376         // If local-rust is the same major.minor as the current version, then force a local-rebuild
377         let local_version_verbose = output(
378             Command::new(&self.initial_rustc).arg("--version").arg("--verbose"));
379         let local_release = local_version_verbose
380             .lines().filter(|x| x.starts_with("release:"))
381             .next().unwrap().trim_left_matches("release:").trim();
382         let my_version = channel::CFG_RELEASE_NUM;
383         if local_release.split('.').take(2).eq(my_version.split('.').take(2)) {
384             self.verbose(&format!("auto-detected local-rebuild {}", local_release));
385             self.local_rebuild = true;
386         }
387         self.verbose("learning about cargo");
388         metadata::build(self);
389
390         builder::Builder::run(&self);
391
392         // Check for postponed failures from `test --no-fail-fast`.
393         let failures = self.delayed_failures.borrow();
394         if failures.len() > 0 {
395             println!("\n{} command(s) did not execute successfully:\n", failures.len());
396             for failure in failures.iter() {
397                 println!("  - {}\n", failure);
398             }
399             process::exit(1);
400         }
401     }
402
403     /// Clear out `dir` if `input` is newer.
404     ///
405     /// After this executes, it will also ensure that `dir` exists.
406     fn clear_if_dirty(&self, dir: &Path, input: &Path) -> bool {
407         let stamp = dir.join(".stamp");
408         let mut cleared = false;
409         if mtime(&stamp) < mtime(input) {
410             self.verbose(&format!("Dirty - {}", dir.display()));
411             let _ = fs::remove_dir_all(dir);
412             cleared = true;
413         } else if stamp.exists() {
414             return cleared;
415         }
416         t!(fs::create_dir_all(dir));
417         t!(File::create(stamp));
418         cleared
419     }
420
421     /// Get the space-separated set of activated features for the standard
422     /// library.
423     fn std_features(&self) -> String {
424         let mut features = "panic-unwind".to_string();
425
426         if self.config.debug_jemalloc {
427             features.push_str(" debug-jemalloc");
428         }
429         if self.config.use_jemalloc {
430             features.push_str(" jemalloc");
431         }
432         if self.config.backtrace {
433             features.push_str(" backtrace");
434         }
435         if self.config.profiler {
436             features.push_str(" profiler");
437         }
438         if self.config.wasm_syscall {
439             features.push_str(" wasm_syscall");
440         }
441         features
442     }
443
444     /// Get the space-separated set of activated features for the compiler.
445     fn rustc_features(&self) -> String {
446         let mut features = String::new();
447         if self.config.use_jemalloc {
448             features.push_str(" jemalloc");
449         }
450         features
451     }
452
453     /// Component directory that Cargo will produce output into (e.g.
454     /// release/debug)
455     fn cargo_dir(&self) -> &'static str {
456         if self.config.rust_optimize {"release"} else {"debug"}
457     }
458
459     fn tools_dir(&self, compiler: Compiler) -> PathBuf {
460         let out = self.out.join(&*compiler.host).join(format!("stage{}-tools-bin", compiler.stage));
461         t!(fs::create_dir_all(&out));
462         out
463     }
464
465     /// Returns the root directory for all output generated in a particular
466     /// stage when running with a particular host compiler.
467     ///
468     /// The mode indicates what the root directory is for.
469     fn stage_out(&self, compiler: Compiler, mode: Mode) -> PathBuf {
470         let suffix = match mode {
471             Mode::Libstd => "-std",
472             Mode::Libtest => "-test",
473             Mode::Tool => "-tools",
474             Mode::Librustc => "-rustc",
475         };
476         self.out.join(&*compiler.host)
477                 .join(format!("stage{}{}", compiler.stage, suffix))
478     }
479
480     /// Returns the root output directory for all Cargo output in a given stage,
481     /// running a particular compiler, whether or not we're building the
482     /// standard library, and targeting the specified architecture.
483     fn cargo_out(&self,
484                  compiler: Compiler,
485                  mode: Mode,
486                  target: Interned<String>) -> PathBuf {
487         self.stage_out(compiler, mode).join(&*target).join(self.cargo_dir())
488     }
489
490     /// Root output directory for LLVM compiled for `target`
491     ///
492     /// Note that if LLVM is configured externally then the directory returned
493     /// will likely be empty.
494     fn llvm_out(&self, target: Interned<String>) -> PathBuf {
495         self.out.join(&*target).join("llvm")
496     }
497
498     fn emscripten_llvm_out(&self, target: Interned<String>) -> PathBuf {
499         self.out.join(&*target).join("llvm-emscripten")
500     }
501
502     /// Output directory for all documentation for a target
503     fn doc_out(&self, target: Interned<String>) -> PathBuf {
504         self.out.join(&*target).join("doc")
505     }
506
507     /// Output directory for some generated md crate documentation for a target (temporary)
508     fn md_doc_out(&self, target: Interned<String>) -> Interned<PathBuf> {
509         INTERNER.intern_path(self.out.join(&*target).join("md-doc"))
510     }
511
512     /// Output directory for all crate documentation for a target (temporary)
513     ///
514     /// The artifacts here are then copied into `doc_out` above.
515     fn crate_doc_out(&self, target: Interned<String>) -> PathBuf {
516         self.out.join(&*target).join("crate-docs")
517     }
518
519     /// Returns true if no custom `llvm-config` is set for the specified target.
520     ///
521     /// If no custom `llvm-config` was specified then Rust's llvm will be used.
522     fn is_rust_llvm(&self, target: Interned<String>) -> bool {
523         match self.config.target_config.get(&target) {
524             Some(ref c) => c.llvm_config.is_none(),
525             None => true
526         }
527     }
528
529     /// Returns the path to `llvm-config` for the specified target.
530     ///
531     /// If a custom `llvm-config` was specified for target then that's returned
532     /// instead.
533     fn llvm_config(&self, target: Interned<String>) -> PathBuf {
534         let target_config = self.config.target_config.get(&target);
535         if let Some(s) = target_config.and_then(|c| c.llvm_config.as_ref()) {
536             s.clone()
537         } else {
538             self.llvm_out(self.config.build).join("bin")
539                 .join(exe("llvm-config", &*target))
540         }
541     }
542
543     /// Returns the path to `FileCheck` binary for the specified target
544     fn llvm_filecheck(&self, target: Interned<String>) -> PathBuf {
545         let target_config = self.config.target_config.get(&target);
546         if let Some(s) = target_config.and_then(|c| c.llvm_config.as_ref()) {
547             let llvm_bindir = output(Command::new(s).arg("--bindir"));
548             Path::new(llvm_bindir.trim()).join(exe("FileCheck", &*target))
549         } else {
550             let base = self.llvm_out(self.config.build).join("build");
551             let exe = exe("FileCheck", &*target);
552             if !self.config.ninja && self.config.build.contains("msvc") {
553                 base.join("Release/bin").join(exe)
554             } else {
555                 base.join("bin").join(exe)
556             }
557         }
558     }
559
560     /// Directory for libraries built from C/C++ code and shared between stages.
561     fn native_dir(&self, target: Interned<String>) -> PathBuf {
562         self.out.join(&*target).join("native")
563     }
564
565     /// Root output directory for rust_test_helpers library compiled for
566     /// `target`
567     fn test_helpers_out(&self, target: Interned<String>) -> PathBuf {
568         self.native_dir(target).join("rust-test-helpers")
569     }
570
571     /// Adds the `RUST_TEST_THREADS` env var if necessary
572     fn add_rust_test_threads(&self, cmd: &mut Command) {
573         if env::var_os("RUST_TEST_THREADS").is_none() {
574             cmd.env("RUST_TEST_THREADS", self.jobs().to_string());
575         }
576     }
577
578     /// Returns the libdir of the snapshot compiler.
579     fn rustc_snapshot_libdir(&self) -> PathBuf {
580         self.initial_rustc.parent().unwrap().parent().unwrap()
581             .join(libdir(&self.config.build))
582     }
583
584     /// Runs a command, printing out nice contextual information if it fails.
585     fn run(&self, cmd: &mut Command) {
586         self.verbose(&format!("running: {:?}", cmd));
587         run_silent(cmd)
588     }
589
590     /// Runs a command, printing out nice contextual information if it fails.
591     fn run_quiet(&self, cmd: &mut Command) {
592         self.verbose(&format!("running: {:?}", cmd));
593         run_suppressed(cmd)
594     }
595
596     /// Runs a command, printing out nice contextual information if it fails.
597     /// Exits if the command failed to execute at all, otherwise returns its
598     /// `status.success()`.
599     fn try_run(&self, cmd: &mut Command) -> bool {
600         self.verbose(&format!("running: {:?}", cmd));
601         try_run_silent(cmd)
602     }
603
604     /// Runs a command, printing out nice contextual information if it fails.
605     /// Exits if the command failed to execute at all, otherwise returns its
606     /// `status.success()`.
607     fn try_run_quiet(&self, cmd: &mut Command) -> bool {
608         self.verbose(&format!("running: {:?}", cmd));
609         try_run_suppressed(cmd)
610     }
611
612     pub fn is_verbose(&self) -> bool {
613         self.verbosity > 0
614     }
615
616     pub fn is_very_verbose(&self) -> bool {
617         self.verbosity > 1
618     }
619
620     /// Prints a message if this build is configured in verbose mode.
621     fn verbose(&self, msg: &str) {
622         if self.is_verbose() {
623             println!("{}", msg);
624         }
625     }
626
627     /// Returns the number of parallel jobs that have been configured for this
628     /// build.
629     fn jobs(&self) -> u32 {
630         self.config.jobs.unwrap_or_else(|| num_cpus::get() as u32)
631     }
632
633     /// Returns the path to the C compiler for the target specified.
634     fn cc(&self, target: Interned<String>) -> &Path {
635         self.cc[&target].path()
636     }
637
638     /// Returns a list of flags to pass to the C compiler for the target
639     /// specified.
640     fn cflags(&self, target: Interned<String>) -> Vec<String> {
641         // Filter out -O and /O (the optimization flags) that we picked up from
642         // cc-rs because the build scripts will determine that for themselves.
643         let mut base = self.cc[&target].args().iter()
644                            .map(|s| s.to_string_lossy().into_owned())
645                            .filter(|s| !s.starts_with("-O") && !s.starts_with("/O"))
646                            .collect::<Vec<_>>();
647
648         // If we're compiling on macOS then we add a few unconditional flags
649         // indicating that we want libc++ (more filled out than libstdc++) and
650         // we want to compile for 10.7. This way we can ensure that
651         // LLVM/jemalloc/etc are all properly compiled.
652         if target.contains("apple-darwin") {
653             base.push("-stdlib=libc++".into());
654         }
655
656         // Work around an apparently bad MinGW / GCC optimization,
657         // See: http://lists.llvm.org/pipermail/cfe-dev/2016-December/051980.html
658         // See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78936
659         if &*target == "i686-pc-windows-gnu" {
660             base.push("-fno-omit-frame-pointer".into());
661         }
662         base
663     }
664
665     /// Returns the path to the `ar` archive utility for the target specified.
666     fn ar(&self, target: Interned<String>) -> Option<&Path> {
667         self.ar.get(&target).map(|p| &**p)
668     }
669
670     /// Returns the path to the C++ compiler for the target specified.
671     fn cxx(&self, target: Interned<String>) -> Result<&Path, String> {
672         match self.cxx.get(&target) {
673             Some(p) => Ok(p.path()),
674             None => Err(format!(
675                     "target `{}` is not configured as a host, only as a target",
676                     target))
677         }
678     }
679
680     /// Returns the path to the linker for the given target if it needs to be overridden.
681     fn linker(&self, target: Interned<String>) -> Option<&Path> {
682         if let Some(linker) = self.config.target_config.get(&target)
683                                                        .and_then(|c| c.linker.as_ref()) {
684             Some(linker)
685         } else if target != self.config.build &&
686                   !target.contains("msvc") && !target.contains("emscripten") {
687             Some(self.cc(target))
688         } else {
689             None
690         }
691     }
692
693     /// Returns if this target should statically link the C runtime, if specified
694     fn crt_static(&self, target: Interned<String>) -> Option<bool> {
695         if target.contains("pc-windows-msvc") {
696             Some(true)
697         } else {
698             self.config.target_config.get(&target)
699                 .and_then(|t| t.crt_static)
700         }
701     }
702
703     /// Returns the "musl root" for this `target`, if defined
704     fn musl_root(&self, target: Interned<String>) -> Option<&Path> {
705         self.config.target_config.get(&target)
706             .and_then(|t| t.musl_root.as_ref())
707             .or(self.config.musl_root.as_ref())
708             .map(|p| &**p)
709     }
710
711     /// Returns whether the target will be tested using the `remote-test-client`
712     /// and `remote-test-server` binaries.
713     fn remote_tested(&self, target: Interned<String>) -> bool {
714         self.qemu_rootfs(target).is_some() || target.contains("android") ||
715         env::var_os("TEST_DEVICE_ADDR").is_some()
716     }
717
718     /// Returns the root of the "rootfs" image that this target will be using,
719     /// if one was configured.
720     ///
721     /// If `Some` is returned then that means that tests for this target are
722     /// emulated with QEMU and binaries will need to be shipped to the emulator.
723     fn qemu_rootfs(&self, target: Interned<String>) -> Option<&Path> {
724         self.config.target_config.get(&target)
725             .and_then(|t| t.qemu_rootfs.as_ref())
726             .map(|p| &**p)
727     }
728
729     /// Path to the python interpreter to use
730     fn python(&self) -> &Path {
731         self.config.python.as_ref().unwrap()
732     }
733
734     /// Temporary directory that extended error information is emitted to.
735     fn extended_error_dir(&self) -> PathBuf {
736         self.out.join("tmp/extended-error-metadata")
737     }
738
739     /// Tests whether the `compiler` compiling for `target` should be forced to
740     /// use a stage1 compiler instead.
741     ///
742     /// Currently, by default, the build system does not perform a "full
743     /// bootstrap" by default where we compile the compiler three times.
744     /// Instead, we compile the compiler two times. The final stage (stage2)
745     /// just copies the libraries from the previous stage, which is what this
746     /// method detects.
747     ///
748     /// Here we return `true` if:
749     ///
750     /// * The build isn't performing a full bootstrap
751     /// * The `compiler` is in the final stage, 2
752     /// * We're not cross-compiling, so the artifacts are already available in
753     ///   stage1
754     ///
755     /// When all of these conditions are met the build will lift artifacts from
756     /// the previous stage forward.
757     fn force_use_stage1(&self, compiler: Compiler, target: Interned<String>) -> bool {
758         !self.config.full_bootstrap &&
759             compiler.stage >= 2 &&
760             (self.hosts.iter().any(|h| *h == target) || target == self.build)
761     }
762
763     /// Returns the directory that OpenSSL artifacts are compiled into if
764     /// configured to do so.
765     fn openssl_dir(&self, target: Interned<String>) -> Option<PathBuf> {
766         // OpenSSL not used on Windows
767         if target.contains("windows") {
768             None
769         } else if self.config.openssl_static {
770             Some(self.out.join(&*target).join("openssl"))
771         } else {
772             None
773         }
774     }
775
776     /// Returns the directory that OpenSSL artifacts are installed into if
777     /// configured as such.
778     fn openssl_install_dir(&self, target: Interned<String>) -> Option<PathBuf> {
779         self.openssl_dir(target).map(|p| p.join("install"))
780     }
781
782     /// Given `num` in the form "a.b.c" return a "release string" which
783     /// describes the release version number.
784     ///
785     /// For example on nightly this returns "a.b.c-nightly", on beta it returns
786     /// "a.b.c-beta.1" and on stable it just returns "a.b.c".
787     fn release(&self, num: &str) -> String {
788         match &self.config.channel[..] {
789             "stable" => num.to_string(),
790             "beta" => if self.rust_info.is_git() {
791                 format!("{}-beta.{}", num, self.beta_prerelease_version())
792             } else {
793                 format!("{}-beta", num)
794             },
795             "nightly" => format!("{}-nightly", num),
796             _ => format!("{}-dev", num),
797         }
798     }
799
800     fn beta_prerelease_version(&self) -> u32 {
801         if let Some(s) = self.prerelease_version.get() {
802             return s
803         }
804
805         let beta = output(
806             Command::new("git")
807                 .arg("ls-remote")
808                 .arg("origin")
809                 .arg("beta")
810                 .current_dir(&self.src)
811         );
812         let beta = beta.trim().split_whitespace().next().unwrap();
813         let master = output(
814             Command::new("git")
815                 .arg("ls-remote")
816                 .arg("origin")
817                 .arg("master")
818                 .current_dir(&self.src)
819         );
820         let master = master.trim().split_whitespace().next().unwrap();
821
822         // Figure out where the current beta branch started.
823         let base = output(
824             Command::new("git")
825                 .arg("merge-base")
826                 .arg(beta)
827                 .arg(master)
828                 .current_dir(&self.src),
829         );
830         let base = base.trim();
831
832         // Next figure out how many merge commits happened since we branched off
833         // beta. That's our beta number!
834         let count = output(
835             Command::new("git")
836                 .arg("rev-list")
837                 .arg("--count")
838                 .arg("--merges")
839                 .arg(format!("{}...HEAD", base))
840                 .current_dir(&self.src),
841         );
842         let n = count.trim().parse().unwrap();
843         self.prerelease_version.set(Some(n));
844         n
845     }
846
847     /// Returns the value of `release` above for Rust itself.
848     fn rust_release(&self) -> String {
849         self.release(channel::CFG_RELEASE_NUM)
850     }
851
852     /// Returns the "package version" for a component given the `num` release
853     /// number.
854     ///
855     /// The package version is typically what shows up in the names of tarballs.
856     /// For channels like beta/nightly it's just the channel name, otherwise
857     /// it's the `num` provided.
858     fn package_vers(&self, num: &str) -> String {
859         match &self.config.channel[..] {
860             "stable" => num.to_string(),
861             "beta" => "beta".to_string(),
862             "nightly" => "nightly".to_string(),
863             _ => format!("{}-dev", num),
864         }
865     }
866
867     /// Returns the value of `package_vers` above for Rust itself.
868     fn rust_package_vers(&self) -> String {
869         self.package_vers(channel::CFG_RELEASE_NUM)
870     }
871
872     /// Returns the value of `package_vers` above for Cargo
873     fn cargo_package_vers(&self) -> String {
874         self.package_vers(&self.release_num("cargo"))
875     }
876
877     /// Returns the value of `package_vers` above for rls
878     fn rls_package_vers(&self) -> String {
879         self.package_vers(&self.release_num("rls"))
880     }
881
882     /// Returns the value of `package_vers` above for rustfmt
883     fn rustfmt_package_vers(&self) -> String {
884         self.package_vers(&self.release_num("rustfmt"))
885     }
886
887     /// Returns the `version` string associated with this compiler for Rust
888     /// itself.
889     ///
890     /// Note that this is a descriptive string which includes the commit date,
891     /// sha, version, etc.
892     fn rust_version(&self) -> String {
893         self.rust_info.version(self, channel::CFG_RELEASE_NUM)
894     }
895
896     /// Return the full commit hash
897     fn rust_sha(&self) -> Option<&str> {
898         self.rust_info.sha()
899     }
900
901     /// Returns the `a.b.c` version that the given package is at.
902     fn release_num(&self, package: &str) -> String {
903         let mut toml = String::new();
904         let toml_file_name = self.src.join(&format!("src/tools/{}/Cargo.toml", package));
905         t!(t!(File::open(toml_file_name)).read_to_string(&mut toml));
906         for line in toml.lines() {
907             let prefix = "version = \"";
908             let suffix = "\"";
909             if line.starts_with(prefix) && line.ends_with(suffix) {
910                 return line[prefix.len()..line.len() - suffix.len()].to_string()
911             }
912         }
913
914         panic!("failed to find version in {}'s Cargo.toml", package)
915     }
916
917     /// Returns whether unstable features should be enabled for the compiler
918     /// we're building.
919     fn unstable_features(&self) -> bool {
920         match &self.config.channel[..] {
921             "stable" | "beta" => false,
922             "nightly" | _ => true,
923         }
924     }
925
926     /// Fold the output of the commands after this method into a group. The fold
927     /// ends when the returned object is dropped. Folding can only be used in
928     /// the Travis CI environment.
929     pub fn fold_output<D, F>(&self, name: F) -> Option<OutputFolder>
930         where D: Into<String>, F: FnOnce() -> D
931     {
932         if self.ci_env == CiEnv::Travis {
933             Some(OutputFolder::new(name().into()))
934         } else {
935             None
936         }
937     }
938
939     /// Updates the actual toolstate of a tool.
940     ///
941     /// The toolstates are saved to the file specified by the key
942     /// `rust.save-toolstates` in `config.toml`. If unspecified, nothing will be
943     /// done. The file is updated immediately after this function completes.
944     pub fn save_toolstate(&self, tool: &str, state: ToolState) {
945         use std::io::{Seek, SeekFrom};
946
947         if let Some(ref path) = self.config.save_toolstates {
948             let mut file = t!(fs::OpenOptions::new()
949                 .create(true)
950                 .read(true)
951                 .write(true)
952                 .open(path));
953
954             let mut current_toolstates: HashMap<Box<str>, ToolState> =
955                 serde_json::from_reader(&mut file).unwrap_or_default();
956             current_toolstates.insert(tool.into(), state);
957             t!(file.seek(SeekFrom::Start(0)));
958             t!(file.set_len(0));
959             t!(serde_json::to_writer(file, &current_toolstates));
960         }
961     }
962
963     fn in_tree_crates(&self, root: &str) -> Vec<&Crate> {
964         let mut ret = Vec::new();
965         let mut list = vec![INTERNER.intern_str(root)];
966         let mut visited = HashSet::new();
967         while let Some(krate) = list.pop() {
968             let krate = &self.crates[&krate];
969             if krate.is_local(self) {
970                 ret.push(krate);
971                 for dep in &krate.deps {
972                     if visited.insert(dep) && dep != "build_helper" {
973                         list.push(*dep);
974                     }
975                 }
976             }
977         }
978         ret
979     }
980 }
981
982 impl<'a> Compiler {
983     pub fn with_stage(mut self, stage: u32) -> Compiler {
984         self.stage = stage;
985         self
986     }
987
988     /// Returns whether this is a snapshot compiler for `build`'s configuration
989     pub fn is_snapshot(&self, build: &Build) -> bool {
990         self.stage == 0 && self.host == build.build
991     }
992
993     /// Returns if this compiler should be treated as a final stage one in the
994     /// current build session.
995     /// This takes into account whether we're performing a full bootstrap or
996     /// not; don't directly compare the stage with `2`!
997     pub fn is_final_stage(&self, build: &Build) -> bool {
998         let final_stage = if build.config.full_bootstrap { 2 } else { 1 };
999         self.stage >= final_stage
1000     }
1001 }