builder.rs 19.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use serde::{Serialize, Deserialize};

use std::cell::RefCell;
use std::path::{Path, PathBuf};
use std::process::Command;
use std::fs;
17
use std::ops::Deref;
18 19 20 21 22 23 24 25 26 27

use compile;
use install;
use dist;
use util::{exe, libdir, add_lib_path};
use {Build, Mode};
use cache::{Cache, Key};
use check;
use flags::Subcommand;
use doc;
M
Mark Simulacrum 已提交
28
use tool;
29

30 31
pub use Compiler;

32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
pub struct Builder<'a> {
    pub build: &'a Build,
    pub top_stage: u32,
    pub kind: Kind,
    cache: Cache,
    stack: RefCell<Vec<Key>>,
}

impl<'a> Deref for Builder<'a> {
    type Target = Build;

    fn deref(&self) -> &Self::Target {
        self.build
    }
}

48 49 50 51 52 53 54 55 56 57
pub trait Step<'a>: Serialize + Sized {
    /// The output type of this step. This is used in a few places to return a
    /// `PathBuf` when directories are created or to return a `Compiler` once
    /// it's been assembled.
    ///
    /// When possible, this should be used instead of implicitly creating files
    /// in a prearranged directory that will later be used by the build system.
    /// It's not always practical, however, since it makes avoiding rebuilds
    /// somewhat harder.
    type Output: Serialize + Deserialize<'a> + 'a;
58 59 60

    const DEFAULT: bool = false;

61
    /// Run this rule for all hosts without cross compiling.
62 63 64 65 66 67 68 69
    const ONLY_HOSTS: bool = false;

    /// Run this rule for all targets, but only with the native host.
    const ONLY_BUILD_TARGETS: bool = false;

    /// Only run this step with the build triple as host and target.
    const ONLY_BUILD: bool = false;

70 71
    /// Primary function to execute this rule. Can call `builder.ensure(...)`
    /// with other steps to run those.
72 73
    fn run(self, builder: &'a Builder) -> Self::Output;

74 75 76 77
    /// When bootstrap is passed a set of paths, this controls whether this rule
    /// will execute. However, it does not get called in a "default" context
    /// when we are not passed any paths; in that case, make_run is called
    /// directly.
78 79
    fn should_run(_builder: &'a Builder, _path: &Path) -> bool { false }

80 81 82 83 84 85
    /// Build up a "root" rule, either as a default rule or from a path passed
    /// to us.
    ///
    /// When path is `None`, we are executing in a context where no paths were
    /// passed. When `./x.py build` is run, for example, this rule could get
    /// called if it is in the correct list below with a path of `None`.
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
    fn make_run(
        _builder: &'a Builder,
        _path: Option<&Path>,
        _host: &'a str,
        _target: &'a str,
    ) { unimplemented!() }
}

#[derive(Copy, Clone, PartialEq, Eq, Debug)]
pub enum Kind {
    Build,
    Test,
    Bench,
    Dist,
    Doc,
    Install,
}

macro_rules! check {
    ($self:ident, $paths:ident, $($rule:ty),+ $(,)*) => {{
        let paths = $paths;
        if paths.is_empty() {
            $({
                if <$rule>::DEFAULT {
110
                    $self.maybe_run::<$rule>(None);
111 112 113 114 115 116
                }
            })+
        } else {
            for path in paths {
                $({
                    if <$rule>::should_run($self, path) {
117
                        $self.maybe_run::<$rule>(Some(path));
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
                    }
                })+
            }
        }
    }};
}

impl<'a> Builder<'a> {
    pub fn run(build: &Build) {
        let (kind, paths) = match build.flags.cmd {
            Subcommand::Build { ref paths } => (Kind::Build, &paths[..]),
            Subcommand::Doc { ref paths } => (Kind::Doc, &paths[..]),
            Subcommand::Test { ref paths, .. } => (Kind::Test, &paths[..]),
            Subcommand::Bench { ref paths, .. } => (Kind::Bench, &paths[..]),
            Subcommand::Dist { ref paths } => (Kind::Dist, &paths[..]),
            Subcommand::Install { ref paths } => (Kind::Install, &paths[..]),
            Subcommand::Clean => panic!(),
        };

        let builder = Builder {
            build: build,
            top_stage: build.flags.stage.unwrap_or(2),
            kind: kind,
            cache: Cache::new(),
            stack: RefCell::new(Vec::new()),
        };

        let builder = &builder;
        match builder.kind {
            Kind::Build => check!(builder, paths, compile::Std, compile::Test, compile::Rustc,
M
Mark Simulacrum 已提交
148 149 150 151
                compile::StartupObjects, tool::BuildManifest, tool::Rustbook, tool::ErrorIndex,
                tool::UnstableBookGen, tool::Tidy, tool::Linkchecker, tool::CargoTest,
                tool::Compiletest, tool::RemoteTestServer, tool::RemoteTestClient,
                tool::RustInstaller, tool::Cargo, tool::Rls),
152 153
            Kind::Test => check!(builder, paths, check::Tidy, check::Bootstrap, check::Compiletest,
                check::Krate, check::KrateLibrustc, check::Linkcheck, check::Cargotest,
154
                check::Cargo, check::Docs, check::ErrorIndex, check::Distcheck),
155 156 157 158 159 160 161 162 163 164 165 166
            Kind::Bench => check!(builder, paths, check::Krate, check::KrateLibrustc),
            Kind::Doc => builder.default_doc(Some(paths)),
            Kind::Dist => check!(builder, paths, dist::Docs, dist::Mingw, dist::Rustc,
                dist::DebuggerScripts, dist::Std, dist::Analysis, dist::Src,
                dist::PlainSourceTarball, dist::Cargo, dist::Rls, dist::Extended, dist::HashSign),
            Kind::Install => check!(builder, paths, install::Docs, install::Std, install::Cargo,
                install::Rls, install::Analysis, install::Src, install::Rustc),
        }
    }

    pub fn default_doc(&self, paths: Option<&[PathBuf]>) {
        let paths = paths.unwrap_or(&[]);
167
        check!(self, paths, doc::UnstableBook, doc::UnstableBookGen, doc::Rustbook, doc::TheBook,
168 169 170 171
            doc::Standalone, doc::Std, doc::Test, doc::Rustc, doc::ErrorIndex,
            doc::Nomicon, doc::Reference);
    }

172 173 174 175
    /// Obtain a compiler at a given stage and for a given host. Explictly does
    /// not take `Compiler` since all `Compiler` instances are meant to be
    /// obtained through this function, since it ensures that they are valid
    /// (i.e., built and assembled).
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
    pub fn compiler(&'a self, stage: u32, host: &'a str) -> Compiler<'a> {
        self.ensure(compile::Assemble { target_compiler: Compiler { stage, host } })
    }

    pub fn sysroot(&self, compiler: Compiler<'a>) -> PathBuf {
        self.ensure(compile::Sysroot { compiler })
    }

    /// Returns the libdir where the standard library and other artifacts are
    /// found for a compiler's sysroot.
    pub fn sysroot_libdir(&self, compiler: Compiler<'a>, target: &'a str) -> PathBuf {
        #[derive(Serialize)]
        struct Libdir<'a> {
            compiler: Compiler<'a>,
            target: &'a str,
        }
        impl<'a> Step<'a> for Libdir<'a> {
            type Output = PathBuf;
            fn run(self, builder: &Builder) -> PathBuf {
                let sysroot = builder.sysroot(self.compiler)
                    .join("lib").join("rustlib").join(self.target).join("lib");
                let _ = fs::remove_dir_all(&sysroot);
                t!(fs::create_dir_all(&sysroot));
                sysroot
            }
        }
        self.ensure(Libdir { compiler, target })
    }

    /// Returns the compiler's libdir where it stores the dynamic libraries that
    /// it itself links against.
    ///
    /// For example this returns `<sysroot>/lib` on Unix and `<sysroot>/bin` on
    /// Windows.
    pub fn rustc_libdir(&self, compiler: Compiler) -> PathBuf {
        if compiler.is_snapshot(self) {
            self.build.rustc_snapshot_libdir()
        } else {
            self.sysroot(compiler).join(libdir(compiler.host))
        }
    }

    /// Adds the compiler's directory of dynamic libraries to `cmd`'s dynamic
    /// library lookup path.
    pub fn add_rustc_lib_path(&self, compiler: Compiler, cmd: &mut Command) {
        // Windows doesn't need dylib path munging because the dlls for the
        // compiler live next to the compiler and the system will find them
        // automatically.
        if cfg!(windows) {
            return
        }

        add_lib_path(vec![self.rustc_libdir(compiler)], cmd);
    }

231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
    /// Get a path to the compiler specified.
    pub fn rustc(&self, compiler: Compiler) -> PathBuf {
        if compiler.is_snapshot(self) {
            self.initial_rustc.clone()
        } else {
            self.sysroot(compiler).join("bin").join(exe("rustc", compiler.host))
        }
    }

    /// Get the `rustdoc` executable next to the specified compiler
    pub fn rustdoc(&self, compiler: Compiler) -> PathBuf {
        let mut rustdoc = self.rustc(compiler);
        rustdoc.pop();
        rustdoc.push(exe("rustdoc", compiler.host));
        rustdoc
    }

248 249 250 251 252 253 254
    /// Prepares an invocation of `cargo` to be run.
    ///
    /// This will create a `Command` that represents a pending execution of
    /// Cargo. This cargo will be configured to use `compiler` as the actual
    /// rustc compiler, its output will be scoped by `mode`'s output directory,
    /// it will pass the `--target` flag for the specified `target`, and will be
    /// executing the Cargo command `cmd`.
255
    pub fn cargo(&self,
M
Mark Simulacrum 已提交
256 257 258 259 260 261
             compiler: Compiler,
             mode: Mode,
             target: &str,
             cmd: &str) -> Command {
        let mut cargo = Command::new(&self.initial_cargo);
        let out_dir = self.stage_out(compiler, mode);
262 263
        cargo.env("CARGO_TARGET_DIR", out_dir)
             .arg(cmd)
M
Mark Simulacrum 已提交
264
             .arg("-j").arg(self.jobs().to_string())
265 266 267 268
             .arg("--target").arg(target);

        // FIXME: Temporary fix for https://github.com/rust-lang/cargo/issues/3005
        // Force cargo to output binaries with disambiguating hashes in the name
M
Mark Simulacrum 已提交
269
        cargo.env("__CARGO_DEFAULT_LIB_METADATA", &self.config.channel);
270 271

        let stage;
M
Mark Simulacrum 已提交
272
        if compiler.stage == 0 && self.local_rebuild {
273 274 275 276 277 278 279 280
            // Assume the local-rebuild rustc already has stage1 features.
            stage = 1;
        } else {
            stage = compiler.stage;
        }

        // Customize the compiler we're running. Specify the compiler to cargo
        // as our shim and then pass it some various options used to configure
M
Mark Simulacrum 已提交
281
        // how the actual compiler itself is called.
282 283 284
        //
        // These variables are primarily all read by
        // src/bootstrap/bin/{rustc.rs,rustdoc.rs}
M
Mark Simulacrum 已提交
285 286
        cargo.env("RUSTBUILD_NATIVE_DIR", self.native_dir(target))
             .env("RUSTC", self.out.join("bootstrap/debug/rustc"))
287
             .env("RUSTC_REAL", self.rustc(compiler))
288 289
             .env("RUSTC_STAGE", stage.to_string())
             .env("RUSTC_CODEGEN_UNITS",
M
Mark Simulacrum 已提交
290
                  self.config.rust_codegen_units.to_string())
291
             .env("RUSTC_DEBUG_ASSERTIONS",
M
Mark Simulacrum 已提交
292
                  self.config.rust_debug_assertions.to_string())
293 294
             .env("RUSTC_SYSROOT", self.sysroot(compiler))
             .env("RUSTC_LIBDIR", self.rustc_libdir(compiler))
M
Mark Simulacrum 已提交
295 296
             .env("RUSTC_RPATH", self.config.rust_rpath.to_string())
             .env("RUSTDOC", self.out.join("bootstrap/debug/rustdoc"))
297
             .env("RUSTDOC_REAL", self.rustdoc(compiler))
M
Mark Simulacrum 已提交
298
             .env("RUSTC_FLAGS", self.rustc_flags(target).join(" "));
299 300 301 302

        if mode != Mode::Tool {
            // Tools don't get debuginfo right now, e.g. cargo and rls don't
            // get compiled with debuginfo.
M
Mark Simulacrum 已提交
303 304
            cargo.env("RUSTC_DEBUGINFO", self.config.rust_debuginfo.to_string())
                 .env("RUSTC_DEBUGINFO_LINES", self.config.rust_debuginfo_lines.to_string())
305 306 307 308
                 .env("RUSTC_FORCE_UNSTABLE", "1");

            // Currently the compiler depends on crates from crates.io, and
            // then other crates can depend on the compiler (e.g. proc-macro
M
Mark Simulacrum 已提交
309
            // crates). Let's say, for example that rustc itself depends on the
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
            // bitflags crate. If an external crate then depends on the
            // bitflags crate as well, we need to make sure they don't
            // conflict, even if they pick the same verison of bitflags. We'll
            // want to make sure that e.g. a plugin and rustc each get their
            // own copy of bitflags.

            // Cargo ensures that this works in general through the -C metadata
            // flag. This flag will frob the symbols in the binary to make sure
            // they're different, even though the source code is the exact
            // same. To solve this problem for the compiler we extend Cargo's
            // already-passed -C metadata flag with our own. Our rustc.rs
            // wrapper around the actual rustc will detect -C metadata being
            // passed and frob it with this extra string we're passing in.
            cargo.env("RUSTC_METADATA_SUFFIX", "rustc");
        }

        // Enable usage of unstable features
        cargo.env("RUSTC_BOOTSTRAP", "1");
M
Mark Simulacrum 已提交
328
        self.add_rust_test_threads(&mut cargo);
329 330 331

        // Almost all of the crates that we compile as part of the bootstrap may
        // have a build script, including the standard library. To compile a
M
Mark Simulacrum 已提交
332
        // build script, however, it itself needs a standard library! This
333
        // introduces a bit of a pickle when we're compiling the standard
M
Mark Simulacrum 已提交
334
        // library itself.
335 336
        //
        // To work around this we actually end up using the snapshot compiler
M
Mark Simulacrum 已提交
337
        // (stage0) for compiling build scripts of the standard library itself.
338 339 340 341 342 343
        // The stage0 compiler is guaranteed to have a libstd available for use.
        //
        // For other crates, however, we know that we've already got a standard
        // library up and running, so we can use the normal compiler to compile
        // build scripts in that situation.
        if mode == Mode::Libstd {
M
Mark Simulacrum 已提交
344 345
            cargo.env("RUSTC_SNAPSHOT", &self.initial_rustc)
                 .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_snapshot_libdir());
346
        } else {
347
            cargo.env("RUSTC_SNAPSHOT", self.rustc(compiler))
348 349 350 351 352 353
                 .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_libdir(compiler));
        }

        // Ignore incremental modes except for stage0, since we're
        // not guaranteeing correctness across builds if the compiler
        // is changing under your feet.`
M
Mark Simulacrum 已提交
354 355
        if self.flags.incremental && compiler.stage == 0 {
            let incr_dir = self.incremental_dir(compiler);
356 357 358
            cargo.env("RUSTC_INCREMENTAL", incr_dir);
        }

M
Mark Simulacrum 已提交
359
        if let Some(ref on_fail) = self.flags.on_fail {
360 361 362
            cargo.env("RUSTC_ON_FAIL", on_fail);
        }

M
Mark Simulacrum 已提交
363
        cargo.env("RUSTC_VERBOSE", format!("{}", self.verbosity));
364 365 366 367 368 369

        // Specify some various options for build scripts used throughout
        // the build.
        //
        // FIXME: the guard against msvc shouldn't need to be here
        if !target.contains("msvc") {
M
Mark Simulacrum 已提交
370 371 372
            cargo.env(format!("CC_{}", target), self.cc(target))
                 .env(format!("AR_{}", target), self.ar(target).unwrap()) // only msvc is None
                 .env(format!("CFLAGS_{}", target), self.cflags(target).join(" "));
373

M
Mark Simulacrum 已提交
374
            if let Ok(cxx) = self.cxx(target) {
375 376 377 378
                 cargo.env(format!("CXX_{}", target), cxx);
            }
        }

M
Mark Simulacrum 已提交
379
        if mode == Mode::Libstd && self.config.extended && compiler.is_final_stage(self) {
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400
            cargo.env("RUSTC_SAVE_ANALYSIS", "api".to_string());
        }

        // When being built Cargo will at some point call `nmake.exe` on Windows
        // MSVC. Unfortunately `nmake` will read these two environment variables
        // below and try to intepret them. We're likely being run, however, from
        // MSYS `make` which uses the same variables.
        //
        // As a result, to prevent confusion and errors, we remove these
        // variables from our environment to prevent passing MSYS make flags to
        // nmake, causing it to blow up.
        if cfg!(target_env = "msvc") {
            cargo.env_remove("MAKE");
            cargo.env_remove("MAKEFLAGS");
        }

        // Environment variables *required* throughout the build
        //
        // FIXME: should update code to not require this env var
        cargo.env("CFG_COMPILER_HOST_TRIPLE", target);

M
Mark Simulacrum 已提交
401
        if self.is_verbose() {
402 403 404
            cargo.arg("-v");
        }
        // FIXME: cargo bench does not accept `--release`
M
Mark Simulacrum 已提交
405
        if self.config.rust_optimize && cmd != "bench" {
406 407
            cargo.arg("--release");
        }
M
Mark Simulacrum 已提交
408
        if self.config.locked_deps {
409 410
            cargo.arg("--locked");
        }
M
Mark Simulacrum 已提交
411
        if self.config.vendor || self.is_sudo {
412 413 414
            cargo.arg("--frozen");
        }

M
Mark Simulacrum 已提交
415
        self.ci_env.force_coloring_in_ci(&mut cargo);
416 417 418 419

        cargo
    }

420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
    fn maybe_run<S: Step<'a>>(&'a self, path: Option<&Path>) {
        let build = self.build;
        let hosts = if S::ONLY_BUILD_TARGETS || S::ONLY_BUILD {
            &build.config.host[..1]
        } else {
            &build.hosts
        };

        // Determine the actual targets participating in this rule.
        // NOTE: We should keep the full projection from build triple to
        // the hosts for the dist steps, now that the hosts array above is
        // truncated to avoid duplication of work in that case. Therefore
        // the original non-shadowed hosts array is used below.
        let targets = if S::ONLY_HOSTS {
            // If --target was specified but --host wasn't specified,
            // don't run any host-only tests. Also, respect any `--host`
            // overrides as done for `hosts`.
            if build.flags.host.len() > 0 {
                &build.flags.host[..]
            } else if build.flags.target.len() > 0 {
                &[]
            } else if S::ONLY_BUILD {
                &build.config.host[..1]
            } else {
                &build.config.host[..]
            }
        } else {
            &build.targets
        };

        for host in hosts {
            for target in targets {
                S::make_run(self, path, host, target);
            }
        }
    }

457 458 459 460
    /// Ensure that a given step is built, returning it's output. This will
    /// cache the step, so it is safe (and good!) to call this as often as
    /// needed to ensure that all dependencies are built.
    pub fn ensure<S: Step<'a>>(&'a self, step: S) -> S::Output {
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
        let key = Cache::to_key(&step);
        {
            let mut stack = self.stack.borrow_mut();
            if stack.contains(&key) {
                let mut out = String::new();
                out += &format!("\n\nCycle in build detected when adding {:?}\n", key);
                for el in stack.iter().rev() {
                    out += &format!("\t{:?}\n", el);
                }
                panic!(out);
            }
            if let Some(out) = self.cache.get::<S::Output>(&key) {
                self.build.verbose(&format!("{}c {:?}", "  ".repeat(stack.len()), key));

                return out;
            }
            self.build.verbose(&format!("{}> {:?}", "  ".repeat(stack.len()), key));
            stack.push(key.clone());
        }
        let out = step.run(self);
        {
            let mut stack = self.stack.borrow_mut();
            assert_eq!(stack.pop().as_ref(), Some(&key));
        }
        self.build.verbose(&format!("{}< {:?}", "  ".repeat(self.stack.borrow().len()), key));
        self.cache.put(key.clone(), &out);
        self.cache.get::<S::Output>(&key).unwrap()
    }
}