]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/builder.rs
Cherry pick changes from ce3abc5801f94292be9bc5fbe00b52f1ccb28672.
[rust.git] / src / bootstrap / builder.rs
1 // Copyright 2017 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 use serde::{Serialize, Deserialize};
12
13 use std::cell::RefCell;
14 use std::path::{Path, PathBuf};
15 use std::process::Command;
16 use std::fs;
17 use std::ops::Deref;
18
19 use compile;
20 use install;
21 use dist;
22 use util::{exe, libdir, add_lib_path};
23 use {Build, Mode};
24 use cache::{Cache, Key};
25 use check;
26 use flags::Subcommand;
27 use doc;
28 use tool;
29
30 pub use Compiler;
31
32 pub struct Builder<'a> {
33     pub build: &'a Build,
34     pub top_stage: u32,
35     pub kind: Kind,
36     cache: Cache,
37     stack: RefCell<Vec<Key>>,
38 }
39
40 impl<'a> Deref for Builder<'a> {
41     type Target = Build;
42
43     fn deref(&self) -> &Self::Target {
44         self.build
45     }
46 }
47
48 pub trait Step<'a>: Serialize + Sized {
49     /// The output type of this step. This is used in a few places to return a
50     /// `PathBuf` when directories are created or to return a `Compiler` once
51     /// it's been assembled.
52     ///
53     /// When possible, this should be used instead of implicitly creating files
54     /// in a prearranged directory that will later be used by the build system.
55     /// It's not always practical, however, since it makes avoiding rebuilds
56     /// somewhat harder.
57     type Output: Serialize + Deserialize<'a> + 'a;
58
59     const DEFAULT: bool = false;
60
61     /// Run this rule for all hosts without cross compiling.
62     const ONLY_HOSTS: bool = false;
63
64     /// Run this rule for all targets, but only with the native host.
65     const ONLY_BUILD_TARGETS: bool = false;
66
67     /// Only run this step with the build triple as host and target.
68     const ONLY_BUILD: bool = false;
69
70     /// Primary function to execute this rule. Can call `builder.ensure(...)`
71     /// with other steps to run those.
72     fn run(self, builder: &'a Builder) -> Self::Output;
73
74     /// When bootstrap is passed a set of paths, this controls whether this rule
75     /// will execute. However, it does not get called in a "default" context
76     /// when we are not passed any paths; in that case, make_run is called
77     /// directly.
78     fn should_run(_builder: &'a Builder, _path: &Path) -> bool { false }
79
80     /// Build up a "root" rule, either as a default rule or from a path passed
81     /// to us.
82     ///
83     /// When path is `None`, we are executing in a context where no paths were
84     /// passed. When `./x.py build` is run, for example, this rule could get
85     /// called if it is in the correct list below with a path of `None`.
86     fn make_run(
87         _builder: &'a Builder,
88         _path: Option<&Path>,
89         _host: &'a str,
90         _target: &'a str,
91     ) { unimplemented!() }
92 }
93
94 #[derive(Copy, Clone, PartialEq, Eq, Debug)]
95 pub enum Kind {
96     Build,
97     Test,
98     Bench,
99     Dist,
100     Doc,
101     Install,
102 }
103
104 macro_rules! check {
105     ($self:ident, $paths:ident, $($rule:ty),+ $(,)*) => {{
106         let paths = $paths;
107         if paths.is_empty() {
108             $({
109                 if <$rule>::DEFAULT {
110                     $self.maybe_run::<$rule>(None);
111                 }
112             })+
113         } else {
114             for path in paths {
115                 $({
116                     if <$rule>::should_run($self, path) {
117                         $self.maybe_run::<$rule>(Some(path));
118                     }
119                 })+
120             }
121         }
122     }};
123 }
124
125 impl<'a> Builder<'a> {
126     pub fn run(build: &Build) {
127         let (kind, paths) = match build.flags.cmd {
128             Subcommand::Build { ref paths } => (Kind::Build, &paths[..]),
129             Subcommand::Doc { ref paths } => (Kind::Doc, &paths[..]),
130             Subcommand::Test { ref paths, .. } => (Kind::Test, &paths[..]),
131             Subcommand::Bench { ref paths, .. } => (Kind::Bench, &paths[..]),
132             Subcommand::Dist { ref paths } => (Kind::Dist, &paths[..]),
133             Subcommand::Install { ref paths } => (Kind::Install, &paths[..]),
134             Subcommand::Clean => panic!(),
135         };
136
137         let builder = Builder {
138             build: build,
139             top_stage: build.flags.stage.unwrap_or(2),
140             kind: kind,
141             cache: Cache::new(),
142             stack: RefCell::new(Vec::new()),
143         };
144
145         let builder = &builder;
146         match builder.kind {
147             Kind::Build => check!(builder, paths, compile::Std, compile::Test, compile::Rustc,
148                 compile::StartupObjects, tool::BuildManifest, tool::Rustbook, tool::ErrorIndex,
149                 tool::UnstableBookGen, tool::Tidy, tool::Linkchecker, tool::CargoTest,
150                 tool::Compiletest, tool::RemoteTestServer, tool::RemoteTestClient,
151                 tool::RustInstaller, tool::Cargo, tool::Rls),
152             Kind::Test => check!(builder, paths, check::Tidy, check::Bootstrap, check::Compiletest,
153                 check::Krate, check::KrateLibrustc, check::Linkcheck, check::Cargotest,
154                 check::Cargo, check::Docs, check::ErrorIndex, check::Distcheck),
155             Kind::Bench => check!(builder, paths, check::Krate, check::KrateLibrustc),
156             Kind::Doc => builder.default_doc(Some(paths)),
157             Kind::Dist => check!(builder, paths, dist::Docs, dist::Mingw, dist::Rustc,
158                 dist::DebuggerScripts, dist::Std, dist::Analysis, dist::Src,
159                 dist::PlainSourceTarball, dist::Cargo, dist::Rls, dist::Extended, dist::HashSign),
160             Kind::Install => check!(builder, paths, install::Docs, install::Std, install::Cargo,
161                 install::Rls, install::Analysis, install::Src, install::Rustc),
162         }
163     }
164
165     pub fn default_doc(&self, paths: Option<&[PathBuf]>) {
166         let paths = paths.unwrap_or(&[]);
167         check!(self, paths, doc::UnstableBook, doc::UnstableBookGen, doc::Rustbook, doc::TheBook,
168             doc::Standalone, doc::Std, doc::Test, doc::Rustc, doc::ErrorIndex,
169             doc::Nomicon, doc::Reference);
170     }
171
172     /// Obtain a compiler at a given stage and for a given host. Explictly does
173     /// not take `Compiler` since all `Compiler` instances are meant to be
174     /// obtained through this function, since it ensures that they are valid
175     /// (i.e., built and assembled).
176     pub fn compiler(&'a self, stage: u32, host: &'a str) -> Compiler<'a> {
177         self.ensure(compile::Assemble { target_compiler: Compiler { stage, host } })
178     }
179
180     pub fn sysroot(&self, compiler: Compiler<'a>) -> PathBuf {
181         self.ensure(compile::Sysroot { compiler })
182     }
183
184     /// Returns the libdir where the standard library and other artifacts are
185     /// found for a compiler's sysroot.
186     pub fn sysroot_libdir(&self, compiler: Compiler<'a>, target: &'a str) -> PathBuf {
187         #[derive(Serialize)]
188         struct Libdir<'a> {
189             compiler: Compiler<'a>,
190             target: &'a str,
191         }
192         impl<'a> Step<'a> for Libdir<'a> {
193             type Output = PathBuf;
194             fn run(self, builder: &Builder) -> PathBuf {
195                 let lib = if compiler.stage >= 2 && builder.build.config.libdir_relative.is_some() {
196                     builder.build.config.libdir_relative.cloned().unwrap()
197                 } else {
198                     PathBuf::from("lib")
199                 };
200                 let sysroot = builder.sysroot(self.compiler).join(lib)
201                     .join("rustlib").join(self.target).join("lib");
202                 let _ = fs::remove_dir_all(&sysroot);
203                 t!(fs::create_dir_all(&sysroot));
204                 sysroot
205             }
206         }
207         self.ensure(Libdir { compiler, target })
208     }
209
210     /// Returns the compiler's libdir where it stores the dynamic libraries that
211     /// it itself links against.
212     ///
213     /// For example this returns `<sysroot>/lib` on Unix and `<sysroot>/bin` on
214     /// Windows.
215     pub fn rustc_libdir(&self, compiler: Compiler) -> PathBuf {
216         if compiler.is_snapshot(self) {
217             self.build.rustc_snapshot_libdir()
218         } else {
219             self.sysroot(compiler).join(libdir(compiler.host))
220         }
221     }
222
223     /// Adds the compiler's directory of dynamic libraries to `cmd`'s dynamic
224     /// library lookup path.
225     pub fn add_rustc_lib_path(&self, compiler: Compiler, cmd: &mut Command) {
226         // Windows doesn't need dylib path munging because the dlls for the
227         // compiler live next to the compiler and the system will find them
228         // automatically.
229         if cfg!(windows) {
230             return
231         }
232
233         add_lib_path(vec![self.rustc_libdir(compiler)], cmd);
234     }
235
236     /// Get a path to the compiler specified.
237     pub fn rustc(&self, compiler: Compiler) -> PathBuf {
238         if compiler.is_snapshot(self) {
239             self.initial_rustc.clone()
240         } else {
241             self.sysroot(compiler).join("bin").join(exe("rustc", compiler.host))
242         }
243     }
244
245     /// Get the `rustdoc` executable next to the specified compiler
246     pub fn rustdoc(&self, compiler: Compiler) -> PathBuf {
247         let mut rustdoc = self.rustc(compiler);
248         rustdoc.pop();
249         rustdoc.push(exe("rustdoc", compiler.host));
250         rustdoc
251     }
252
253     /// Prepares an invocation of `cargo` to be run.
254     ///
255     /// This will create a `Command` that represents a pending execution of
256     /// Cargo. This cargo will be configured to use `compiler` as the actual
257     /// rustc compiler, its output will be scoped by `mode`'s output directory,
258     /// it will pass the `--target` flag for the specified `target`, and will be
259     /// executing the Cargo command `cmd`.
260     pub fn cargo(&self,
261              compiler: Compiler,
262              mode: Mode,
263              target: &str,
264              cmd: &str) -> Command {
265         let mut cargo = Command::new(&self.initial_cargo);
266         let out_dir = self.stage_out(compiler, mode);
267         cargo.env("CARGO_TARGET_DIR", out_dir)
268              .arg(cmd)
269              .arg("-j").arg(self.jobs().to_string())
270              .arg("--target").arg(target);
271
272         // FIXME: Temporary fix for https://github.com/rust-lang/cargo/issues/3005
273         // Force cargo to output binaries with disambiguating hashes in the name
274         cargo.env("__CARGO_DEFAULT_LIB_METADATA", &self.config.channel);
275
276         let stage;
277         if compiler.stage == 0 && self.local_rebuild {
278             // Assume the local-rebuild rustc already has stage1 features.
279             stage = 1;
280         } else {
281             stage = compiler.stage;
282         }
283
284         // Customize the compiler we're running. Specify the compiler to cargo
285         // as our shim and then pass it some various options used to configure
286         // how the actual compiler itself is called.
287         //
288         // These variables are primarily all read by
289         // src/bootstrap/bin/{rustc.rs,rustdoc.rs}
290         cargo.env("RUSTBUILD_NATIVE_DIR", self.native_dir(target))
291              .env("RUSTC", self.out.join("bootstrap/debug/rustc"))
292              .env("RUSTC_REAL", self.rustc(compiler))
293              .env("RUSTC_STAGE", stage.to_string())
294              .env("RUSTC_CODEGEN_UNITS",
295                   self.config.rust_codegen_units.to_string())
296              .env("RUSTC_DEBUG_ASSERTIONS",
297                   self.config.rust_debug_assertions.to_string())
298              .env("RUSTC_SYSROOT", self.sysroot(compiler))
299              .env("RUSTC_LIBDIR", self.rustc_libdir(compiler))
300              .env("RUSTC_RPATH", self.config.rust_rpath.to_string())
301              .env("RUSTDOC", self.out.join("bootstrap/debug/rustdoc"))
302              .env("RUSTDOC_REAL", self.rustdoc(compiler))
303              .env("RUSTC_FLAGS", self.rustc_flags(target).join(" "));
304
305         if mode != Mode::Tool {
306             // Tools don't get debuginfo right now, e.g. cargo and rls don't
307             // get compiled with debuginfo.
308             cargo.env("RUSTC_DEBUGINFO", self.config.rust_debuginfo.to_string())
309                  .env("RUSTC_DEBUGINFO_LINES", self.config.rust_debuginfo_lines.to_string())
310                  .env("RUSTC_FORCE_UNSTABLE", "1");
311
312             // Currently the compiler depends on crates from crates.io, and
313             // then other crates can depend on the compiler (e.g. proc-macro
314             // crates). Let's say, for example that rustc itself depends on the
315             // bitflags crate. If an external crate then depends on the
316             // bitflags crate as well, we need to make sure they don't
317             // conflict, even if they pick the same verison of bitflags. We'll
318             // want to make sure that e.g. a plugin and rustc each get their
319             // own copy of bitflags.
320
321             // Cargo ensures that this works in general through the -C metadata
322             // flag. This flag will frob the symbols in the binary to make sure
323             // they're different, even though the source code is the exact
324             // same. To solve this problem for the compiler we extend Cargo's
325             // already-passed -C metadata flag with our own. Our rustc.rs
326             // wrapper around the actual rustc will detect -C metadata being
327             // passed and frob it with this extra string we're passing in.
328             cargo.env("RUSTC_METADATA_SUFFIX", "rustc");
329         }
330
331         // Enable usage of unstable features
332         cargo.env("RUSTC_BOOTSTRAP", "1");
333         self.add_rust_test_threads(&mut cargo);
334
335         // Almost all of the crates that we compile as part of the bootstrap may
336         // have a build script, including the standard library. To compile a
337         // build script, however, it itself needs a standard library! This
338         // introduces a bit of a pickle when we're compiling the standard
339         // library itself.
340         //
341         // To work around this we actually end up using the snapshot compiler
342         // (stage0) for compiling build scripts of the standard library itself.
343         // The stage0 compiler is guaranteed to have a libstd available for use.
344         //
345         // For other crates, however, we know that we've already got a standard
346         // library up and running, so we can use the normal compiler to compile
347         // build scripts in that situation.
348         if mode == Mode::Libstd {
349             cargo.env("RUSTC_SNAPSHOT", &self.initial_rustc)
350                  .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_snapshot_libdir());
351         } else {
352             cargo.env("RUSTC_SNAPSHOT", self.rustc(compiler))
353                  .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_libdir(compiler));
354         }
355
356         // Ignore incremental modes except for stage0, since we're
357         // not guaranteeing correctness across builds if the compiler
358         // is changing under your feet.`
359         if self.flags.incremental && compiler.stage == 0 {
360             let incr_dir = self.incremental_dir(compiler);
361             cargo.env("RUSTC_INCREMENTAL", incr_dir);
362         }
363
364         if let Some(ref on_fail) = self.flags.on_fail {
365             cargo.env("RUSTC_ON_FAIL", on_fail);
366         }
367
368         cargo.env("RUSTC_VERBOSE", format!("{}", self.verbosity));
369
370         // Specify some various options for build scripts used throughout
371         // the build.
372         //
373         // FIXME: the guard against msvc shouldn't need to be here
374         if !target.contains("msvc") {
375             cargo.env(format!("CC_{}", target), self.cc(target))
376                  .env(format!("AR_{}", target), self.ar(target).unwrap()) // only msvc is None
377                  .env(format!("CFLAGS_{}", target), self.cflags(target).join(" "));
378
379             if let Ok(cxx) = self.cxx(target) {
380                  cargo.env(format!("CXX_{}", target), cxx);
381             }
382         }
383
384         if mode == Mode::Libstd && self.config.extended && compiler.is_final_stage(self) {
385             cargo.env("RUSTC_SAVE_ANALYSIS", "api".to_string());
386         }
387
388         // When being built Cargo will at some point call `nmake.exe` on Windows
389         // MSVC. Unfortunately `nmake` will read these two environment variables
390         // below and try to intepret them. We're likely being run, however, from
391         // MSYS `make` which uses the same variables.
392         //
393         // As a result, to prevent confusion and errors, we remove these
394         // variables from our environment to prevent passing MSYS make flags to
395         // nmake, causing it to blow up.
396         if cfg!(target_env = "msvc") {
397             cargo.env_remove("MAKE");
398             cargo.env_remove("MAKEFLAGS");
399         }
400
401         // Environment variables *required* throughout the build
402         //
403         // FIXME: should update code to not require this env var
404         cargo.env("CFG_COMPILER_HOST_TRIPLE", target);
405
406         if self.is_verbose() {
407             cargo.arg("-v");
408         }
409         // FIXME: cargo bench does not accept `--release`
410         if self.config.rust_optimize && cmd != "bench" {
411             cargo.arg("--release");
412         }
413         if self.config.locked_deps {
414             cargo.arg("--locked");
415         }
416         if self.config.vendor || self.is_sudo {
417             cargo.arg("--frozen");
418         }
419
420         self.ci_env.force_coloring_in_ci(&mut cargo);
421
422         cargo
423     }
424
425     fn maybe_run<S: Step<'a>>(&'a self, path: Option<&Path>) {
426         let build = self.build;
427         let hosts = if S::ONLY_BUILD_TARGETS || S::ONLY_BUILD {
428             &build.config.host[..1]
429         } else {
430             &build.hosts
431         };
432
433         // Determine the actual targets participating in this rule.
434         // NOTE: We should keep the full projection from build triple to
435         // the hosts for the dist steps, now that the hosts array above is
436         // truncated to avoid duplication of work in that case. Therefore
437         // the original non-shadowed hosts array is used below.
438         let targets = if S::ONLY_HOSTS {
439             // If --target was specified but --host wasn't specified,
440             // don't run any host-only tests. Also, respect any `--host`
441             // overrides as done for `hosts`.
442             if build.flags.host.len() > 0 {
443                 &build.flags.host[..]
444             } else if build.flags.target.len() > 0 {
445                 &[]
446             } else if S::ONLY_BUILD {
447                 &build.config.host[..1]
448             } else {
449                 &build.config.host[..]
450             }
451         } else {
452             &build.targets
453         };
454
455         for host in hosts {
456             for target in targets {
457                 S::make_run(self, path, host, target);
458             }
459         }
460     }
461
462     /// Ensure that a given step is built, returning it's output. This will
463     /// cache the step, so it is safe (and good!) to call this as often as
464     /// needed to ensure that all dependencies are built.
465     pub fn ensure<S: Step<'a>>(&'a self, step: S) -> S::Output {
466         let key = Cache::to_key(&step);
467         {
468             let mut stack = self.stack.borrow_mut();
469             if stack.contains(&key) {
470                 let mut out = String::new();
471                 out += &format!("\n\nCycle in build detected when adding {:?}\n", key);
472                 for el in stack.iter().rev() {
473                     out += &format!("\t{:?}\n", el);
474                 }
475                 panic!(out);
476             }
477             if let Some(out) = self.cache.get::<S::Output>(&key) {
478                 self.build.verbose(&format!("{}c {:?}", "  ".repeat(stack.len()), key));
479
480                 return out;
481             }
482             self.build.verbose(&format!("{}> {:?}", "  ".repeat(stack.len()), key));
483             stack.push(key.clone());
484         }
485         let out = step.run(self);
486         {
487             let mut stack = self.stack.borrow_mut();
488             assert_eq!(stack.pop().as_ref(), Some(&key));
489         }
490         self.build.verbose(&format!("{}< {:?}", "  ".repeat(self.stack.borrow().len()), key));
491         self.cache.put(key.clone(), &out);
492         self.cache.get::<S::Output>(&key).unwrap()
493     }
494 }