builder.rs 51.7 KB
Newer Older
1
use std::any::Any;
2
use std::cell::{Cell, RefCell};
3
use std::collections::BTreeSet;
S
Santiago Pastorino 已提交
4
use std::collections::HashMap;
5
use std::env;
6
use std::ffi::OsStr;
7
use std::fmt::Debug;
8
use std::fs;
9
use std::hash::Hash;
10
use std::ops::Deref;
11 12
use std::path::{Path, PathBuf};
use std::process::Command;
S
Santiago Pastorino 已提交
13
use std::time::{Duration, Instant};
14

15 16
use build_helper::t;

L
ljedrz 已提交
17 18 19 20 21 22 23 24 25 26
use crate::cache::{Cache, Interned, INTERNER};
use crate::check;
use crate::compile;
use crate::dist;
use crate::doc;
use crate::flags::Subcommand;
use crate::install;
use crate::native;
use crate::test;
use crate::tool;
27
use crate::util::{self, add_lib_path, exe, libdir};
L
ljedrz 已提交
28 29 30
use crate::{Build, DocTests, Mode, GitRepo};

pub use crate::Compiler;
31

32
use petgraph::graph::NodeIndex;
S
Santiago Pastorino 已提交
33
use petgraph::Graph;
34

35 36 37 38 39
pub struct Builder<'a> {
    pub build: &'a Build,
    pub top_stage: u32,
    pub kind: Kind,
    cache: Cache,
40
    stack: RefCell<Vec<Box<dyn Any>>>,
41
    time_spent_on_dependencies: Cell<Duration>,
42
    pub paths: Vec<PathBuf>,
43 44 45
    graph_nodes: RefCell<HashMap<String, NodeIndex>>,
    graph: RefCell<Graph<String, bool>>,
    parent: Cell<Option<NodeIndex>>,
46 47 48 49 50 51 52 53 54 55
}

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

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

56
pub trait Step: 'static + Clone + Debug + PartialEq + Eq + Hash {
57 58
    /// `PathBuf` when directories are created or to return a `Compiler` once
    /// it's been assembled.
59
    type Output: Clone;
60

61 62
    const DEFAULT: bool = false;

63
    /// If true, then this rule should be skipped if --target was specified, but --host was not
64 65
    const ONLY_HOSTS: bool = false;

A
Alexander Regueiro 已提交
66
    /// Primary function to execute this rule. Can call `builder.ensure()`
67
    /// with other steps to run those.
T
Taiki Endo 已提交
68
    fn run(self, builder: &Builder<'_>) -> Self::Output;
69

70 71
    /// 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
A
Alexander Regueiro 已提交
72
    /// when we are not passed any paths; in that case, `make_run` is called
73
    /// directly.
T
Taiki Endo 已提交
74
    fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_>;
75

A
Alexander Regueiro 已提交
76
    /// Builds up a "root" rule, either as a default rule or from a path passed
77 78 79 80 81
    /// 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`.
T
Taiki Endo 已提交
82
    fn make_run(_run: RunConfig<'_>) {
83 84 85 86 87 88
        // It is reasonable to not have an implementation of make_run for rules
        // who do not want to get called from the root context. This means that
        // they are likely dependencies (e.g., sysroot creation) or similar, and
        // as such calling them from ./x.py isn't logical.
        unimplemented!()
    }
89 90
}

91 92 93 94
pub struct RunConfig<'a> {
    pub builder: &'a Builder<'a>,
    pub host: Interned<String>,
    pub target: Interned<String>,
95
    pub path: PathBuf,
96 97
}

98 99 100
struct StepDescription {
    default: bool,
    only_hosts: bool,
T
Taiki Endo 已提交
101 102
    should_run: fn(ShouldRun<'_>) -> ShouldRun<'_>,
    make_run: fn(RunConfig<'_>),
103 104 105 106
    name: &'static str,
}

#[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq)]
107
pub enum PathSet {
S
Santiago Pastorino 已提交
108 109
    Set(BTreeSet<PathBuf>),
    Suite(PathBuf),
110 111 112
}

impl PathSet {
113
    fn empty() -> PathSet {
114
        PathSet::Set(BTreeSet::new())
115 116
    }

117 118 119
    fn one<P: Into<PathBuf>>(path: P) -> PathSet {
        let mut set = BTreeSet::new();
        set.insert(path.into());
120
        PathSet::Set(set)
121 122 123
    }

    fn has(&self, needle: &Path) -> bool {
124 125
        match self {
            PathSet::Set(set) => set.iter().any(|p| p.ends_with(needle)),
126
            PathSet::Suite(suite) => suite.ends_with(needle),
127
        }
128 129
    }

T
Taiki Endo 已提交
130
    fn path(&self, builder: &Builder<'_>) -> PathBuf {
131
        match self {
S
Santiago Pastorino 已提交
132 133 134 135 136 137
            PathSet::Set(set) => set
                .iter()
                .next()
                .unwrap_or(&builder.build.src)
                .to_path_buf(),
            PathSet::Suite(path) => PathBuf::from(path),
138
        }
139
    }
140 141 142 143 144 145 146 147 148
}

impl StepDescription {
    fn from<S: Step>() -> StepDescription {
        StepDescription {
            default: S::DEFAULT,
            only_hosts: S::ONLY_HOSTS,
            should_run: S::should_run,
            make_run: S::make_run,
M
Mark Rousskov 已提交
149
            name: std::any::type_name::<S>(),
150 151 152
        }
    }

T
Taiki Endo 已提交
153
    fn maybe_run(&self, builder: &Builder<'_>, pathset: &PathSet) {
154 155 156 157
        if builder.config.exclude.iter().any(|e| pathset.has(e)) {
            eprintln!("Skipping {:?} because it is excluded", pathset);
            return;
        } else if !builder.config.exclude.is_empty() {
S
Santiago Pastorino 已提交
158 159 160 161
            eprintln!(
                "{:?} not skipped for {:?} -- not in {:?}",
                pathset, self.name, builder.config.exclude
            );
162
        }
163
        let hosts = &builder.hosts;
164

M
Mark Simulacrum 已提交
165
        // Determine the targets participating in this rule.
166
        let targets = if self.only_hosts {
167
            if builder.config.skip_only_host_steps {
168
                return; // don't run anything
169
            } else {
170
                &builder.hosts
171 172
            }
        } else {
173
            &builder.targets
174 175 176 177
        };

        for host in hosts {
            for target in targets {
178 179
                let run = RunConfig {
                    builder,
180
                    path: pathset.path(builder),
181 182 183 184
                    host: *host,
                    target: *target,
                };
                (self.make_run)(run);
185 186 187 188
            }
        }
    }

T
Taiki Endo 已提交
189
    fn run(v: &[StepDescription], builder: &Builder<'_>, paths: &[PathBuf]) {
S
Santiago Pastorino 已提交
190 191 192 193
        let should_runs = v
            .iter()
            .map(|desc| (desc.should_run)(ShouldRun::new(builder)))
            .collect::<Vec<_>>();
194 195 196

        // sanity checks on rules
        for (desc, should_run) in v.iter().zip(&should_runs) {
S
Santiago Pastorino 已提交
197 198 199 200 201
            assert!(
                !should_run.paths.is_empty(),
                "{:?} should have at least one pathset",
                desc.name
            );
202 203
        }

204
        if paths.is_empty() {
205 206
            for (desc, should_run) in v.iter().zip(should_runs) {
                if desc.default && should_run.is_really_default {
207 208 209
                    for pathset in &should_run.paths {
                        desc.maybe_run(builder, pathset);
                    }
210 211 212 213
                }
            }
        } else {
            for path in paths {
214 215 216 217 218 219
                // strip CurDir prefix if present
                let path = match path.strip_prefix(".") {
                    Ok(p) => p,
                    Err(_) => path,
                };

220
                let mut attempted_run = false;
221
                for (desc, should_run) in v.iter().zip(&should_runs) {
222 223 224 225
                    if let Some(suite) = should_run.is_suite_path(path) {
                        attempted_run = true;
                        desc.maybe_run(builder, suite);
                    } else if let Some(pathset) = should_run.pathset_for_path(path) {
226
                        attempted_run = true;
227
                        desc.maybe_run(builder, pathset);
228 229 230 231
                    }
                }

                if !attempted_run {
232
                    panic!("Error: no rules matched {}.", path.display());
233 234 235 236 237 238
                }
            }
        }
    }
}

239 240
#[derive(Clone)]
pub struct ShouldRun<'a> {
241
    pub builder: &'a Builder<'a>,
242
    // use a BTreeSet to maintain sort order
243
    paths: BTreeSet<PathSet>,
244 245

    // If this is a default rule, this is an additional constraint placed on
246
    // its run. Generally something like compiler docs being enabled.
247
    is_really_default: bool,
248 249 250
}

impl<'a> ShouldRun<'a> {
T
Taiki Endo 已提交
251
    fn new(builder: &'a Builder<'_>) -> ShouldRun<'a> {
252
        ShouldRun {
253
            builder,
254
            paths: BTreeSet::new(),
255
            is_really_default: true, // by default no additional conditions
256 257 258
        }
    }

259 260 261 262 263
    pub fn default_condition(mut self, cond: bool) -> Self {
        self.is_really_default = cond;
        self
    }

264 265 266 267 268 269 270 271
    // Unlike `krate` this will create just one pathset. As such, it probably shouldn't actually
    // ever be used, but as we transition to having all rules properly handle passing krate(...) by
    // actually doing something different for every crate passed.
    pub fn all_krates(mut self, name: &str) -> Self {
        let mut set = BTreeSet::new();
        for krate in self.builder.in_tree_crates(name) {
            set.insert(PathBuf::from(&krate.path));
        }
272
        self.paths.insert(PathSet::Set(set));
273 274 275
        self
    }

276
    pub fn krate(mut self, name: &str) -> Self {
277 278
        for krate in self.builder.in_tree_crates(name) {
            self.paths.insert(PathSet::one(&krate.path));
279 280 281 282
        }
        self
    }

283 284 285 286 287 288 289
    // single, non-aliased path
    pub fn path(self, path: &str) -> Self {
        self.paths(&[path])
    }

    // multiple aliases for the same job
    pub fn paths(mut self, paths: &[&str]) -> Self {
S
Santiago Pastorino 已提交
290 291
        self.paths
            .insert(PathSet::Set(paths.iter().map(PathBuf::from).collect()));
292 293 294 295
        self
    }

    pub fn is_suite_path(&self, path: &Path) -> Option<&PathSet> {
S
Santiago Pastorino 已提交
296 297 298
        self.paths.iter().find(|pathset| match pathset {
            PathSet::Suite(p) => path.starts_with(p),
            PathSet::Set(_) => false,
299 300 301 302 303
        })
    }

    pub fn suite_path(mut self, suite: &str) -> Self {
        self.paths.insert(PathSet::Suite(PathBuf::from(suite)));
304 305 306 307
        self
    }

    // allows being more explicit about why should_run in Step returns the value passed to it
308 309
    pub fn never(mut self) -> ShouldRun<'a> {
        self.paths.insert(PathSet::empty());
310 311 312
        self
    }

313 314
    fn pathset_for_path(&self, path: &Path) -> Option<&PathSet> {
        self.paths.iter().find(|pathset| pathset.has(path))
315 316 317
    }
}

318 319 320
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
pub enum Kind {
    Build,
321
    Check,
L
ljedrz 已提交
322 323
    Clippy,
    Fix,
324 325 326 327 328 329 330
    Test,
    Bench,
    Dist,
    Doc,
    Install,
}

331 332 333
impl<'a> Builder<'a> {
    fn get_step_descriptions(kind: Kind) -> Vec<StepDescription> {
        macro_rules! describe {
T
Taiki Endo 已提交
334
            ($($rule:ty),+ $(,)?) => {{
335 336
                vec![$(StepDescription::from::<$rule>()),+]
            }};
337
        }
338
        match kind {
S
Santiago Pastorino 已提交
339 340 341
            Kind::Build => describe!(
                compile::Std,
                compile::Rustc,
342
                compile::CodegenBackend,
S
Santiago Pastorino 已提交
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
                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,
                tool::Rustdoc,
                tool::Clippy,
                native::Llvm,
                tool::Rustfmt,
                tool::Miri,
                native::Lld
            ),
L
ljedrz 已提交
364
            Kind::Check | Kind::Clippy | Kind::Fix => describe!(
S
Santiago Pastorino 已提交
365 366 367 368 369 370 371 372 373 374 375 376 377 378
                check::Std,
                check::Rustc,
                check::CodegenBackend,
                check::Rustdoc
            ),
            Kind::Test => describe!(
                test::Tidy,
                test::Ui,
                test::CompileFail,
                test::RunFail,
                test::RunPassValgrind,
                test::MirOpt,
                test::Codegen,
                test::CodegenUnits,
379
                test::Assembly,
S
Santiago Pastorino 已提交
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
                test::Incremental,
                test::Debuginfo,
                test::UiFullDeps,
                test::Rustdoc,
                test::Pretty,
                test::RunFailPretty,
                test::RunPassValgrindPretty,
                test::Crate,
                test::CrateLibrustc,
                test::CrateRustdoc,
                test::Linkcheck,
                test::Cargotest,
                test::Cargo,
                test::Rls,
                test::ErrorIndex,
                test::Distcheck,
396
                test::RunMakeFullDeps,
S
Santiago Pastorino 已提交
397 398 399 400 401 402 403
                test::Nomicon,
                test::Reference,
                test::RustdocBook,
                test::RustByExample,
                test::TheBook,
                test::UnstableBook,
                test::RustcBook,
404
                test::RustcGuide,
405
                test::EmbeddedBook,
E
Eric Huss 已提交
406
                test::EditionGuide,
S
Santiago Pastorino 已提交
407 408 409
                test::Rustfmt,
                test::Miri,
                test::Clippy,
410
                test::CompiletestTest,
G
Guillaume Gomez 已提交
411
                test::RustdocJSStd,
G
Guillaume Gomez 已提交
412
                test::RustdocJSNotStd,
S
Santiago Pastorino 已提交
413
                test::RustdocTheme,
J
John Kåre Alsaker 已提交
414
                test::RustdocUi,
415 416
                // Run bootstrap close to the end as it's unlikely to fail
                test::Bootstrap,
417
                // Run run-make last, since these won't pass without make on Windows
S
Santiago Pastorino 已提交
418 419
                test::RunMake,
            ),
420
            Kind::Bench => describe!(test::Crate, test::CrateLibrustc),
S
Santiago Pastorino 已提交
421 422 423 424 425 426 427 428 429 430 431 432 433 434
            Kind::Doc => describe!(
                doc::UnstableBook,
                doc::UnstableBookGen,
                doc::TheBook,
                doc::Standalone,
                doc::Std,
                doc::Rustc,
                doc::Rustdoc,
                doc::ErrorIndex,
                doc::Nomicon,
                doc::Reference,
                doc::RustdocBook,
                doc::RustByExample,
                doc::RustcBook,
S
Steve Klabnik 已提交
435
                doc::CargoBook,
J
James Munns 已提交
436
                doc::EmbeddedBook,
S
Steve Klabnik 已提交
437
                doc::EditionGuide,
S
Santiago Pastorino 已提交
438 439 440 441 442 443 444 445
            ),
            Kind::Dist => describe!(
                dist::Docs,
                dist::RustcDocs,
                dist::Mingw,
                dist::Rustc,
                dist::DebuggerScripts,
                dist::Std,
J
Josh Stone 已提交
446
                dist::RustcDev,
S
Santiago Pastorino 已提交
447 448 449 450 451 452
                dist::Analysis,
                dist::Src,
                dist::PlainSourceTarball,
                dist::Cargo,
                dist::Rls,
                dist::Rustfmt,
453
                dist::Clippy,
454
                dist::Miri,
455
                dist::LlvmTools,
T
Tom Tromey 已提交
456
                dist::Lldb,
S
Santiago Pastorino 已提交
457 458 459 460 461 462 463 464 465
                dist::Extended,
                dist::HashSign
            ),
            Kind::Install => describe!(
                install::Docs,
                install::Std,
                install::Cargo,
                install::Rls,
                install::Rustfmt,
466
                install::Clippy,
467
                install::Miri,
S
Santiago Pastorino 已提交
468 469 470 471
                install::Analysis,
                install::Src,
                install::Rustc
            ),
472 473
        }
    }
474

475 476 477 478 479 480 481 482 483 484 485 486
    pub fn get_help(build: &Build, subcommand: &str) -> Option<String> {
        let kind = match subcommand {
            "build" => Kind::Build,
            "doc" => Kind::Doc,
            "test" => Kind::Test,
            "bench" => Kind::Bench,
            "dist" => Kind::Dist,
            "install" => Kind::Install,
            _ => return None,
        };

        let builder = Builder {
487
            build,
M
Mark Simulacrum 已提交
488
            top_stage: build.config.stage.unwrap_or(2),
489
            kind,
490 491
            cache: Cache::new(),
            stack: RefCell::new(Vec::new()),
492
            time_spent_on_dependencies: Cell::new(Duration::new(0, 0)),
493
            paths: vec![],
494 495 496
            graph_nodes: RefCell::new(HashMap::new()),
            graph: RefCell::new(Graph::new()),
            parent: Cell::new(None),
497 498 499 500
        };

        let builder = &builder;
        let mut should_run = ShouldRun::new(builder);
501 502
        for desc in Builder::get_step_descriptions(builder.kind) {
            should_run = (desc.should_run)(should_run);
503 504
        }
        let mut help = String::from("Available paths:\n");
505
        for pathset in should_run.paths {
S
Santiago Pastorino 已提交
506 507 508 509 510 511
            if let PathSet::Set(set) = pathset {
                set.iter().for_each(|path| {
                    help.push_str(
                        format!("    ./x.py {} {}\n", subcommand, path.display()).as_str(),
                    )
                })
512
            }
513 514 515 516
        }
        Some(help)
    }

T
Taiki Endo 已提交
517
    pub fn new(build: &Build) -> Builder<'_> {
M
Mark Simulacrum 已提交
518
        let (kind, paths) = match build.config.cmd {
519
            Subcommand::Build { ref paths } => (Kind::Build, &paths[..]),
520
            Subcommand::Check { ref paths } => (Kind::Check, &paths[..]),
L
ljedrz 已提交
521 522
            Subcommand::Clippy { ref paths } => (Kind::Clippy, &paths[..]),
            Subcommand::Fix { ref paths } => (Kind::Fix, &paths[..]),
523 524 525 526 527
            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[..]),
O
Oliver Schneider 已提交
528
            Subcommand::Clean { .. } => panic!(),
529 530 531
        };

        let builder = Builder {
532
            build,
M
Mark Simulacrum 已提交
533
            top_stage: build.config.stage.unwrap_or(2),
534
            kind,
535 536
            cache: Cache::new(),
            stack: RefCell::new(Vec::new()),
537
            time_spent_on_dependencies: Cell::new(Duration::new(0, 0)),
538
            paths: paths.to_owned(),
539 540 541
            graph_nodes: RefCell::new(HashMap::new()),
            graph: RefCell::new(Graph::new()),
            parent: Cell::new(None),
542 543
        };

544 545 546
        builder
    }

547
    pub fn execute_cli(&self) -> Graph<String, bool> {
M
Mark Simulacrum 已提交
548
        self.run_step_descriptions(&Builder::get_step_descriptions(self.kind), &self.paths);
549
        self.graph.borrow().clone()
550 551 552 553
    }

    pub fn default_doc(&self, paths: Option<&[PathBuf]>) {
        let paths = paths.unwrap_or(&[]);
M
Mark Simulacrum 已提交
554 555 556 557 558
        self.run_step_descriptions(&Builder::get_step_descriptions(Kind::Doc), paths);
    }

    fn run_step_descriptions(&self, v: &[StepDescription], paths: &[PathBuf]) {
        StepDescription::run(v, self, paths);
559 560
    }

B
Bastien Orivel 已提交
561
    /// Obtain a compiler at a given stage and for a given host. Explicitly does
562 563 564
    /// 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).
565
    pub fn compiler(&self, stage: u32, host: Interned<String>) -> Compiler {
S
Santiago Pastorino 已提交
566 567 568
        self.ensure(compile::Assemble {
            target_compiler: Compiler { stage, host },
        })
569 570
    }

571 572 573 574 575 576 577 578 579 580 581
    /// Similar to `compiler`, except handles the full-bootstrap option to
    /// silently use the stage1 compiler instead of a stage2 compiler if one is
    /// requested.
    ///
    /// Note that this does *not* have the side effect of creating
    /// `compiler(stage, host)`, unlike `compiler` above which does have such
    /// a side effect. The returned compiler here can only be used to compile
    /// new artifacts, it can't be used to rely on the presence of a particular
    /// sysroot.
    ///
    /// See `force_use_stage1` for documentation on what each argument is.
A
Alex Crichton 已提交
582 583 584 585 586 587
    pub fn compiler_for(
        &self,
        stage: u32,
        host: Interned<String>,
        target: Interned<String>,
    ) -> Compiler {
588 589 590 591 592 593 594
        if self.build.force_use_stage1(Compiler { stage, host }, target) {
            self.compiler(1, self.config.build)
        } else {
            self.compiler(stage, host)
        }
    }

595
    pub fn sysroot(&self, compiler: Compiler) -> Interned<PathBuf> {
596 597 598 599 600
        self.ensure(compile::Sysroot { compiler })
    }

    /// Returns the libdir where the standard library and other artifacts are
    /// found for a compiler's sysroot.
601
    pub fn sysroot_libdir(
S
Santiago Pastorino 已提交
602 603 604
        &self,
        compiler: Compiler,
        target: Interned<String>,
605 606 607 608 609
    ) -> Interned<PathBuf> {
        #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
        struct Libdir {
            compiler: Compiler,
            target: Interned<String>,
610
        }
611 612
        impl Step for Libdir {
            type Output = Interned<PathBuf>;
613

T
Taiki Endo 已提交
614
            fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
615
                run.never()
616 617
            }

T
Taiki Endo 已提交
618
            fn run(self, builder: &Builder<'_>) -> Interned<PathBuf> {
O
O01eg 已提交
619
                let lib = builder.sysroot_libdir_relative(self.compiler);
S
Santiago Pastorino 已提交
620 621 622 623 624 625
                let sysroot = builder
                    .sysroot(self.compiler)
                    .join(lib)
                    .join("rustlib")
                    .join(self.target)
                    .join("lib");
626 627
                let _ = fs::remove_dir_all(&sysroot);
                t!(fs::create_dir_all(&sysroot));
628
                INTERNER.intern_path(sysroot)
629 630 631 632 633
            }
        }
        self.ensure(Libdir { compiler, target })
    }

634 635
    pub fn sysroot_codegen_backends(&self, compiler: Compiler) -> PathBuf {
        self.sysroot_libdir(compiler, compiler.host)
636
            .with_file_name(self.config.rust_codegen_backends_dir.clone())
637 638
    }

639 640 641 642 643 644 645
    /// 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) {
646
            self.rustc_snapshot_libdir()
647
        } else {
O
O01eg 已提交
648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669
            match self.config.libdir_relative() {
                Some(relative_libdir) if compiler.stage >= 1
                    => self.sysroot(compiler).join(relative_libdir),
                _ => self.sysroot(compiler).join(libdir(&compiler.host))
            }
        }
    }

    /// Returns the compiler's relative libdir where it stores the dynamic libraries that
    /// it itself links against.
    ///
    /// For example this returns `lib` on Unix and `bin` on
    /// Windows.
    pub fn libdir_relative(&self, compiler: Compiler) -> &Path {
        if compiler.is_snapshot(self) {
            libdir(&self.config.build).as_ref()
        } else {
            match self.config.libdir_relative() {
                Some(relative_libdir) if compiler.stage >= 1
                    => relative_libdir,
                _ => libdir(&compiler.host).as_ref()
            }
670 671 672
        }
    }

O
O01eg 已提交
673 674 675 676 677 678 679 680 681 682 683 684
    /// Returns the compiler's relative libdir where the standard library and other artifacts are
    /// found for a compiler's sysroot.
    ///
    /// For example this returns `lib` on Unix and Windows.
    pub fn sysroot_libdir_relative(&self, compiler: Compiler) -> &Path {
        match self.config.libdir_relative() {
            Some(relative_libdir) if compiler.stage >= 1
                => relative_libdir,
            _ => Path::new("lib")
        }
    }

685 686
    /// Adds the compiler's directory of dynamic libraries to `cmd`'s dynamic
    /// library lookup path.
687
    pub fn add_rustc_lib_path(&self, compiler: Compiler, cmd: &mut Cargo) {
688 689 690 691
        // 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) {
S
Santiago Pastorino 已提交
692
            return;
693 694
        }

695
        add_lib_path(vec![self.rustc_libdir(compiler)], &mut cmd.command);
696 697
    }

A
Alexander Regueiro 已提交
698
    /// Gets a path to the compiler specified.
699 700 701 702
    pub fn rustc(&self, compiler: Compiler) -> PathBuf {
        if compiler.is_snapshot(self) {
            self.initial_rustc.clone()
        } else {
S
Santiago Pastorino 已提交
703 704 705
            self.sysroot(compiler)
                .join("bin")
                .join(exe("rustc", &compiler.host))
706 707 708
        }
    }

A
Alexander Regueiro 已提交
709
    /// Gets the paths to all of the compiler's codegen backends.
710 711 712 713 714 715 716 717
    fn codegen_backends(&self, compiler: Compiler) -> impl Iterator<Item = PathBuf> {
        fs::read_dir(self.sysroot_codegen_backends(compiler))
            .into_iter()
            .flatten()
            .filter_map(Result::ok)
            .map(|entry| entry.path())
    }

M
Mark Rousskov 已提交
718 719
    pub fn rustdoc(&self, compiler: Compiler) -> PathBuf {
        self.ensure(tool::Rustdoc { compiler })
M
Mark Simulacrum 已提交
720 721
    }

M
Mark Rousskov 已提交
722
    pub fn rustdoc_cmd(&self, compiler: Compiler) -> Command {
M
Mark Simulacrum 已提交
723
        let mut cmd = Command::new(&self.out.join("bootstrap/debug/rustdoc"));
O
Oliver Schneider 已提交
724
        cmd.env("RUSTC_STAGE", compiler.stage.to_string())
S
Santiago Pastorino 已提交
725
            .env("RUSTC_SYSROOT", self.sysroot(compiler))
M
Mark Rousskov 已提交
726 727 728
            // Note that this is *not* the sysroot_libdir because rustdoc must be linked
            // equivalently to rustc.
            .env("RUSTDOC_LIBDIR", self.rustc_libdir(compiler))
S
Santiago Pastorino 已提交
729
            .env("CFG_RELEASE_CHANNEL", &self.config.channel)
M
Mark Rousskov 已提交
730
            .env("RUSTDOC_REAL", self.rustdoc(compiler))
S
Santiago Pastorino 已提交
731 732
            .env("RUSTDOC_CRATE_VERSION", self.rust_version())
            .env("RUSTC_BOOTSTRAP", "1");
733 734 735 736 737

        // Remove make-related flags that can cause jobserver problems.
        cmd.env_remove("MAKEFLAGS");
        cmd.env_remove("MFLAGS");

M
Mark Rousskov 已提交
738
        if let Some(linker) = self.linker(compiler.host) {
O
Oliver Schneider 已提交
739 740
            cmd.env("RUSTC_TARGET_LINKER", linker);
        }
M
Mark Simulacrum 已提交
741
        cmd
742 743
    }

744 745 746 747 748 749 750
    /// 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`.
S
Santiago Pastorino 已提交
751 752 753 754 755 756
    pub fn cargo(
        &self,
        compiler: Compiler,
        mode: Mode,
        target: Interned<String>,
        cmd: &str,
757
    ) -> Cargo {
M
Mark Simulacrum 已提交
758 759
        let mut cargo = Command::new(&self.initial_cargo);
        let out_dir = self.stage_out(compiler, mode);
760

761 762 763 764 765
        // Codegen backends are not yet tracked by -Zbinary-dep-depinfo,
        // so we need to explicitly clear out if they've been updated.
        for backend in self.codegen_backends(compiler) {
            self.clear_if_dirty(&out_dir, &backend);
        }
766

767
        if cmd == "doc" || cmd == "rustdoc" {
768
            let my_out = match mode {
769
                // This is the intended out directory for compiler documentation.
770 771 772
                Mode::Rustc | Mode::ToolRustc | Mode::Codegen => self.compiler_doc_out(target),
                _ => self.crate_doc_out(target),
            };
M
Mark Rousskov 已提交
773
            let rustdoc = self.rustdoc(compiler);
774 775 776
            self.clear_if_dirty(&my_out, &rustdoc);
        }

S
Santiago Pastorino 已提交
777 778
        cargo
            .env("CARGO_TARGET_DIR", out_dir)
779 780 781 782 783 784 785 786 787 788 789
            .arg(cmd)
            .arg("-Zconfig-profile");

        let profile_var = |name: &str| {
            let profile = if self.config.rust_optimize {
                "RELEASE"
            } else {
                "DEV"
            };
            format!("CARGO_PROFILE_{}_{}", profile, name)
        };
790

791 792 793 794 795 796 797
        // See comment in librustc_llvm/build.rs for why this is necessary, largely llvm-config
        // needs to not accidentally link to libLLVM in stage0/lib.
        cargo.env("REAL_LIBRARY_PATH_VAR", &util::dylib_path_var());
        if let Some(e) = env::var_os(util::dylib_path_var()) {
            cargo.env("REAL_LIBRARY_PATH", e);
        }

798 799 800 801 802 803
        if cmd != "install" {
            cargo.arg("--target")
                 .arg(target);
        } else {
            assert_eq!(target, compiler.host);
        }
804

L
ljedrz 已提交
805 806 807
        // Set a flag for `check`/`clippy`/`fix`, so that certain build
        // scripts can do less work (e.g. not building/requiring LLVM).
        if cmd == "check" || cmd == "clippy" || cmd == "fix" {
V
varkor 已提交
808 809 810
            cargo.env("RUST_CHECK", "1");
        }

811 812 813 814 815 816 817 818
        let stage;
        if compiler.stage == 0 && self.local_rebuild {
            // Assume the local-rebuild rustc already has stage1 features.
            stage = 1;
        } else {
            stage = compiler.stage;
        }

819
        let mut rustflags = Rustflags::new(&target);
820
        if stage != 0 {
821 822 823
            if let Ok(s) = env::var("CARGOFLAGS_NOT_BOOTSTRAP") {
                cargo.args(s.split_whitespace());
            }
824 825
            rustflags.env("RUSTFLAGS_NOT_BOOTSTRAP");
        } else {
826 827 828
            if let Ok(s) = env::var("CARGOFLAGS_BOOTSTRAP") {
                cargo.args(s.split_whitespace());
            }
829
            rustflags.env("RUSTFLAGS_BOOTSTRAP");
830
            rustflags.arg("--cfg=bootstrap");
831 832
        }

833 834 835 836
        if let Ok(s) = env::var("CARGOFLAGS") {
            cargo.args(s.split_whitespace());
        }

J
John Kåre Alsaker 已提交
837
        match mode {
838
            Mode::Std | Mode::ToolBootstrap | Mode::ToolStd => {},
J
John Kåre Alsaker 已提交
839 840 841 842
            Mode::Rustc | Mode::Codegen | Mode::ToolRustc => {
                // Build proc macros both for the host and the target
                if target != compiler.host && cmd != "check" {
                    cargo.arg("-Zdual-proc-macros");
843
                    rustflags.arg("-Zdual-proc-macros");
J
John Kåre Alsaker 已提交
844 845 846 847
                }
            },
        }

848 849 850 851 852 853 854 855 856 857 858 859 860
        // This tells Cargo (and in turn, rustc) to output more complete
        // dependency information.  Most importantly for rustbuild, this
        // includes sysroot artifacts, like libstd, which means that we don't
        // need to track those in rustbuild (an error prone process!). This
        // feature is currently unstable as there may be some bugs and such, but
        // it represents a big improvement in rustbuild's reliability on
        // rebuilds, so we're using it here.
        //
        // For some additional context, see #63470 (the PR originally adding
        // this), as well as #63012 which is the tracking issue for this
        // feature on the rustc side.
        cargo.arg("-Zbinary-dep-depinfo");

861 862 863 864
        cargo.arg("-j").arg(self.jobs().to_string());
        // Remove make-related flags to ensure Cargo can correctly set things up
        cargo.env_remove("MAKEFLAGS");
        cargo.env_remove("MFLAGS");
865

866 867
        // FIXME: Temporary fix for https://github.com/rust-lang/cargo/issues/3005
        // Force cargo to output binaries with disambiguating hashes in the name
868 869
        let mut metadata = if compiler.stage == 0 {
            // Treat stage0 like a special channel, whether it's a normal prior-
870 871
            // release rustc or a local rebuild with the same version, so we
            // never mix these libraries by accident.
872
            "bootstrap".to_string()
873
        } else {
874
            self.config.channel.to_string()
875
        };
876 877 878 879 880 881 882 883 884 885 886 887 888
        // We want to make sure that none of the dependencies between
        // std/test/rustc unify with one another. This is done for weird linkage
        // reasons but the gist of the problem is that if librustc, libtest, and
        // libstd all depend on libc from crates.io (which they actually do) we
        // want to make sure they all get distinct versions. Things get really
        // weird if we try to unify all these dependencies right now, namely
        // around how many times the library is linked in dynamic libraries and
        // such. If rustc were a static executable or if we didn't ship dylibs
        // this wouldn't be a problem, but we do, so it is. This is in general
        // just here to make sure things build right. If you can remove this and
        // things still build right, please do!
        match mode {
            Mode::Std => metadata.push_str("std"),
M
Mark Rousskov 已提交
889 890 891 892 893 894 895 896 897 898 899 900
            // When we're building rustc tools, they're built with a search path
            // that contains things built during the rustc build. For example,
            // bitflags is built during the rustc build, and is a dependency of
            // rustdoc as well. We're building rustdoc in a different target
            // directory, though, which means that Cargo will rebuild the
            // dependency. When we go on to build rustdoc, we'll look for
            // bitflags, and find two different copies: one built during the
            // rustc step and one that we just built. This isn't always a
            // problem, somehow -- not really clear why -- but we know that this
            // fixes things.
            Mode::ToolRustc => metadata.push_str("tool-rustc"),
            _ => {}
901
        }
902
        cargo.env("__CARGO_DEFAULT_LIB_METADATA", &metadata);
903

L
ljedrz 已提交
904
        if cmd == "clippy" {
905
            rustflags.arg("-Zforce-unstable-if-unmarked");
906 907
        }

908 909
        rustflags.arg("-Zexternal-macro-backtrace");

K
kennytm 已提交
910
        let want_rustdoc = self.doc_tests != DocTests::No;
K
kennytm 已提交
911

912 913 914 915 916 917
        // We synthetically interpret a stage0 compiler used to build tools as a
        // "raw" compiler in that it's the exact snapshot we download. Normally
        // the stage0 build means it uses libraries build by the stage0
        // compiler, but for tools we just use the precompiled libraries that
        // we've downloaded
        let use_snapshot = mode == Mode::ToolBootstrap;
918
        assert!(!use_snapshot || stage == 0 || self.local_rebuild);
919 920 921 922 923 924 925

        let maybe_sysroot = self.sysroot(compiler);
        let sysroot = if use_snapshot {
            self.rustc_snapshot_sysroot()
        } else {
            &maybe_sysroot
        };
M
Mark Rousskov 已提交
926
        let libdir = self.rustc_libdir(compiler);
927

928 929
        // 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 已提交
930
        // how the actual compiler itself is called.
931 932 933
        //
        // These variables are primarily all read by
        // src/bootstrap/bin/{rustc.rs,rustdoc.rs}
S
Santiago Pastorino 已提交
934 935 936 937 938 939 940 941 942
        cargo
            .env("RUSTBUILD_NATIVE_DIR", self.native_dir(target))
            .env("RUSTC", self.out.join("bootstrap/debug/rustc"))
            .env("RUSTC_REAL", self.rustc(compiler))
            .env("RUSTC_STAGE", stage.to_string())
            .env(
                "RUSTC_DEBUG_ASSERTIONS",
                self.config.rust_debug_assertions.to_string(),
            )
943 944
            .env("RUSTC_SYSROOT", &sysroot)
            .env("RUSTC_LIBDIR", &libdir)
S
Santiago Pastorino 已提交
945 946 947
            .env("RUSTDOC", self.out.join("bootstrap/debug/rustdoc"))
            .env(
                "RUSTDOC_REAL",
948
                if cmd == "doc" || cmd == "rustdoc" || (cmd == "test" && want_rustdoc) {
M
Mark Rousskov 已提交
949
                    self.rustdoc(compiler)
S
Santiago Pastorino 已提交
950 951 952 953
                } else {
                    PathBuf::from("/path/to/nowhere/rustdoc/not/required")
                },
            )
954 955
            .env("RUSTC_ERROR_METADATA_DST", self.extended_error_dir())
            .env("RUSTC_BREAK_ON_ICE", "1");
956

957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994
        // Dealing with rpath here is a little special, so let's go into some
        // detail. First off, `-rpath` is a linker option on Unix platforms
        // which adds to the runtime dynamic loader path when looking for
        // dynamic libraries. We use this by default on Unix platforms to ensure
        // that our nightlies behave the same on Windows, that is they work out
        // of the box. This can be disabled, of course, but basically that's why
        // we're gated on RUSTC_RPATH here.
        //
        // Ok, so the astute might be wondering "why isn't `-C rpath` used
        // here?" and that is indeed a good question to task. This codegen
        // option is the compiler's current interface to generating an rpath.
        // Unfortunately it doesn't quite suffice for us. The flag currently
        // takes no value as an argument, so the compiler calculates what it
        // should pass to the linker as `-rpath`. This unfortunately is based on
        // the **compile time** directory structure which when building with
        // Cargo will be very different than the runtime directory structure.
        //
        // All that's a really long winded way of saying that if we use
        // `-Crpath` then the executables generated have the wrong rpath of
        // something like `$ORIGIN/deps` when in fact the way we distribute
        // rustc requires the rpath to be `$ORIGIN/../lib`.
        //
        // So, all in all, to set up the correct rpath we pass the linker
        // argument manually via `-C link-args=-Wl,-rpath,...`. Plus isn't it
        // fun to pass a flag to a tool to pass a flag to pass a flag to a tool
        // to change a flag in a binary?
        if self.config.rust_rpath {
            let rpath = if target.contains("apple") {

                // Note that we need to take one extra step on macOS to also pass
                // `-Wl,-instal_name,@rpath/...` to get things to work right. To
                // do that we pass a weird flag to the compiler to get it to do
                // so. Note that this is definitely a hack, and we should likely
                // flesh out rpath support more fully in the future.
                rustflags.arg("-Zosx-rpath-install-name");
                Some("-Wl,-rpath,@loader_path/../lib")
            } else if !target.contains("windows") &&
                      !target.contains("wasm32") &&
995
                      !target.contains("emscripten") &&
996 997 998 999 1000 1001 1002 1003 1004 1005
                      !target.contains("fuchsia") {
                Some("-Wl,-rpath,$ORIGIN/../lib")
            } else {
                None
            };
            if let Some(rpath) = rpath {
                rustflags.arg(&format!("-Clink-args={}", rpath));
            }
        }

1006
        if let Some(host_linker) = self.linker(compiler.host) {
O
Oliver Schneider 已提交
1007 1008
            cargo.env("RUSTC_HOST_LINKER", host_linker);
        }
1009
        if let Some(target_linker) = self.linker(target) {
1010 1011
            let target = crate::envify(&target);
            cargo.env(&format!("CARGO_TARGET_{}_LINKER", target), target_linker);
O
Oliver Schneider 已提交
1012
        }
L
ljedrz 已提交
1013
        if !(["build", "check", "clippy", "fix", "rustc"].contains(&cmd)) && want_rustdoc {
M
Mark Rousskov 已提交
1014
            cargo.env("RUSTDOC_LIBDIR", self.rustc_libdir(compiler));
1015
        }
1016

1017 1018
        let debuginfo_level = match mode {
            Mode::Rustc | Mode::Codegen => self.config.rust_debuginfo_level_rustc,
1019
            Mode::Std => self.config.rust_debuginfo_level_std,
1020
            Mode::ToolBootstrap | Mode::ToolStd |
1021
            Mode::ToolRustc => self.config.rust_debuginfo_level_tools,
1022
        };
1023
        cargo.env(profile_var("DEBUG"), debuginfo_level.to_string());
1024 1025

        if !mode.is_tool() {
O
Oliver Schneider 已提交
1026
            cargo.env("RUSTC_FORCE_UNSTABLE", "1");
1027 1028
        }

1029
        if let Some(x) = self.crt_static(target) {
1030 1031 1032 1033 1034
            if x {
                rustflags.arg("-Ctarget-feature=+crt-static");
            } else {
                rustflags.arg("-Ctarget-feature=-crt-static");
            }
1035 1036
        }

1037 1038 1039 1040
        if let Some(x) = self.crt_static(compiler.host) {
            cargo.env("RUSTC_HOST_CRT_STATIC", x.to_string());
        }

1041 1042 1043 1044
        if let Some(map) = self.build.debuginfo_map(GitRepo::Rustc) {
            cargo.env("RUSTC_DEBUGINFO_MAP", map);
        }

1045 1046
        // Enable usage of unstable features
        cargo.env("RUSTC_BOOTSTRAP", "1");
M
Mark Simulacrum 已提交
1047
        self.add_rust_test_threads(&mut cargo);
1048 1049 1050

        // 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 已提交
1051
        // build script, however, it itself needs a standard library! This
1052
        // introduces a bit of a pickle when we're compiling the standard
M
Mark Simulacrum 已提交
1053
        // library itself.
1054 1055
        //
        // To work around this we actually end up using the snapshot compiler
M
Mark Simulacrum 已提交
1056
        // (stage0) for compiling build scripts of the standard library itself.
1057 1058 1059 1060 1061
        // 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.
B
bjorn3 已提交
1062
        if mode == Mode::Std {
S
Santiago Pastorino 已提交
1063 1064 1065
            cargo
                .env("RUSTC_SNAPSHOT", &self.initial_rustc)
                .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_snapshot_libdir());
1066
        } else {
S
Santiago Pastorino 已提交
1067 1068 1069
            cargo
                .env("RUSTC_SNAPSHOT", self.rustc(compiler))
                .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_libdir(compiler));
1070 1071
        }

1072
        if self.config.incremental {
1073
            cargo.env("CARGO_INCREMENTAL", "1");
1074 1075 1076
        } else {
            // Don't rely on any default setting for incr. comp. in Cargo
            cargo.env("CARGO_INCREMENTAL", "0");
1077 1078
        }

M
Mark Simulacrum 已提交
1079
        if let Some(ref on_fail) = self.config.on_fail {
1080 1081 1082
            cargo.env("RUSTC_ON_FAIL", on_fail);
        }

1083 1084 1085 1086
        if self.config.print_step_timings {
            cargo.env("RUSTC_PRINT_STEP_TIMINGS", "1");
        }

J
John Kåre Alsaker 已提交
1087 1088 1089 1090
        if self.config.backtrace_on_ice {
            cargo.env("RUSTC_BACKTRACE_ON_ICE", "1");
        }

L
ljedrz 已提交
1091
        cargo.env("RUSTC_VERBOSE", self.verbosity.to_string());
1092

1093 1094 1095 1096 1097 1098 1099 1100 1101 1102
        if !mode.is_tool() {
            // When extending this list, add the new lints to the RUSTFLAGS of the
            // build_bootstrap function of src/bootstrap/bootstrap.py as well as
            // some code doesn't go through this `rustc` wrapper.
            rustflags.arg("-Wrust_2018_idioms");
            rustflags.arg("-Wunused_lifetimes");

            if self.config.deny_warnings {
                rustflags.arg("-Dwarnings");
            }
1103 1104
        }

A
Alex Crichton 已提交
1105 1106 1107
        if let Mode::Rustc | Mode::Codegen = mode {
            rustflags.arg("-Zunstable-options");
            rustflags.arg("-Wrustc::internal");
1108 1109
        }

O
Oliver Schneider 已提交
1110 1111 1112 1113 1114
        // Throughout the build Cargo can execute a number of build scripts
        // compiling C/C++ code and we need to pass compilers, archivers, flags, etc
        // obtained previously to those build scripts.
        // Build scripts use either the `cc` crate or `configure/make` so we pass
        // the options through environment variables that are fetched and understood by both.
1115 1116
        //
        // FIXME: the guard against msvc shouldn't need to be here
1117 1118 1119 1120 1121
        if target.contains("msvc") {
            if let Some(ref cl) = self.config.llvm_clang_cl {
                cargo.env("CC", cl).env("CXX", cl);
            }
        } else {
1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138
            let ccache = self.config.ccache.as_ref();
            let ccacheify = |s: &Path| {
                let ccache = match ccache {
                    Some(ref s) => s,
                    None => return s.display().to_string(),
                };
                // FIXME: the cc-rs crate only recognizes the literal strings
                // `ccache` and `sccache` when doing caching compilations, so we
                // mirror that here. It should probably be fixed upstream to
                // accept a new env var or otherwise work with custom ccache
                // vars.
                match &ccache[..] {
                    "ccache" | "sccache" => format!("{} {}", ccache, s.display()),
                    _ => s.display().to_string(),
                }
            };
            let cc = ccacheify(&self.cc(target));
1139
            cargo.env(format!("CC_{}", target), &cc);
O
Oliver Schneider 已提交
1140

1141
            let cflags = self.cflags(target, GitRepo::Rustc).join(" ");
S
Santiago Pastorino 已提交
1142
            cargo
1143
                .env(format!("CFLAGS_{}", target), cflags.clone());
O
Oliver Schneider 已提交
1144 1145 1146

            if let Some(ar) = self.ar(target) {
                let ranlib = format!("{} s", ar.display());
S
Santiago Pastorino 已提交
1147 1148
                cargo
                    .env(format!("AR_{}", target), ar)
1149
                    .env(format!("RANLIB_{}", target), ranlib);
O
Oliver Schneider 已提交
1150
            }
1151

M
Mark Simulacrum 已提交
1152
            if let Ok(cxx) = self.cxx(target) {
1153
                let cxx = ccacheify(&cxx);
S
Santiago Pastorino 已提交
1154 1155
                cargo
                    .env(format!("CXX_{}", target), &cxx)
1156
                    .env(format!("CXXFLAGS_{}", target), cflags);
1157 1158 1159
            }
        }

1160
        if mode == Mode::Std
S
Santiago Pastorino 已提交
1161 1162
            && self.config.extended
            && compiler.is_final_stage(self)
1163
        {
1164 1165 1166 1167 1168
            rustflags.arg("-Zsave-analysis");
            cargo.env("RUST_SAVE_ANALYSIS_CONFIG",
                      "{\"output_file\": null,\"full_docs\": false,\
                       \"pub_only\": true,\"reachable_only\": false,\
                       \"distro_crate\": true,\"signatures\": false,\"borrow_data\": false}");
1169 1170
        }

O
Oliver Schneider 已提交
1171
        // For `cargo doc` invocations, make rustdoc print the Rust version into the docs
1172
        cargo.env("RUSTDOC_CRATE_VERSION", self.rust_version());
O
Oliver Schneider 已提交
1173

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

1179
        // Set this for all builds to make sure doc builds also get it.
1180
        cargo.env("CFG_RELEASE_CHANNEL", &self.config.channel);
1181

1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
        // This one's a bit tricky. As of the time of this writing the compiler
        // links to the `winapi` crate on crates.io. This crate provides raw
        // bindings to Windows system functions, sort of like libc does for
        // Unix. This crate also, however, provides "import libraries" for the
        // MinGW targets. There's an import library per dll in the windows
        // distribution which is what's linked to. These custom import libraries
        // are used because the winapi crate can reference Windows functions not
        // present in the MinGW import libraries.
        //
        // For example MinGW may ship libdbghelp.a, but it may not have
        // references to all the functions in the dbghelp dll. Instead the
        // custom import library for dbghelp in the winapi crates has all this
        // information.
        //
        // Unfortunately for us though the import libraries are linked by
        // default via `-ldylib=winapi_foo`. That is, they're linked with the
        // `dylib` type with a `winapi_` prefix (so the winapi ones don't
        // conflict with the system MinGW ones). This consequently means that
I
Irina Popa 已提交
1200
        // the binaries we ship of things like rustc_codegen_llvm (aka the rustc_codegen_llvm
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
        // DLL) when linked against *again*, for example with procedural macros
        // or plugins, will trigger the propagation logic of `-ldylib`, passing
        // `-lwinapi_foo` to the linker again. This isn't actually available in
        // our distribution, however, so the link fails.
        //
        // To solve this problem we tell winapi to not use its bundled import
        // libraries. This means that it will link to the system MinGW import
        // libraries by default, and the `-ldylib=foo` directives will still get
        // passed to the final linker, but they'll look like `-lfoo` which can
        // be resolved because MinGW has the import library. The downside is we
        // don't get newer functions from Windows, but we don't use any of them
        // anyway.
C
Collins Abitekaniza 已提交
1213
        if !mode.is_tool() {
A
Alex Crichton 已提交
1214 1215
            cargo.env("WINAPI_NO_BUNDLED_LIBRARIES", "1");
        }
1216

C
comex 已提交
1217
        for _ in 1..self.verbosity {
1218 1219
            cargo.arg("-v");
        }
1220

1221 1222 1223
        match (mode, self.config.rust_codegen_units_std, self.config.rust_codegen_units) {
            (Mode::Std, Some(n), _) |
            (_, _, Some(n)) => {
1224
                cargo.env(profile_var("CODEGEN_UNITS"), n.to_string());
1225 1226 1227 1228
            }
            _ => {
                // Don't set anything
            }
1229 1230
        }

O
Oliver Schneider 已提交
1231
        if self.config.rust_optimize {
1232 1233
            // FIXME: cargo bench/install do not accept `--release`
            if cmd != "bench" && cmd != "install" {
O
Oliver Schneider 已提交
1234 1235
                cargo.arg("--release");
            }
1236
        }
1237

M
Mark Simulacrum 已提交
1238
        if self.config.locked_deps {
1239 1240
            cargo.arg("--locked");
        }
M
Mark Simulacrum 已提交
1241
        if self.config.vendor || self.is_sudo {
1242 1243 1244
            cargo.arg("--frozen");
        }

1245
        // Try to use a sysroot-relative bindir, in case it was configured absolutely.
1246
        cargo.env("RUSTC_INSTALL_BINDIR", self.config.bindir_relative());
1247

M
Mark Simulacrum 已提交
1248
        self.ci_env.force_coloring_in_ci(&mut cargo);
1249

1250 1251 1252
        // When we build Rust dylibs they're all intended for intermediate
        // usage, so make sure we pass the -Cprefer-dynamic flag instead of
        // linking all deps statically into the dylib.
A
Alex Crichton 已提交
1253 1254
        if let Mode::Std | Mode::Rustc | Mode::Codegen = mode {
            rustflags.arg("-Cprefer-dynamic");
1255 1256
        }

1257 1258 1259 1260
        Cargo {
            command: cargo,
            rustflags,
        }
1261 1262
    }

V
varkor 已提交
1263
    /// Ensure that a given step is built, returning its output. This will
1264 1265
    /// cache the step, so it is safe (and good!) to call this as often as
    /// needed to ensure that all dependencies are built.
1266
    pub fn ensure<S: Step>(&'a self, step: S) -> S::Output {
1267 1268
        {
            let mut stack = self.stack.borrow_mut();
1269 1270
            for stack_step in stack.iter() {
                // should skip
S
Santiago Pastorino 已提交
1271 1272 1273 1274
                if stack_step
                    .downcast_ref::<S>()
                    .map_or(true, |stack_step| *stack_step != step)
                {
1275
                    continue;
1276
                }
1277
                let mut out = String::new();
1278
                out += &format!("\n\nCycle in build detected when adding {:?}\n", step);
1279 1280 1281 1282 1283
                for el in stack.iter().rev() {
                    out += &format!("\t{:?}\n", el);
                }
                panic!(out);
            }
1284
            if let Some(out) = self.cache.get(&step) {
1285
                self.verbose(&format!("{}c {:?}", "  ".repeat(stack.len()), step));
1286

1287 1288 1289
                {
                    let mut graph = self.graph.borrow_mut();
                    let parent = self.parent.get();
S
Santiago Pastorino 已提交
1290 1291 1292
                    let us = *self
                        .graph_nodes
                        .borrow_mut()
1293 1294 1295 1296 1297 1298 1299
                        .entry(format!("{:?}", step))
                        .or_insert_with(|| graph.add_node(format!("{:?}", step)));
                    if let Some(parent) = parent {
                        graph.add_edge(parent, us, false);
                    }
                }

1300 1301
                return out;
            }
1302
            self.verbose(&format!("{}> {:?}", "  ".repeat(stack.len()), step));
1303
            stack.push(Box::new(step.clone()));
1304
        }
1305

1306 1307 1308 1309 1310
        let prev_parent = self.parent.get();

        {
            let mut graph = self.graph.borrow_mut();
            let parent = self.parent.get();
S
Santiago Pastorino 已提交
1311 1312 1313
            let us = *self
                .graph_nodes
                .borrow_mut()
1314 1315 1316 1317 1318 1319 1320 1321
                .entry(format!("{:?}", step))
                .or_insert_with(|| graph.add_node(format!("{:?}", step)));
            self.parent.set(Some(us));
            if let Some(parent) = parent {
                graph.add_edge(parent, us, true);
            }
        }

1322 1323 1324 1325 1326 1327 1328 1329 1330 1331
        let (out, dur) = {
            let start = Instant::now();
            let zero = Duration::new(0, 0);
            let parent = self.time_spent_on_dependencies.replace(zero);
            let out = step.clone().run(self);
            let dur = start.elapsed();
            let deps = self.time_spent_on_dependencies.replace(parent + dur);
            (out, dur - deps)
        };

1332 1333
        self.parent.set(prev_parent);

1334
        if self.config.print_step_timings && dur > Duration::from_millis(100) {
S
Santiago Pastorino 已提交
1335 1336 1337 1338 1339 1340
            println!(
                "[TIMING] {:?} -- {}.{:03}",
                step,
                dur.as_secs(),
                dur.subsec_nanos() / 1_000_000
            );
1341 1342
        }

1343 1344
        {
            let mut stack = self.stack.borrow_mut();
1345 1346
            let cur_step = stack.pop().expect("step stack empty");
            assert_eq!(cur_step.downcast_ref(), Some(&step));
1347
        }
S
Santiago Pastorino 已提交
1348 1349 1350 1351 1352
        self.verbose(&format!(
            "{}< {:?}",
            "  ".repeat(self.stack.borrow().len()),
            step
        ));
1353 1354
        self.cache.put(step, out.clone());
        out
1355 1356
    }
}
M
Mark Simulacrum 已提交
1357 1358

#[cfg(test)]
C
chansuke 已提交
1359
mod tests;
1360

1361
#[derive(Debug)]
1362 1363 1364
struct Rustflags(String);

impl Rustflags {
1365
    fn new(target: &str) -> Rustflags {
1366
        let mut ret = Rustflags(String::new());
1367

A
Alex Crichton 已提交
1368
        // Inherit `RUSTFLAGS` by default ...
1369
        ret.env("RUSTFLAGS");
1370 1371

        // ... and also handle target-specific env RUSTFLAGS if they're
1372
        // configured.
1373 1374 1375
        let target_specific = format!("CARGO_TARGET_{}_RUSTFLAGS", crate::envify(target));
        ret.env(&target_specific);

A
Alex Crichton 已提交
1376
        ret
1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395
    }

    fn env(&mut self, env: &str) {
        if let Ok(s) = env::var(env) {
            for part in s.split_whitespace() {
                self.arg(part);
            }
        }
    }

    fn arg(&mut self, arg: &str) -> &mut Self {
        assert_eq!(arg.split_whitespace().count(), 1);
        if self.0.len() > 0 {
            self.0.push_str(" ");
        }
        self.0.push_str(arg);
        self
    }
}
1396 1397 1398 1399 1400 1401 1402 1403

#[derive(Debug)]
pub struct Cargo {
    command: Command,
    rustflags: Rustflags,
}

impl Cargo {
1404 1405 1406 1407 1408
    pub fn rustflag(&mut self, arg: &str) -> &mut Cargo {
        self.rustflags.arg(arg);
        self
    }

1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434
    pub fn arg(&mut self, arg: impl AsRef<OsStr>) -> &mut Cargo {
        self.command.arg(arg.as_ref());
        self
    }

    pub fn args<I, S>(&mut self, args: I) -> &mut Cargo
        where I: IntoIterator<Item=S>, S: AsRef<OsStr>
    {
        for arg in args {
            self.arg(arg.as_ref());
        }
        self
    }

    pub fn env(&mut self, key: impl AsRef<OsStr>, value: impl AsRef<OsStr>) -> &mut Cargo {
        self.command.env(key.as_ref(), value.as_ref());
        self
    }
}

impl From<Cargo> for Command {
    fn from(mut cargo: Cargo) -> Command {
        cargo.command.env("RUSTFLAGS", &cargo.rustflags.0);
        cargo.command
    }
}