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