]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/lib.rs
Rollup merge of #43043 - sfackler:reverse-stability, r=Mark-Simulacrum
[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 //! Although this build system defers most of the complicated logic to Cargo
27 //! itself, it still needs to maintain a list of targets and dependencies which
28 //! it can itself perform. Rustbuild is made up of a list of rules with
29 //! dependencies amongst them (created in the `step` module) and then knows how
30 //! to execute each in sequence. Each time rustbuild is invoked, it will simply
31 //! iterate through this list of steps and execute each serially in turn.  For
32 //! each step rustbuild relies on the step internally being incremental and
33 //! parallel. Note, though, that the `-j` parameter to rustbuild gets forwarded
34 //! to appropriate test harnesses and such.
35 //!
36 //! Most of the "meaty" steps that matter are backed by Cargo, which does indeed
37 //! have its own parallelism and incremental management. Later steps, like
38 //! tests, aren't incremental and simply run the entire suite currently.
39 //!
40 //! When you execute `x.py build`, the steps which are executed are:
41 //!
42 //! * First, the python script is run. This will automatically download the
43 //!   stage0 rustc and cargo according to `src/stage0.txt`, or using the cached
44 //!   versions if they're available. These are then used to compile rustbuild
45 //!   itself (using Cargo). Finally, control is then transferred to rustbuild.
46 //!
47 //! * Rustbuild takes over, performs sanity checks, probes the environment,
48 //!   reads configuration, builds up a list of steps, and then starts executing
49 //!   them.
50 //!
51 //! * The stage0 libstd is compiled
52 //! * The stage0 libtest is compiled
53 //! * The stage0 librustc is compiled
54 //! * The stage1 compiler is assembled
55 //! * The stage1 libstd, libtest, librustc are compiled
56 //! * The stage2 compiler is assembled
57 //! * The stage2 libstd, libtest, librustc are compiled
58 //!
59 //! Each step is driven by a separate Cargo project and rustbuild orchestrates
60 //! copying files between steps and otherwise preparing for Cargo to run.
61 //!
62 //! ## Further information
63 //!
64 //! More documentation can be found in each respective module below, and you can
65 //! also check out the `src/bootstrap/README.md` file for more information.
66
67 #![deny(warnings)]
68
69 #[macro_use]
70 extern crate build_helper;
71 extern crate cmake;
72 extern crate filetime;
73 extern crate gcc;
74 extern crate getopts;
75 extern crate num_cpus;
76 extern crate rustc_serialize;
77 extern crate toml;
78
79 #[cfg(unix)]
80 extern crate libc;
81
82 use std::cell::Cell;
83 use std::cmp;
84 use std::collections::HashMap;
85 use std::env;
86 use std::ffi::OsString;
87 use std::fs::{self, File};
88 use std::io::Read;
89 use std::path::{PathBuf, Path};
90 use std::process::Command;
91
92 use build_helper::{run_silent, run_suppressed, try_run_silent, try_run_suppressed, output, mtime};
93
94 use util::{exe, libdir, add_lib_path, OutputFolder, CiEnv};
95
96 mod cc;
97 mod channel;
98 mod check;
99 mod clean;
100 mod compile;
101 mod metadata;
102 mod config;
103 mod dist;
104 mod doc;
105 mod flags;
106 mod install;
107 mod native;
108 mod sanity;
109 mod step;
110 pub mod util;
111
112 #[cfg(windows)]
113 mod job;
114
115 #[cfg(unix)]
116 mod job {
117     use libc;
118
119     pub unsafe fn setup(build: &mut ::Build) {
120         if build.config.low_priority {
121             libc::setpriority(libc::PRIO_PGRP as _, 0, 10);
122         }
123     }
124 }
125
126 #[cfg(not(any(unix, windows)))]
127 mod job {
128     pub unsafe fn setup(_build: &mut ::Build) {
129     }
130 }
131
132 pub use config::Config;
133 pub use flags::{Flags, Subcommand};
134
135 /// A structure representing a Rust compiler.
136 ///
137 /// Each compiler has a `stage` that it is associated with and a `host` that
138 /// corresponds to the platform the compiler runs on. This structure is used as
139 /// a parameter to many methods below.
140 #[derive(Eq, PartialEq, Clone, Copy, Hash, Debug)]
141 pub struct Compiler<'a> {
142     stage: u32,
143     host: &'a str,
144 }
145
146 /// Global configuration for the build system.
147 ///
148 /// This structure transitively contains all configuration for the build system.
149 /// All filesystem-encoded configuration is in `config`, all flags are in
150 /// `flags`, and then parsed or probed information is listed in the keys below.
151 ///
152 /// This structure is a parameter of almost all methods in the build system,
153 /// although most functions are implemented as free functions rather than
154 /// methods specifically on this structure itself (to make it easier to
155 /// organize).
156 pub struct Build {
157     // User-specified configuration via config.toml
158     config: Config,
159
160     // User-specified configuration via CLI flags
161     flags: Flags,
162
163     // Derived properties from the above two configurations
164     src: PathBuf,
165     out: PathBuf,
166     rust_info: channel::GitInfo,
167     cargo_info: channel::GitInfo,
168     rls_info: channel::GitInfo,
169     local_rebuild: bool,
170     fail_fast: bool,
171     verbosity: usize,
172
173     // Targets for which to build.
174     build: String,
175     hosts: Vec<String>,
176     targets: Vec<String>,
177
178     // Stage 0 (downloaded) compiler and cargo or their local rust equivalents.
179     initial_rustc: PathBuf,
180     initial_cargo: PathBuf,
181
182     // Probed tools at runtime
183     lldb_version: Option<String>,
184     lldb_python_dir: Option<String>,
185
186     // Runtime state filled in later on
187     // target -> (cc, ar)
188     cc: HashMap<String, (gcc::Tool, Option<PathBuf>)>,
189     // host -> (cc, ar)
190     cxx: HashMap<String, gcc::Tool>,
191     crates: HashMap<String, Crate>,
192     is_sudo: bool,
193     ci_env: CiEnv,
194     delayed_failures: Cell<usize>,
195 }
196
197 #[derive(Debug)]
198 struct Crate {
199     name: String,
200     version: String,
201     deps: Vec<String>,
202     path: PathBuf,
203     doc_step: String,
204     build_step: String,
205     test_step: String,
206     bench_step: String,
207 }
208
209 /// The various "modes" of invoking Cargo.
210 ///
211 /// These entries currently correspond to the various output directories of the
212 /// build system, with each mod generating output in a different directory.
213 #[derive(Clone, Copy, PartialEq, Eq)]
214 pub enum Mode {
215     /// Build the standard library, placing output in the "stageN-std" directory.
216     Libstd,
217
218     /// Build libtest, placing output in the "stageN-test" directory.
219     Libtest,
220
221     /// Build librustc and compiler libraries, placing output in the "stageN-rustc" directory.
222     Librustc,
223
224     /// Build some tool, placing output in the "stageN-tools" directory.
225     Tool,
226 }
227
228 impl Build {
229     /// Creates a new set of build configuration from the `flags` on the command
230     /// line and the filesystem `config`.
231     ///
232     /// By default all build output will be placed in the current directory.
233     pub fn new(flags: Flags, config: Config) -> Build {
234         let cwd = t!(env::current_dir());
235         let src = flags.src.clone();
236         let out = cwd.join("build");
237
238         let is_sudo = match env::var_os("SUDO_USER") {
239             Some(sudo_user) => {
240                 match env::var_os("USER") {
241                     Some(user) => user != sudo_user,
242                     None => false,
243                 }
244             }
245             None => false,
246         };
247         let rust_info = channel::GitInfo::new(&src);
248         let cargo_info = channel::GitInfo::new(&src.join("src/tools/cargo"));
249         let rls_info = channel::GitInfo::new(&src.join("src/tools/rls"));
250
251         let hosts = if !flags.host.is_empty() {
252             for host in flags.host.iter() {
253                 if !config.host.contains(host) {
254                     panic!("specified host `{}` is not in configuration", host);
255                 }
256             }
257             flags.host.clone()
258         } else {
259             config.host.clone()
260         };
261         let targets = if !flags.target.is_empty() {
262             for target in flags.target.iter() {
263                 if !config.target.contains(target) {
264                     panic!("specified target `{}` is not in configuration", target);
265                 }
266             }
267             flags.target.clone()
268         } else {
269             config.target.clone()
270         };
271
272         Build {
273             initial_rustc: config.initial_rustc.clone(),
274             initial_cargo: config.initial_cargo.clone(),
275             local_rebuild: config.local_rebuild,
276             fail_fast: flags.cmd.fail_fast(),
277             verbosity: cmp::max(flags.verbose, config.verbose),
278
279             build: config.host[0].clone(),
280             hosts: hosts,
281             targets: targets,
282
283             flags: flags,
284             config: config,
285             src: src,
286             out: out,
287
288             rust_info: rust_info,
289             cargo_info: cargo_info,
290             rls_info: rls_info,
291             cc: HashMap::new(),
292             cxx: HashMap::new(),
293             crates: HashMap::new(),
294             lldb_version: None,
295             lldb_python_dir: None,
296             is_sudo: is_sudo,
297             ci_env: CiEnv::current(),
298             delayed_failures: Cell::new(0),
299         }
300     }
301
302     fn build_slice(&self) -> &[String] {
303         unsafe {
304             std::slice::from_raw_parts(&self.build, 1)
305         }
306     }
307
308     /// Executes the entire build, as configured by the flags and configuration.
309     pub fn build(&mut self) {
310         unsafe {
311             job::setup(self);
312         }
313
314         if let Subcommand::Clean = self.flags.cmd {
315             return clean::clean(self);
316         }
317
318         self.verbose("finding compilers");
319         cc::find(self);
320         self.verbose("running sanity check");
321         sanity::check(self);
322         // If local-rust is the same major.minor as the current version, then force a local-rebuild
323         let local_version_verbose = output(
324             Command::new(&self.initial_rustc).arg("--version").arg("--verbose"));
325         let local_release = local_version_verbose
326             .lines().filter(|x| x.starts_with("release:"))
327             .next().unwrap().trim_left_matches("release:").trim();
328         let my_version = channel::CFG_RELEASE_NUM;
329         if local_release.split('.').take(2).eq(my_version.split('.').take(2)) {
330             self.verbose(&format!("auto-detected local-rebuild {}", local_release));
331             self.local_rebuild = true;
332         }
333         self.verbose("learning about cargo");
334         metadata::build(self);
335
336         step::run(self);
337     }
338
339     /// Clear out `dir` if `input` is newer.
340     ///
341     /// After this executes, it will also ensure that `dir` exists.
342     fn clear_if_dirty(&self, dir: &Path, input: &Path) {
343         let stamp = dir.join(".stamp");
344         if mtime(&stamp) < mtime(input) {
345             self.verbose(&format!("Dirty - {}", dir.display()));
346             let _ = fs::remove_dir_all(dir);
347         } else if stamp.exists() {
348             return
349         }
350         t!(fs::create_dir_all(dir));
351         t!(File::create(stamp));
352     }
353
354     /// Prepares an invocation of `cargo` to be run.
355     ///
356     /// This will create a `Command` that represents a pending execution of
357     /// Cargo. This cargo will be configured to use `compiler` as the actual
358     /// rustc compiler, its output will be scoped by `mode`'s output directory,
359     /// it will pass the `--target` flag for the specified `target`, and will be
360     /// executing the Cargo command `cmd`.
361     fn cargo(&self,
362              compiler: &Compiler,
363              mode: Mode,
364              target: &str,
365              cmd: &str) -> Command {
366         let mut cargo = Command::new(&self.initial_cargo);
367         let out_dir = self.stage_out(compiler, mode);
368         cargo.env("CARGO_TARGET_DIR", out_dir)
369              .arg(cmd)
370              .arg("-j").arg(self.jobs().to_string())
371              .arg("--target").arg(target);
372
373         // FIXME: Temporary fix for https://github.com/rust-lang/cargo/issues/3005
374         // Force cargo to output binaries with disambiguating hashes in the name
375         cargo.env("__CARGO_DEFAULT_LIB_METADATA", &self.config.channel);
376
377         let stage;
378         if compiler.stage == 0 && self.local_rebuild {
379             // Assume the local-rebuild rustc already has stage1 features.
380             stage = 1;
381         } else {
382             stage = compiler.stage;
383         }
384
385         // Customize the compiler we're running. Specify the compiler to cargo
386         // as our shim and then pass it some various options used to configure
387         // how the actual compiler itself is called.
388         //
389         // These variables are primarily all read by
390         // src/bootstrap/bin/{rustc.rs,rustdoc.rs}
391         cargo.env("RUSTBUILD_NATIVE_DIR", self.native_dir(target))
392              .env("RUSTC", self.out.join("bootstrap/debug/rustc"))
393              .env("RUSTC_REAL", self.compiler_path(compiler))
394              .env("RUSTC_STAGE", stage.to_string())
395              .env("RUSTC_CODEGEN_UNITS",
396                   self.config.rust_codegen_units.to_string())
397              .env("RUSTC_DEBUG_ASSERTIONS",
398                   self.config.rust_debug_assertions.to_string())
399              .env("RUSTC_SYSROOT", self.sysroot(compiler))
400              .env("RUSTC_LIBDIR", self.rustc_libdir(compiler))
401              .env("RUSTC_RPATH", self.config.rust_rpath.to_string())
402              .env("RUSTDOC", self.out.join("bootstrap/debug/rustdoc"))
403              .env("RUSTDOC_REAL", self.rustdoc(compiler))
404              .env("RUSTC_FLAGS", self.rustc_flags(target).join(" "));
405
406         if mode != Mode::Tool {
407             // Tools don't get debuginfo right now, e.g. cargo and rls don't
408             // get compiled with debuginfo.
409             cargo.env("RUSTC_DEBUGINFO", self.config.rust_debuginfo.to_string())
410                  .env("RUSTC_DEBUGINFO_LINES", self.config.rust_debuginfo_lines.to_string())
411                  .env("RUSTC_FORCE_UNSTABLE", "1");
412
413             // Currently the compiler depends on crates from crates.io, and
414             // then other crates can depend on the compiler (e.g. proc-macro
415             // crates). Let's say, for example that rustc itself depends on the
416             // bitflags crate. If an external crate then depends on the
417             // bitflags crate as well, we need to make sure they don't
418             // conflict, even if they pick the same verison of bitflags. We'll
419             // want to make sure that e.g. a plugin and rustc each get their
420             // own copy of bitflags.
421
422             // Cargo ensures that this works in general through the -C metadata
423             // flag. This flag will frob the symbols in the binary to make sure
424             // they're different, even though the source code is the exact
425             // same. To solve this problem for the compiler we extend Cargo's
426             // already-passed -C metadata flag with our own. Our rustc.rs
427             // wrapper around the actual rustc will detect -C metadata being
428             // passed and frob it with this extra string we're passing in.
429             cargo.env("RUSTC_METADATA_SUFFIX", "rustc");
430         }
431
432         // Enable usage of unstable features
433         cargo.env("RUSTC_BOOTSTRAP", "1");
434         self.add_rust_test_threads(&mut cargo);
435
436         // Almost all of the crates that we compile as part of the bootstrap may
437         // have a build script, including the standard library. To compile a
438         // build script, however, it itself needs a standard library! This
439         // introduces a bit of a pickle when we're compiling the standard
440         // library itself.
441         //
442         // To work around this we actually end up using the snapshot compiler
443         // (stage0) for compiling build scripts of the standard library itself.
444         // The stage0 compiler is guaranteed to have a libstd available for use.
445         //
446         // For other crates, however, we know that we've already got a standard
447         // library up and running, so we can use the normal compiler to compile
448         // build scripts in that situation.
449         if mode == Mode::Libstd {
450             cargo.env("RUSTC_SNAPSHOT", &self.initial_rustc)
451                  .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_snapshot_libdir());
452         } else {
453             cargo.env("RUSTC_SNAPSHOT", self.compiler_path(compiler))
454                  .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_libdir(compiler));
455         }
456
457         // Ignore incremental modes except for stage0, since we're
458         // not guaranteeing correctness across builds if the compiler
459         // is changing under your feet.`
460         if self.flags.incremental && compiler.stage == 0 {
461             let incr_dir = self.incremental_dir(compiler);
462             cargo.env("RUSTC_INCREMENTAL", incr_dir);
463         }
464
465         if let Some(ref on_fail) = self.flags.on_fail {
466             cargo.env("RUSTC_ON_FAIL", on_fail);
467         }
468
469         cargo.env("RUSTC_VERBOSE", format!("{}", self.verbosity));
470
471         // Specify some various options for build scripts used throughout
472         // the build.
473         //
474         // FIXME: the guard against msvc shouldn't need to be here
475         if !target.contains("msvc") {
476             cargo.env(format!("CC_{}", target), self.cc(target))
477                  .env(format!("AR_{}", target), self.ar(target).unwrap()) // only msvc is None
478                  .env(format!("CFLAGS_{}", target), self.cflags(target).join(" "));
479
480             if let Ok(cxx) = self.cxx(target) {
481                  cargo.env(format!("CXX_{}", target), cxx);
482             }
483         }
484
485         if self.config.extended && compiler.is_final_stage(self) {
486             cargo.env("RUSTC_SAVE_ANALYSIS", "api".to_string());
487         }
488
489         // When being built Cargo will at some point call `nmake.exe` on Windows
490         // MSVC. Unfortunately `nmake` will read these two environment variables
491         // below and try to intepret them. We're likely being run, however, from
492         // MSYS `make` which uses the same variables.
493         //
494         // As a result, to prevent confusion and errors, we remove these
495         // variables from our environment to prevent passing MSYS make flags to
496         // nmake, causing it to blow up.
497         if cfg!(target_env = "msvc") {
498             cargo.env_remove("MAKE");
499             cargo.env_remove("MAKEFLAGS");
500         }
501
502         // Environment variables *required* throughout the build
503         //
504         // FIXME: should update code to not require this env var
505         cargo.env("CFG_COMPILER_HOST_TRIPLE", target);
506
507         if self.is_verbose() {
508             cargo.arg("-v");
509         }
510         // FIXME: cargo bench does not accept `--release`
511         if self.config.rust_optimize && cmd != "bench" {
512             cargo.arg("--release");
513         }
514         if self.config.locked_deps {
515             cargo.arg("--locked");
516         }
517         if self.config.vendor || self.is_sudo {
518             cargo.arg("--frozen");
519         }
520
521         self.ci_env.force_coloring_in_ci(&mut cargo);
522
523         cargo
524     }
525
526     /// Get a path to the compiler specified.
527     fn compiler_path(&self, compiler: &Compiler) -> PathBuf {
528         if compiler.is_snapshot(self) {
529             self.initial_rustc.clone()
530         } else {
531             self.sysroot(compiler).join("bin").join(exe("rustc", compiler.host))
532         }
533     }
534
535     /// Get the specified tool built by the specified compiler
536     fn tool(&self, compiler: &Compiler, tool: &str) -> PathBuf {
537         self.cargo_out(compiler, Mode::Tool, compiler.host)
538             .join(exe(tool, compiler.host))
539     }
540
541     /// Get the `rustdoc` executable next to the specified compiler
542     fn rustdoc(&self, compiler: &Compiler) -> PathBuf {
543         let mut rustdoc = self.compiler_path(compiler);
544         rustdoc.pop();
545         rustdoc.push(exe("rustdoc", compiler.host));
546         rustdoc
547     }
548
549     /// Get a `Command` which is ready to run `tool` in `stage` built for
550     /// `host`.
551     fn tool_cmd(&self, compiler: &Compiler, tool: &str) -> Command {
552         let mut cmd = Command::new(self.tool(&compiler, tool));
553         self.prepare_tool_cmd(compiler, &mut cmd);
554         cmd
555     }
556
557     /// Prepares the `cmd` provided to be able to run the `compiler` provided.
558     ///
559     /// Notably this munges the dynamic library lookup path to point to the
560     /// right location to run `compiler`.
561     fn prepare_tool_cmd(&self, compiler: &Compiler, cmd: &mut Command) {
562         let host = compiler.host;
563         let mut paths = vec![
564             self.sysroot_libdir(compiler, compiler.host),
565             self.cargo_out(compiler, Mode::Tool, host).join("deps"),
566         ];
567
568         // On MSVC a tool may invoke a C compiler (e.g. compiletest in run-make
569         // mode) and that C compiler may need some extra PATH modification. Do
570         // so here.
571         if compiler.host.contains("msvc") {
572             let curpaths = env::var_os("PATH").unwrap_or(OsString::new());
573             let curpaths = env::split_paths(&curpaths).collect::<Vec<_>>();
574             for &(ref k, ref v) in self.cc[compiler.host].0.env() {
575                 if k != "PATH" {
576                     continue
577                 }
578                 for path in env::split_paths(v) {
579                     if !curpaths.contains(&path) {
580                         paths.push(path);
581                     }
582                 }
583             }
584         }
585         add_lib_path(paths, cmd);
586     }
587
588     /// Get the space-separated set of activated features for the standard
589     /// library.
590     fn std_features(&self) -> String {
591         let mut features = "panic-unwind".to_string();
592
593         if self.config.debug_jemalloc {
594             features.push_str(" debug-jemalloc");
595         }
596         if self.config.use_jemalloc {
597             features.push_str(" jemalloc");
598         }
599         if self.config.backtrace {
600             features.push_str(" backtrace");
601         }
602         if self.config.profiler {
603             features.push_str(" profiler");
604         }
605         features
606     }
607
608     /// Get the space-separated set of activated features for the compiler.
609     fn rustc_features(&self) -> String {
610         let mut features = String::new();
611         if self.config.use_jemalloc {
612             features.push_str(" jemalloc");
613         }
614         features
615     }
616
617     /// Component directory that Cargo will produce output into (e.g.
618     /// release/debug)
619     fn cargo_dir(&self) -> &'static str {
620         if self.config.rust_optimize {"release"} else {"debug"}
621     }
622
623     /// Returns the sysroot for the `compiler` specified that *this build system
624     /// generates*.
625     ///
626     /// That is, the sysroot for the stage0 compiler is not what the compiler
627     /// thinks it is by default, but it's the same as the default for stages
628     /// 1-3.
629     fn sysroot(&self, compiler: &Compiler) -> PathBuf {
630         if compiler.stage == 0 {
631             self.out.join(compiler.host).join("stage0-sysroot")
632         } else {
633             self.out.join(compiler.host).join(format!("stage{}", compiler.stage))
634         }
635     }
636
637     /// Get the directory for incremental by-products when using the
638     /// given compiler.
639     fn incremental_dir(&self, compiler: &Compiler) -> PathBuf {
640         self.out.join(compiler.host).join(format!("stage{}-incremental", compiler.stage))
641     }
642
643     /// Returns the libdir where the standard library and other artifacts are
644     /// found for a compiler's sysroot.
645     fn sysroot_libdir(&self, compiler: &Compiler, target: &str) -> PathBuf {
646         self.sysroot(compiler).join("lib").join("rustlib")
647             .join(target).join("lib")
648     }
649
650     /// Returns the root directory for all output generated in a particular
651     /// stage when running with a particular host compiler.
652     ///
653     /// The mode indicates what the root directory is for.
654     fn stage_out(&self, compiler: &Compiler, mode: Mode) -> PathBuf {
655         let suffix = match mode {
656             Mode::Libstd => "-std",
657             Mode::Libtest => "-test",
658             Mode::Tool => "-tools",
659             Mode::Librustc => "-rustc",
660         };
661         self.out.join(compiler.host)
662                 .join(format!("stage{}{}", compiler.stage, suffix))
663     }
664
665     /// Returns the root output directory for all Cargo output in a given stage,
666     /// running a particular compiler, wehther or not we're building the
667     /// standard library, and targeting the specified architecture.
668     fn cargo_out(&self,
669                  compiler: &Compiler,
670                  mode: Mode,
671                  target: &str) -> PathBuf {
672         self.stage_out(compiler, mode).join(target).join(self.cargo_dir())
673     }
674
675     /// Root output directory for LLVM compiled for `target`
676     ///
677     /// Note that if LLVM is configured externally then the directory returned
678     /// will likely be empty.
679     fn llvm_out(&self, target: &str) -> PathBuf {
680         self.out.join(target).join("llvm")
681     }
682
683     /// Output directory for all documentation for a target
684     fn doc_out(&self, target: &str) -> PathBuf {
685         self.out.join(target).join("doc")
686     }
687
688     /// Output directory for some generated md crate documentation for a target (temporary)
689     fn md_doc_out(&self, target: &str) -> PathBuf {
690         self.out.join(target).join("md-doc")
691     }
692
693     /// Output directory for all crate documentation for a target (temporary)
694     ///
695     /// The artifacts here are then copied into `doc_out` above.
696     fn crate_doc_out(&self, target: &str) -> PathBuf {
697         self.out.join(target).join("crate-docs")
698     }
699
700     /// Returns true if no custom `llvm-config` is set for the specified target.
701     ///
702     /// If no custom `llvm-config` was specified then Rust's llvm will be used.
703     fn is_rust_llvm(&self, target: &str) -> bool {
704         match self.config.target_config.get(target) {
705             Some(ref c) => c.llvm_config.is_none(),
706             None => true
707         }
708     }
709
710     /// Returns the path to `llvm-config` for the specified target.
711     ///
712     /// If a custom `llvm-config` was specified for target then that's returned
713     /// instead.
714     fn llvm_config(&self, target: &str) -> PathBuf {
715         let target_config = self.config.target_config.get(target);
716         if let Some(s) = target_config.and_then(|c| c.llvm_config.as_ref()) {
717             s.clone()
718         } else {
719             self.llvm_out(&self.config.build).join("bin")
720                 .join(exe("llvm-config", target))
721         }
722     }
723
724     /// Returns the path to `FileCheck` binary for the specified target
725     fn llvm_filecheck(&self, target: &str) -> PathBuf {
726         let target_config = self.config.target_config.get(target);
727         if let Some(s) = target_config.and_then(|c| c.llvm_config.as_ref()) {
728             let llvm_bindir = output(Command::new(s).arg("--bindir"));
729             Path::new(llvm_bindir.trim()).join(exe("FileCheck", target))
730         } else {
731             let base = self.llvm_out(&self.config.build).join("build");
732             let exe = exe("FileCheck", target);
733             if !self.config.ninja && self.config.build.contains("msvc") {
734                 base.join("Release/bin").join(exe)
735             } else {
736                 base.join("bin").join(exe)
737             }
738         }
739     }
740
741     /// Directory for libraries built from C/C++ code and shared between stages.
742     fn native_dir(&self, target: &str) -> PathBuf {
743         self.out.join(target).join("native")
744     }
745
746     /// Root output directory for rust_test_helpers library compiled for
747     /// `target`
748     fn test_helpers_out(&self, target: &str) -> PathBuf {
749         self.native_dir(target).join("rust-test-helpers")
750     }
751
752     /// Adds the compiler's directory of dynamic libraries to `cmd`'s dynamic
753     /// library lookup path.
754     fn add_rustc_lib_path(&self, compiler: &Compiler, cmd: &mut Command) {
755         // Windows doesn't need dylib path munging because the dlls for the
756         // compiler live next to the compiler and the system will find them
757         // automatically.
758         if cfg!(windows) {
759             return
760         }
761
762         add_lib_path(vec![self.rustc_libdir(compiler)], cmd);
763     }
764
765     /// Adds the `RUST_TEST_THREADS` env var if necessary
766     fn add_rust_test_threads(&self, cmd: &mut Command) {
767         if env::var_os("RUST_TEST_THREADS").is_none() {
768             cmd.env("RUST_TEST_THREADS", self.jobs().to_string());
769         }
770     }
771
772     /// Returns the compiler's libdir where it stores the dynamic libraries that
773     /// it itself links against.
774     ///
775     /// For example this returns `<sysroot>/lib` on Unix and `<sysroot>/bin` on
776     /// Windows.
777     fn rustc_libdir(&self, compiler: &Compiler) -> PathBuf {
778         if compiler.is_snapshot(self) {
779             self.rustc_snapshot_libdir()
780         } else {
781             self.sysroot(compiler).join(libdir(compiler.host))
782         }
783     }
784
785     /// Returns the libdir of the snapshot compiler.
786     fn rustc_snapshot_libdir(&self) -> PathBuf {
787         self.initial_rustc.parent().unwrap().parent().unwrap()
788             .join(libdir(&self.config.build))
789     }
790
791     /// Runs a command, printing out nice contextual information if it fails.
792     fn run(&self, cmd: &mut Command) {
793         self.verbose(&format!("running: {:?}", cmd));
794         run_silent(cmd)
795     }
796
797     /// Runs a command, printing out nice contextual information if it fails.
798     fn run_quiet(&self, cmd: &mut Command) {
799         self.verbose(&format!("running: {:?}", cmd));
800         run_suppressed(cmd)
801     }
802
803     /// Runs a command, printing out nice contextual information if it fails.
804     /// Exits if the command failed to execute at all, otherwise returns its
805     /// `status.success()`.
806     fn try_run(&self, cmd: &mut Command) -> bool {
807         self.verbose(&format!("running: {:?}", cmd));
808         try_run_silent(cmd)
809     }
810
811     /// Runs a command, printing out nice contextual information if it fails.
812     /// Exits if the command failed to execute at all, otherwise returns its
813     /// `status.success()`.
814     fn try_run_quiet(&self, cmd: &mut Command) -> bool {
815         self.verbose(&format!("running: {:?}", cmd));
816         try_run_suppressed(cmd)
817     }
818
819     pub fn is_verbose(&self) -> bool {
820         self.verbosity > 0
821     }
822
823     pub fn is_very_verbose(&self) -> bool {
824         self.verbosity > 1
825     }
826
827     /// Prints a message if this build is configured in verbose mode.
828     fn verbose(&self, msg: &str) {
829         if self.is_verbose() {
830             println!("{}", msg);
831         }
832     }
833
834     /// Returns the number of parallel jobs that have been configured for this
835     /// build.
836     fn jobs(&self) -> u32 {
837         self.flags.jobs.unwrap_or_else(|| num_cpus::get() as u32)
838     }
839
840     /// Returns the path to the C compiler for the target specified.
841     fn cc(&self, target: &str) -> &Path {
842         self.cc[target].0.path()
843     }
844
845     /// Returns a list of flags to pass to the C compiler for the target
846     /// specified.
847     fn cflags(&self, target: &str) -> Vec<String> {
848         // Filter out -O and /O (the optimization flags) that we picked up from
849         // gcc-rs because the build scripts will determine that for themselves.
850         let mut base = self.cc[target].0.args().iter()
851                            .map(|s| s.to_string_lossy().into_owned())
852                            .filter(|s| !s.starts_with("-O") && !s.starts_with("/O"))
853                            .collect::<Vec<_>>();
854
855         // If we're compiling on macOS then we add a few unconditional flags
856         // indicating that we want libc++ (more filled out than libstdc++) and
857         // we want to compile for 10.7. This way we can ensure that
858         // LLVM/jemalloc/etc are all properly compiled.
859         if target.contains("apple-darwin") {
860             base.push("-stdlib=libc++".into());
861         }
862
863         // Work around an apparently bad MinGW / GCC optimization,
864         // See: http://lists.llvm.org/pipermail/cfe-dev/2016-December/051980.html
865         // See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78936
866         if target == "i686-pc-windows-gnu" {
867             base.push("-fno-omit-frame-pointer".into());
868         }
869         base
870     }
871
872     /// Returns the path to the `ar` archive utility for the target specified.
873     fn ar(&self, target: &str) -> Option<&Path> {
874         self.cc[target].1.as_ref().map(|p| &**p)
875     }
876
877     /// Returns the path to the C++ compiler for the target specified.
878     fn cxx(&self, target: &str) -> Result<&Path, String> {
879         match self.cxx.get(target) {
880             Some(p) => Ok(p.path()),
881             None => Err(format!(
882                     "target `{}` is not configured as a host, only as a target",
883                     target))
884         }
885     }
886
887     /// Returns flags to pass to the compiler to generate code for `target`.
888     fn rustc_flags(&self, target: &str) -> Vec<String> {
889         // New flags should be added here with great caution!
890         //
891         // It's quite unfortunate to **require** flags to generate code for a
892         // target, so it should only be passed here if absolutely necessary!
893         // Most default configuration should be done through target specs rather
894         // than an entry here.
895
896         let mut base = Vec::new();
897         if target != self.config.build && !target.contains("msvc") &&
898             !target.contains("emscripten") {
899             base.push(format!("-Clinker={}", self.cc(target).display()));
900         }
901         base
902     }
903
904     /// Returns the "musl root" for this `target`, if defined
905     fn musl_root(&self, target: &str) -> Option<&Path> {
906         self.config.target_config.get(target)
907             .and_then(|t| t.musl_root.as_ref())
908             .or(self.config.musl_root.as_ref())
909             .map(|p| &**p)
910     }
911
912     /// Returns whether the target will be tested using the `remote-test-client`
913     /// and `remote-test-server` binaries.
914     fn remote_tested(&self, target: &str) -> bool {
915         self.qemu_rootfs(target).is_some() || target.contains("android")
916     }
917
918     /// Returns the root of the "rootfs" image that this target will be using,
919     /// if one was configured.
920     ///
921     /// If `Some` is returned then that means that tests for this target are
922     /// emulated with QEMU and binaries will need to be shipped to the emulator.
923     fn qemu_rootfs(&self, target: &str) -> Option<&Path> {
924         self.config.target_config.get(target)
925             .and_then(|t| t.qemu_rootfs.as_ref())
926             .map(|p| &**p)
927     }
928
929     /// Path to the python interpreter to use
930     fn python(&self) -> &Path {
931         self.config.python.as_ref().unwrap()
932     }
933
934     /// Tests whether the `compiler` compiling for `target` should be forced to
935     /// use a stage1 compiler instead.
936     ///
937     /// Currently, by default, the build system does not perform a "full
938     /// bootstrap" by default where we compile the compiler three times.
939     /// Instead, we compile the compiler two times. The final stage (stage2)
940     /// just copies the libraries from the previous stage, which is what this
941     /// method detects.
942     ///
943     /// Here we return `true` if:
944     ///
945     /// * The build isn't performing a full bootstrap
946     /// * The `compiler` is in the final stage, 2
947     /// * We're not cross-compiling, so the artifacts are already available in
948     ///   stage1
949     ///
950     /// When all of these conditions are met the build will lift artifacts from
951     /// the previous stage forward.
952     fn force_use_stage1(&self, compiler: &Compiler, target: &str) -> bool {
953         !self.config.full_bootstrap &&
954             compiler.stage >= 2 &&
955             self.config.host.iter().any(|h| h == target)
956     }
957
958     /// Returns the directory that OpenSSL artifacts are compiled into if
959     /// configured to do so.
960     fn openssl_dir(&self, target: &str) -> Option<PathBuf> {
961         // OpenSSL not used on Windows
962         if target.contains("windows") {
963             None
964         } else if self.config.openssl_static {
965             Some(self.out.join(target).join("openssl"))
966         } else {
967             None
968         }
969     }
970
971     /// Returns the directory that OpenSSL artifacts are installed into if
972     /// configured as such.
973     fn openssl_install_dir(&self, target: &str) -> Option<PathBuf> {
974         self.openssl_dir(target).map(|p| p.join("install"))
975     }
976
977     /// Given `num` in the form "a.b.c" return a "release string" which
978     /// describes the release version number.
979     ///
980     /// For example on nightly this returns "a.b.c-nightly", on beta it returns
981     /// "a.b.c-beta.1" and on stable it just returns "a.b.c".
982     fn release(&self, num: &str) -> String {
983         match &self.config.channel[..] {
984             "stable" => num.to_string(),
985             "beta" => format!("{}-beta{}", num, channel::CFG_PRERELEASE_VERSION),
986             "nightly" => format!("{}-nightly", num),
987             _ => format!("{}-dev", num),
988         }
989     }
990
991     /// Returns the value of `release` above for Rust itself.
992     fn rust_release(&self) -> String {
993         self.release(channel::CFG_RELEASE_NUM)
994     }
995
996     /// Returns the "package version" for a component given the `num` release
997     /// number.
998     ///
999     /// The package version is typically what shows up in the names of tarballs.
1000     /// For channels like beta/nightly it's just the channel name, otherwise
1001     /// it's the `num` provided.
1002     fn package_vers(&self, num: &str) -> String {
1003         match &self.config.channel[..] {
1004             "stable" => num.to_string(),
1005             "beta" => "beta".to_string(),
1006             "nightly" => "nightly".to_string(),
1007             _ => format!("{}-dev", num),
1008         }
1009     }
1010
1011     /// Returns the value of `package_vers` above for Rust itself.
1012     fn rust_package_vers(&self) -> String {
1013         self.package_vers(channel::CFG_RELEASE_NUM)
1014     }
1015
1016     /// Returns the value of `package_vers` above for Cargo
1017     fn cargo_package_vers(&self) -> String {
1018         self.package_vers(&self.release_num("cargo"))
1019     }
1020
1021     /// Returns the value of `package_vers` above for rls
1022     fn rls_package_vers(&self) -> String {
1023         self.package_vers(&self.release_num("rls"))
1024     }
1025
1026     /// Returns the `version` string associated with this compiler for Rust
1027     /// itself.
1028     ///
1029     /// Note that this is a descriptive string which includes the commit date,
1030     /// sha, version, etc.
1031     fn rust_version(&self) -> String {
1032         self.rust_info.version(self, channel::CFG_RELEASE_NUM)
1033     }
1034
1035     /// Returns the `a.b.c` version that the given package is at.
1036     fn release_num(&self, package: &str) -> String {
1037         let mut toml = String::new();
1038         let toml_file_name = self.src.join(&format!("src/tools/{}/Cargo.toml", package));
1039         t!(t!(File::open(toml_file_name)).read_to_string(&mut toml));
1040         for line in toml.lines() {
1041             let prefix = "version = \"";
1042             let suffix = "\"";
1043             if line.starts_with(prefix) && line.ends_with(suffix) {
1044                 return line[prefix.len()..line.len() - suffix.len()].to_string()
1045             }
1046         }
1047
1048         panic!("failed to find version in {}'s Cargo.toml", package)
1049     }
1050
1051     /// Returns whether unstable features should be enabled for the compiler
1052     /// we're building.
1053     fn unstable_features(&self) -> bool {
1054         match &self.config.channel[..] {
1055             "stable" | "beta" => false,
1056             "nightly" | _ => true,
1057         }
1058     }
1059
1060     /// Fold the output of the commands after this method into a group. The fold
1061     /// ends when the returned object is dropped. Folding can only be used in
1062     /// the Travis CI environment.
1063     pub fn fold_output<D, F>(&self, name: F) -> Option<OutputFolder>
1064         where D: Into<String>, F: FnOnce() -> D
1065     {
1066         if self.ci_env == CiEnv::Travis {
1067             Some(OutputFolder::new(name().into()))
1068         } else {
1069             None
1070         }
1071     }
1072 }
1073
1074 impl<'a> Compiler<'a> {
1075     /// Creates a new complier for the specified stage/host
1076     fn new(stage: u32, host: &'a str) -> Compiler<'a> {
1077         Compiler { stage: stage, host: host }
1078     }
1079
1080     /// Returns whether this is a snapshot compiler for `build`'s configuration
1081     fn is_snapshot(&self, build: &Build) -> bool {
1082         self.stage == 0 && self.host == build.build
1083     }
1084
1085     /// Returns if this compiler should be treated as a final stage one in the
1086     /// current build session.
1087     /// This takes into account whether we're performing a full bootstrap or
1088     /// not; don't directly compare the stage with `2`!
1089     fn is_final_stage(&self, build: &Build) -> bool {
1090         let final_stage = if build.config.full_bootstrap { 2 } else { 1 };
1091         self.stage >= final_stage
1092     }
1093 }