]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/builder.rs
Fix a few errors introduced during rebase.
[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 compiler = self.compiler;
196                 let lib = if compiler.stage >= 2 && builder.build.config.libdir_relative.is_some() {
197                     builder.build.config.libdir_relative.clone().unwrap()
198                 } else {
199                     PathBuf::from("lib")
200                 };
201                 let sysroot = builder.sysroot(self.compiler).join(lib)
202                     .join("rustlib").join(self.target).join("lib");
203                 let _ = fs::remove_dir_all(&sysroot);
204                 t!(fs::create_dir_all(&sysroot));
205                 sysroot
206             }
207         }
208         self.ensure(Libdir { compiler, target })
209     }
210
211     /// Returns the compiler's libdir where it stores the dynamic libraries that
212     /// it itself links against.
213     ///
214     /// For example this returns `<sysroot>/lib` on Unix and `<sysroot>/bin` on
215     /// Windows.
216     pub fn rustc_libdir(&self, compiler: Compiler) -> PathBuf {
217         if compiler.is_snapshot(self) {
218             self.build.rustc_snapshot_libdir()
219         } else {
220             self.sysroot(compiler).join(libdir(compiler.host))
221         }
222     }
223
224     /// Adds the compiler's directory of dynamic libraries to `cmd`'s dynamic
225     /// library lookup path.
226     pub fn add_rustc_lib_path(&self, compiler: Compiler, cmd: &mut Command) {
227         // Windows doesn't need dylib path munging because the dlls for the
228         // compiler live next to the compiler and the system will find them
229         // automatically.
230         if cfg!(windows) {
231             return
232         }
233
234         add_lib_path(vec![self.rustc_libdir(compiler)], cmd);
235     }
236
237     /// Get a path to the compiler specified.
238     pub fn rustc(&self, compiler: Compiler) -> PathBuf {
239         if compiler.is_snapshot(self) {
240             self.initial_rustc.clone()
241         } else {
242             self.sysroot(compiler).join("bin").join(exe("rustc", compiler.host))
243         }
244     }
245
246     /// Get the `rustdoc` executable next to the specified compiler
247     pub fn rustdoc(&self, compiler: Compiler) -> PathBuf {
248         let mut rustdoc = self.rustc(compiler);
249         rustdoc.pop();
250         rustdoc.push(exe("rustdoc", compiler.host));
251         rustdoc
252     }
253
254     /// Prepares an invocation of `cargo` to be run.
255     ///
256     /// This will create a `Command` that represents a pending execution of
257     /// Cargo. This cargo will be configured to use `compiler` as the actual
258     /// rustc compiler, its output will be scoped by `mode`'s output directory,
259     /// it will pass the `--target` flag for the specified `target`, and will be
260     /// executing the Cargo command `cmd`.
261     pub fn cargo(&self,
262              compiler: Compiler,
263              mode: Mode,
264              target: &str,
265              cmd: &str) -> Command {
266         let mut cargo = Command::new(&self.initial_cargo);
267         let out_dir = self.stage_out(compiler, mode);
268         cargo.env("CARGO_TARGET_DIR", out_dir)
269              .arg(cmd)
270              .arg("-j").arg(self.jobs().to_string())
271              .arg("--target").arg(target);
272
273         // FIXME: Temporary fix for https://github.com/rust-lang/cargo/issues/3005
274         // Force cargo to output binaries with disambiguating hashes in the name
275         cargo.env("__CARGO_DEFAULT_LIB_METADATA", &self.config.channel);
276
277         let stage;
278         if compiler.stage == 0 && self.local_rebuild {
279             // Assume the local-rebuild rustc already has stage1 features.
280             stage = 1;
281         } else {
282             stage = compiler.stage;
283         }
284
285         // Customize the compiler we're running. Specify the compiler to cargo
286         // as our shim and then pass it some various options used to configure
287         // how the actual compiler itself is called.
288         //
289         // These variables are primarily all read by
290         // src/bootstrap/bin/{rustc.rs,rustdoc.rs}
291         cargo.env("RUSTBUILD_NATIVE_DIR", self.native_dir(target))
292              .env("RUSTC", self.out.join("bootstrap/debug/rustc"))
293              .env("RUSTC_REAL", self.rustc(compiler))
294              .env("RUSTC_STAGE", stage.to_string())
295              .env("RUSTC_CODEGEN_UNITS",
296                   self.config.rust_codegen_units.to_string())
297              .env("RUSTC_DEBUG_ASSERTIONS",
298                   self.config.rust_debug_assertions.to_string())
299              .env("RUSTC_SYSROOT", self.sysroot(compiler))
300              .env("RUSTC_LIBDIR", self.rustc_libdir(compiler))
301              .env("RUSTC_RPATH", self.config.rust_rpath.to_string())
302              .env("RUSTDOC", self.out.join("bootstrap/debug/rustdoc"))
303              .env("RUSTDOC_REAL", self.rustdoc(compiler))
304              .env("RUSTC_FLAGS", self.rustc_flags(target).join(" "));
305
306         if mode != Mode::Tool {
307             // Tools don't get debuginfo right now, e.g. cargo and rls don't
308             // get compiled with debuginfo.
309             cargo.env("RUSTC_DEBUGINFO", self.config.rust_debuginfo.to_string())
310                  .env("RUSTC_DEBUGINFO_LINES", self.config.rust_debuginfo_lines.to_string())
311                  .env("RUSTC_FORCE_UNSTABLE", "1");
312
313             // Currently the compiler depends on crates from crates.io, and
314             // then other crates can depend on the compiler (e.g. proc-macro
315             // crates). Let's say, for example that rustc itself depends on the
316             // bitflags crate. If an external crate then depends on the
317             // bitflags crate as well, we need to make sure they don't
318             // conflict, even if they pick the same verison of bitflags. We'll
319             // want to make sure that e.g. a plugin and rustc each get their
320             // own copy of bitflags.
321
322             // Cargo ensures that this works in general through the -C metadata
323             // flag. This flag will frob the symbols in the binary to make sure
324             // they're different, even though the source code is the exact
325             // same. To solve this problem for the compiler we extend Cargo's
326             // already-passed -C metadata flag with our own. Our rustc.rs
327             // wrapper around the actual rustc will detect -C metadata being
328             // passed and frob it with this extra string we're passing in.
329             cargo.env("RUSTC_METADATA_SUFFIX", "rustc");
330         }
331
332         // Enable usage of unstable features
333         cargo.env("RUSTC_BOOTSTRAP", "1");
334         self.add_rust_test_threads(&mut cargo);
335
336         // Almost all of the crates that we compile as part of the bootstrap may
337         // have a build script, including the standard library. To compile a
338         // build script, however, it itself needs a standard library! This
339         // introduces a bit of a pickle when we're compiling the standard
340         // library itself.
341         //
342         // To work around this we actually end up using the snapshot compiler
343         // (stage0) for compiling build scripts of the standard library itself.
344         // The stage0 compiler is guaranteed to have a libstd available for use.
345         //
346         // For other crates, however, we know that we've already got a standard
347         // library up and running, so we can use the normal compiler to compile
348         // build scripts in that situation.
349         if mode == Mode::Libstd {
350             cargo.env("RUSTC_SNAPSHOT", &self.initial_rustc)
351                  .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_snapshot_libdir());
352         } else {
353             cargo.env("RUSTC_SNAPSHOT", self.rustc(compiler))
354                  .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_libdir(compiler));
355         }
356
357         // Ignore incremental modes except for stage0, since we're
358         // not guaranteeing correctness across builds if the compiler
359         // is changing under your feet.`
360         if self.flags.incremental && compiler.stage == 0 {
361             let incr_dir = self.incremental_dir(compiler);
362             cargo.env("RUSTC_INCREMENTAL", incr_dir);
363         }
364
365         if let Some(ref on_fail) = self.flags.on_fail {
366             cargo.env("RUSTC_ON_FAIL", on_fail);
367         }
368
369         cargo.env("RUSTC_VERBOSE", format!("{}", self.verbosity));
370
371         // Specify some various options for build scripts used throughout
372         // the build.
373         //
374         // FIXME: the guard against msvc shouldn't need to be here
375         if !target.contains("msvc") {
376             cargo.env(format!("CC_{}", target), self.cc(target))
377                  .env(format!("AR_{}", target), self.ar(target).unwrap()) // only msvc is None
378                  .env(format!("CFLAGS_{}", target), self.cflags(target).join(" "));
379
380             if let Ok(cxx) = self.cxx(target) {
381                  cargo.env(format!("CXX_{}", target), cxx);
382             }
383         }
384
385         if mode == Mode::Libstd && self.config.extended && compiler.is_final_stage(self) {
386             cargo.env("RUSTC_SAVE_ANALYSIS", "api".to_string());
387         }
388
389         // When being built Cargo will at some point call `nmake.exe` on Windows
390         // MSVC. Unfortunately `nmake` will read these two environment variables
391         // below and try to intepret them. We're likely being run, however, from
392         // MSYS `make` which uses the same variables.
393         //
394         // As a result, to prevent confusion and errors, we remove these
395         // variables from our environment to prevent passing MSYS make flags to
396         // nmake, causing it to blow up.
397         if cfg!(target_env = "msvc") {
398             cargo.env_remove("MAKE");
399             cargo.env_remove("MAKEFLAGS");
400         }
401
402         // Environment variables *required* throughout the build
403         //
404         // FIXME: should update code to not require this env var
405         cargo.env("CFG_COMPILER_HOST_TRIPLE", target);
406
407         if self.is_verbose() {
408             cargo.arg("-v");
409         }
410         // FIXME: cargo bench does not accept `--release`
411         if self.config.rust_optimize && cmd != "bench" {
412             cargo.arg("--release");
413         }
414         if self.config.locked_deps {
415             cargo.arg("--locked");
416         }
417         if self.config.vendor || self.is_sudo {
418             cargo.arg("--frozen");
419         }
420
421         self.ci_env.force_coloring_in_ci(&mut cargo);
422
423         cargo
424     }
425
426     fn maybe_run<S: Step<'a>>(&'a self, path: Option<&Path>) {
427         let build = self.build;
428         let hosts = if S::ONLY_BUILD_TARGETS || S::ONLY_BUILD {
429             &build.config.host[..1]
430         } else {
431             &build.hosts
432         };
433
434         // Determine the actual targets participating in this rule.
435         // NOTE: We should keep the full projection from build triple to
436         // the hosts for the dist steps, now that the hosts array above is
437         // truncated to avoid duplication of work in that case. Therefore
438         // the original non-shadowed hosts array is used below.
439         let targets = if S::ONLY_HOSTS {
440             // If --target was specified but --host wasn't specified,
441             // don't run any host-only tests. Also, respect any `--host`
442             // overrides as done for `hosts`.
443             if build.flags.host.len() > 0 {
444                 &build.flags.host[..]
445             } else if build.flags.target.len() > 0 {
446                 &[]
447             } else if S::ONLY_BUILD {
448                 &build.config.host[..1]
449             } else {
450                 &build.config.host[..]
451             }
452         } else {
453             &build.targets
454         };
455
456         for host in hosts {
457             for target in targets {
458                 S::make_run(self, path, host, target);
459             }
460         }
461     }
462
463     /// Ensure that a given step is built, returning it's output. This will
464     /// cache the step, so it is safe (and good!) to call this as often as
465     /// needed to ensure that all dependencies are built.
466     pub fn ensure<S: Step<'a>>(&'a self, step: S) -> S::Output {
467         let key = Cache::to_key(&step);
468         {
469             let mut stack = self.stack.borrow_mut();
470             if stack.contains(&key) {
471                 let mut out = String::new();
472                 out += &format!("\n\nCycle in build detected when adding {:?}\n", key);
473                 for el in stack.iter().rev() {
474                     out += &format!("\t{:?}\n", el);
475                 }
476                 panic!(out);
477             }
478             if let Some(out) = self.cache.get::<S::Output>(&key) {
479                 self.build.verbose(&format!("{}c {:?}", "  ".repeat(stack.len()), key));
480
481                 return out;
482             }
483             self.build.verbose(&format!("{}> {:?}", "  ".repeat(stack.len()), key));
484             stack.push(key.clone());
485         }
486         let out = step.run(self);
487         {
488             let mut stack = self.stack.borrow_mut();
489             assert_eq!(stack.pop().as_ref(), Some(&key));
490         }
491         self.build.verbose(&format!("{}< {:?}", "  ".repeat(self.stack.borrow().len()), key));
492         self.cache.put(key.clone(), &out);
493         self.cache.get::<S::Output>(&key).unwrap()
494     }
495 }