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