]> git.proxmox.com Git - rustc.git/blob - src/bootstrap/builder.rs
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / bootstrap / builder.rs
1 use std::any::Any;
2 use std::cell::{Cell, RefCell};
3 use std::collections::BTreeSet;
4 use std::env;
5 use std::ffi::OsStr;
6 use std::fmt::Debug;
7 use std::fs;
8 use std::hash::Hash;
9 use std::ops::Deref;
10 use std::path::{Path, PathBuf};
11 use std::process::Command;
12 use std::time::{Duration, Instant};
13
14 use build_helper::{output, t};
15
16 use crate::cache::{Cache, Interned, INTERNER};
17 use crate::check;
18 use crate::compile;
19 use crate::config::TargetSelection;
20 use crate::dist;
21 use crate::doc;
22 use crate::flags::{Color, Subcommand};
23 use crate::install;
24 use crate::native;
25 use crate::run;
26 use crate::test;
27 use crate::tool::{self, SourceType};
28 use crate::util::{self, add_dylib_path, add_link_lib_path, exe, libdir};
29 use crate::{Build, DocTests, GitRepo, Mode};
30
31 pub use crate::Compiler;
32 // FIXME: replace with std::lazy after it gets stabilized and reaches beta
33 use once_cell::sync::Lazy;
34
35 pub struct Builder<'a> {
36 pub build: &'a Build,
37 pub top_stage: u32,
38 pub kind: Kind,
39 cache: Cache,
40 stack: RefCell<Vec<Box<dyn Any>>>,
41 time_spent_on_dependencies: Cell<Duration>,
42 pub paths: Vec<PathBuf>,
43 }
44
45 impl<'a> Deref for Builder<'a> {
46 type Target = Build;
47
48 fn deref(&self) -> &Self::Target {
49 self.build
50 }
51 }
52
53 pub trait Step: 'static + Clone + Debug + PartialEq + Eq + Hash {
54 /// `PathBuf` when directories are created or to return a `Compiler` once
55 /// it's been assembled.
56 type Output: Clone;
57
58 /// Whether this step is run by default as part of its respective phase.
59 /// `true` here can still be overwritten by `should_run` calling `default_condition`.
60 const DEFAULT: bool = false;
61
62 /// If true, then this rule should be skipped if --target was specified, but --host was not
63 const ONLY_HOSTS: bool = false;
64
65 /// Primary function to execute this rule. Can call `builder.ensure()`
66 /// with other steps to run those.
67 fn run(self, builder: &Builder<'_>) -> Self::Output;
68
69 /// When bootstrap is passed a set of paths, this controls whether this rule
70 /// will execute. However, it does not get called in a "default" context
71 /// when we are not passed any paths; in that case, `make_run` is called
72 /// directly.
73 fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_>;
74
75 /// Builds up a "root" rule, either as a default rule or from a path passed
76 /// to us.
77 ///
78 /// When path is `None`, we are executing in a context where no paths were
79 /// passed. When `./x.py build` is run, for example, this rule could get
80 /// called if it is in the correct list below with a path of `None`.
81 fn make_run(_run: RunConfig<'_>) {
82 // It is reasonable to not have an implementation of make_run for rules
83 // who do not want to get called from the root context. This means that
84 // they are likely dependencies (e.g., sysroot creation) or similar, and
85 // as such calling them from ./x.py isn't logical.
86 unimplemented!()
87 }
88 }
89
90 pub struct RunConfig<'a> {
91 pub builder: &'a Builder<'a>,
92 pub target: TargetSelection,
93 pub path: PathBuf,
94 }
95
96 impl RunConfig<'_> {
97 pub fn build_triple(&self) -> TargetSelection {
98 self.builder.build.build
99 }
100 }
101
102 struct StepDescription {
103 default: bool,
104 only_hosts: bool,
105 should_run: fn(ShouldRun<'_>) -> ShouldRun<'_>,
106 make_run: fn(RunConfig<'_>),
107 name: &'static str,
108 }
109
110 /// Collection of paths used to match a task rule.
111 #[derive(Debug, Clone, PartialOrd, Ord, PartialEq, Eq)]
112 pub enum PathSet {
113 /// A collection of individual paths.
114 ///
115 /// These are generally matched as a path suffix. For example, a
116 /// command-line value of `libstd` will match if `src/libstd` is in the
117 /// set.
118 Set(BTreeSet<PathBuf>),
119 /// A "suite" of paths.
120 ///
121 /// These can match as a path suffix (like `Set`), or as a prefix. For
122 /// example, a command-line value of `src/test/ui/abi/variadic-ffi.rs`
123 /// will match `src/test/ui`. A command-line value of `ui` would also
124 /// match `src/test/ui`.
125 Suite(PathBuf),
126 }
127
128 impl PathSet {
129 fn empty() -> PathSet {
130 PathSet::Set(BTreeSet::new())
131 }
132
133 fn one<P: Into<PathBuf>>(path: P) -> PathSet {
134 let mut set = BTreeSet::new();
135 set.insert(path.into());
136 PathSet::Set(set)
137 }
138
139 fn has(&self, needle: &Path) -> bool {
140 match self {
141 PathSet::Set(set) => set.iter().any(|p| p.ends_with(needle)),
142 PathSet::Suite(suite) => suite.ends_with(needle),
143 }
144 }
145
146 fn path(&self, builder: &Builder<'_>) -> PathBuf {
147 match self {
148 PathSet::Set(set) => set.iter().next().unwrap_or(&builder.build.src).to_path_buf(),
149 PathSet::Suite(path) => PathBuf::from(path),
150 }
151 }
152 }
153
154 impl StepDescription {
155 fn from<S: Step>() -> StepDescription {
156 StepDescription {
157 default: S::DEFAULT,
158 only_hosts: S::ONLY_HOSTS,
159 should_run: S::should_run,
160 make_run: S::make_run,
161 name: std::any::type_name::<S>(),
162 }
163 }
164
165 fn maybe_run(&self, builder: &Builder<'_>, pathset: &PathSet) {
166 if self.is_excluded(builder, pathset) {
167 return;
168 }
169
170 // Determine the targets participating in this rule.
171 let targets = if self.only_hosts { &builder.hosts } else { &builder.targets };
172
173 for target in targets {
174 let run = RunConfig { builder, path: pathset.path(builder), target: *target };
175 (self.make_run)(run);
176 }
177 }
178
179 fn is_excluded(&self, builder: &Builder<'_>, pathset: &PathSet) -> bool {
180 if builder.config.exclude.iter().any(|e| pathset.has(e)) {
181 eprintln!("Skipping {:?} because it is excluded", pathset);
182 return true;
183 }
184
185 if !builder.config.exclude.is_empty() {
186 eprintln!(
187 "{:?} not skipped for {:?} -- not in {:?}",
188 pathset, self.name, builder.config.exclude
189 );
190 }
191 false
192 }
193
194 fn run(v: &[StepDescription], builder: &Builder<'_>, paths: &[PathBuf]) {
195 let should_runs =
196 v.iter().map(|desc| (desc.should_run)(ShouldRun::new(builder))).collect::<Vec<_>>();
197
198 // sanity checks on rules
199 for (desc, should_run) in v.iter().zip(&should_runs) {
200 assert!(
201 !should_run.paths.is_empty(),
202 "{:?} should have at least one pathset",
203 desc.name
204 );
205 }
206
207 if paths.is_empty() || builder.config.include_default_paths {
208 for (desc, should_run) in v.iter().zip(&should_runs) {
209 if desc.default && should_run.is_really_default() {
210 for pathset in &should_run.paths {
211 desc.maybe_run(builder, pathset);
212 }
213 }
214 }
215 }
216
217 for path in paths {
218 // strip CurDir prefix if present
219 let path = match path.strip_prefix(".") {
220 Ok(p) => p,
221 Err(_) => path,
222 };
223
224 let mut attempted_run = false;
225 for (desc, should_run) in v.iter().zip(&should_runs) {
226 if let Some(suite) = should_run.is_suite_path(path) {
227 attempted_run = true;
228 desc.maybe_run(builder, suite);
229 } else if let Some(pathset) = should_run.pathset_for_path(path) {
230 attempted_run = true;
231 desc.maybe_run(builder, pathset);
232 }
233 }
234
235 if !attempted_run {
236 panic!("error: no rules matched {}", path.display());
237 }
238 }
239 }
240 }
241
242 enum ReallyDefault<'a> {
243 Bool(bool),
244 Lazy(Lazy<bool, Box<dyn Fn() -> bool + 'a>>),
245 }
246
247 pub struct ShouldRun<'a> {
248 pub builder: &'a Builder<'a>,
249 // use a BTreeSet to maintain sort order
250 paths: BTreeSet<PathSet>,
251
252 // If this is a default rule, this is an additional constraint placed on
253 // its run. Generally something like compiler docs being enabled.
254 is_really_default: ReallyDefault<'a>,
255 }
256
257 impl<'a> ShouldRun<'a> {
258 fn new(builder: &'a Builder<'_>) -> ShouldRun<'a> {
259 ShouldRun {
260 builder,
261 paths: BTreeSet::new(),
262 is_really_default: ReallyDefault::Bool(true), // by default no additional conditions
263 }
264 }
265
266 pub fn default_condition(mut self, cond: bool) -> Self {
267 self.is_really_default = ReallyDefault::Bool(cond);
268 self
269 }
270
271 pub fn lazy_default_condition(mut self, lazy_cond: Box<dyn Fn() -> bool + 'a>) -> Self {
272 self.is_really_default = ReallyDefault::Lazy(Lazy::new(lazy_cond));
273 self
274 }
275
276 pub fn is_really_default(&self) -> bool {
277 match &self.is_really_default {
278 ReallyDefault::Bool(val) => *val,
279 ReallyDefault::Lazy(lazy) => *lazy.deref(),
280 }
281 }
282
283 /// Indicates it should run if the command-line selects the given crate or
284 /// any of its (local) dependencies.
285 ///
286 /// Compared to `krate`, this treats the dependencies as aliases for the
287 /// same job. Generally it is preferred to use `krate`, and treat each
288 /// individual path separately. For example `./x.py test src/liballoc`
289 /// (which uses `krate`) will test just `liballoc`. However, `./x.py check
290 /// src/liballoc` (which uses `all_krates`) will check all of `libtest`.
291 /// `all_krates` should probably be removed at some point.
292 pub fn all_krates(mut self, name: &str) -> Self {
293 let mut set = BTreeSet::new();
294 for krate in self.builder.in_tree_crates(name, None) {
295 let path = krate.local_path(self.builder);
296 set.insert(path);
297 }
298 self.paths.insert(PathSet::Set(set));
299 self
300 }
301
302 /// Indicates it should run if the command-line selects the given crate or
303 /// any of its (local) dependencies.
304 ///
305 /// `make_run` will be called separately for each matching command-line path.
306 pub fn krate(mut self, name: &str) -> Self {
307 for krate in self.builder.in_tree_crates(name, None) {
308 let path = krate.local_path(self.builder);
309 self.paths.insert(PathSet::one(path));
310 }
311 self
312 }
313
314 // single, non-aliased path
315 pub fn path(self, path: &str) -> Self {
316 self.paths(&[path])
317 }
318
319 // multiple aliases for the same job
320 pub fn paths(mut self, paths: &[&str]) -> Self {
321 self.paths.insert(PathSet::Set(paths.iter().map(PathBuf::from).collect()));
322 self
323 }
324
325 pub fn is_suite_path(&self, path: &Path) -> Option<&PathSet> {
326 self.paths.iter().find(|pathset| match pathset {
327 PathSet::Suite(p) => path.starts_with(p),
328 PathSet::Set(_) => false,
329 })
330 }
331
332 pub fn suite_path(mut self, suite: &str) -> Self {
333 self.paths.insert(PathSet::Suite(PathBuf::from(suite)));
334 self
335 }
336
337 // allows being more explicit about why should_run in Step returns the value passed to it
338 pub fn never(mut self) -> ShouldRun<'a> {
339 self.paths.insert(PathSet::empty());
340 self
341 }
342
343 fn pathset_for_path(&self, path: &Path) -> Option<&PathSet> {
344 self.paths.iter().find(|pathset| pathset.has(path))
345 }
346 }
347
348 #[derive(Copy, Clone, PartialEq, Eq, Debug)]
349 pub enum Kind {
350 Build,
351 Check,
352 Clippy,
353 Fix,
354 Format,
355 Test,
356 Bench,
357 Dist,
358 Doc,
359 Install,
360 Run,
361 }
362
363 impl<'a> Builder<'a> {
364 fn get_step_descriptions(kind: Kind) -> Vec<StepDescription> {
365 macro_rules! describe {
366 ($($rule:ty),+ $(,)?) => {{
367 vec![$(StepDescription::from::<$rule>()),+]
368 }};
369 }
370 match kind {
371 Kind::Build => describe!(
372 compile::Std,
373 compile::Rustc,
374 compile::CodegenBackend,
375 compile::StartupObjects,
376 tool::BuildManifest,
377 tool::Rustbook,
378 tool::ErrorIndex,
379 tool::UnstableBookGen,
380 tool::Tidy,
381 tool::Linkchecker,
382 tool::CargoTest,
383 tool::Compiletest,
384 tool::RemoteTestServer,
385 tool::RemoteTestClient,
386 tool::RustInstaller,
387 tool::Cargo,
388 tool::Rls,
389 tool::RustAnalyzer,
390 tool::RustDemangler,
391 tool::Rustdoc,
392 tool::Clippy,
393 tool::CargoClippy,
394 native::Llvm,
395 native::Sanitizers,
396 tool::Rustfmt,
397 tool::Miri,
398 tool::CargoMiri,
399 native::Lld,
400 native::CrtBeginEnd
401 ),
402 Kind::Check | Kind::Clippy { .. } | Kind::Fix | Kind::Format => describe!(
403 check::Std,
404 check::Rustc,
405 check::Rustdoc,
406 check::CodegenBackend,
407 check::Clippy,
408 check::Miri,
409 check::Rls,
410 check::Rustfmt,
411 check::Bootstrap
412 ),
413 Kind::Test => describe!(
414 crate::toolstate::ToolStateCheck,
415 test::ExpandYamlAnchors,
416 test::Tidy,
417 test::Ui,
418 test::RunPassValgrind,
419 test::MirOpt,
420 test::Codegen,
421 test::CodegenUnits,
422 test::Assembly,
423 test::Incremental,
424 test::Debuginfo,
425 test::UiFullDeps,
426 test::Rustdoc,
427 test::Pretty,
428 test::Crate,
429 test::CrateLibrustc,
430 test::CrateRustdoc,
431 test::CrateRustdocJsonTypes,
432 test::Linkcheck,
433 test::TierCheck,
434 test::Cargotest,
435 test::Cargo,
436 test::Rls,
437 test::ErrorIndex,
438 test::Distcheck,
439 test::RunMakeFullDeps,
440 test::Nomicon,
441 test::Reference,
442 test::RustdocBook,
443 test::RustByExample,
444 test::TheBook,
445 test::UnstableBook,
446 test::RustcBook,
447 test::LintDocs,
448 test::RustcGuide,
449 test::EmbeddedBook,
450 test::EditionGuide,
451 test::Rustfmt,
452 test::Miri,
453 test::Clippy,
454 test::RustDemangler,
455 test::CompiletestTest,
456 test::RustdocJSStd,
457 test::RustdocJSNotStd,
458 test::RustdocGUI,
459 test::RustdocTheme,
460 test::RustdocUi,
461 test::RustdocJson,
462 test::HtmlCheck,
463 // Run bootstrap close to the end as it's unlikely to fail
464 test::Bootstrap,
465 // Run run-make last, since these won't pass without make on Windows
466 test::RunMake,
467 ),
468 Kind::Bench => describe!(test::Crate, test::CrateLibrustc),
469 Kind::Doc => describe!(
470 doc::UnstableBook,
471 doc::UnstableBookGen,
472 doc::TheBook,
473 doc::Standalone,
474 doc::Std,
475 doc::Rustc,
476 doc::Rustdoc,
477 doc::Rustfmt,
478 doc::ErrorIndex,
479 doc::Nomicon,
480 doc::Reference,
481 doc::RustdocBook,
482 doc::RustByExample,
483 doc::RustcBook,
484 doc::CargoBook,
485 doc::EmbeddedBook,
486 doc::EditionGuide,
487 ),
488 Kind::Dist => describe!(
489 dist::Docs,
490 dist::RustcDocs,
491 dist::Mingw,
492 dist::Rustc,
493 dist::DebuggerScripts,
494 dist::Std,
495 dist::RustcDev,
496 dist::Analysis,
497 dist::Src,
498 dist::PlainSourceTarball,
499 dist::Cargo,
500 dist::Rls,
501 dist::RustAnalyzer,
502 dist::Rustfmt,
503 dist::RustDemangler,
504 dist::Clippy,
505 dist::Miri,
506 dist::LlvmTools,
507 dist::RustDev,
508 dist::Extended,
509 dist::BuildManifest,
510 dist::ReproducibleArtifacts,
511 ),
512 Kind::Install => describe!(
513 install::Docs,
514 install::Std,
515 install::Cargo,
516 install::Rls,
517 install::RustAnalyzer,
518 install::Rustfmt,
519 install::RustDemangler,
520 install::Clippy,
521 install::Miri,
522 install::Analysis,
523 install::Src,
524 install::Rustc
525 ),
526 Kind::Run => describe!(run::ExpandYamlAnchors, run::BuildManifest),
527 }
528 }
529
530 pub fn get_help(build: &Build, subcommand: &str) -> Option<String> {
531 let kind = match subcommand {
532 "build" => Kind::Build,
533 "doc" => Kind::Doc,
534 "test" => Kind::Test,
535 "bench" => Kind::Bench,
536 "dist" => Kind::Dist,
537 "install" => Kind::Install,
538 _ => return None,
539 };
540
541 let builder = Self::new_internal(build, kind, vec![]);
542 let builder = &builder;
543 let mut should_run = ShouldRun::new(builder);
544 for desc in Builder::get_step_descriptions(builder.kind) {
545 should_run = (desc.should_run)(should_run);
546 }
547 let mut help = String::from("Available paths:\n");
548 let mut add_path = |path: &Path| {
549 help.push_str(&format!(" ./x.py {} {}\n", subcommand, path.display()));
550 };
551 for pathset in should_run.paths {
552 match pathset {
553 PathSet::Set(set) => {
554 for path in set {
555 add_path(&path);
556 }
557 }
558 PathSet::Suite(path) => {
559 add_path(&path.join("..."));
560 }
561 }
562 }
563 Some(help)
564 }
565
566 fn new_internal(build: &Build, kind: Kind, paths: Vec<PathBuf>) -> Builder<'_> {
567 Builder {
568 build,
569 top_stage: build.config.stage,
570 kind,
571 cache: Cache::new(),
572 stack: RefCell::new(Vec::new()),
573 time_spent_on_dependencies: Cell::new(Duration::new(0, 0)),
574 paths,
575 }
576 }
577
578 pub fn new(build: &Build) -> Builder<'_> {
579 let (kind, paths) = match build.config.cmd {
580 Subcommand::Build { ref paths } => (Kind::Build, &paths[..]),
581 Subcommand::Check { ref paths } => (Kind::Check, &paths[..]),
582 Subcommand::Clippy { ref paths, .. } => (Kind::Clippy, &paths[..]),
583 Subcommand::Fix { ref paths } => (Kind::Fix, &paths[..]),
584 Subcommand::Doc { ref paths, .. } => (Kind::Doc, &paths[..]),
585 Subcommand::Test { ref paths, .. } => (Kind::Test, &paths[..]),
586 Subcommand::Bench { ref paths, .. } => (Kind::Bench, &paths[..]),
587 Subcommand::Dist { ref paths } => (Kind::Dist, &paths[..]),
588 Subcommand::Install { ref paths } => (Kind::Install, &paths[..]),
589 Subcommand::Run { ref paths } => (Kind::Run, &paths[..]),
590 Subcommand::Format { .. } | Subcommand::Clean { .. } | Subcommand::Setup { .. } => {
591 panic!()
592 }
593 };
594
595 Self::new_internal(build, kind, paths.to_owned())
596 }
597
598 pub fn execute_cli(&self) {
599 self.run_step_descriptions(&Builder::get_step_descriptions(self.kind), &self.paths);
600 }
601
602 pub fn default_doc(&self, paths: &[PathBuf]) {
603 self.run_step_descriptions(&Builder::get_step_descriptions(Kind::Doc), paths);
604 }
605
606 /// NOTE: keep this in sync with `rustdoc::clean::utils::doc_rust_lang_org_channel`, or tests will fail on beta/stable.
607 pub fn doc_rust_lang_org_channel(&self) -> String {
608 let channel = match &*self.config.channel {
609 "stable" => &self.version,
610 "beta" => "beta",
611 "nightly" | "dev" => "nightly",
612 // custom build of rustdoc maybe? link to the latest stable docs just in case
613 _ => "stable",
614 };
615 "https://doc.rust-lang.org/".to_owned() + channel
616 }
617
618 fn run_step_descriptions(&self, v: &[StepDescription], paths: &[PathBuf]) {
619 StepDescription::run(v, self, paths);
620 }
621
622 /// Obtain a compiler at a given stage and for a given host. Explicitly does
623 /// not take `Compiler` since all `Compiler` instances are meant to be
624 /// obtained through this function, since it ensures that they are valid
625 /// (i.e., built and assembled).
626 pub fn compiler(&self, stage: u32, host: TargetSelection) -> Compiler {
627 self.ensure(compile::Assemble { target_compiler: Compiler { stage, host } })
628 }
629
630 /// Similar to `compiler`, except handles the full-bootstrap option to
631 /// silently use the stage1 compiler instead of a stage2 compiler if one is
632 /// requested.
633 ///
634 /// Note that this does *not* have the side effect of creating
635 /// `compiler(stage, host)`, unlike `compiler` above which does have such
636 /// a side effect. The returned compiler here can only be used to compile
637 /// new artifacts, it can't be used to rely on the presence of a particular
638 /// sysroot.
639 ///
640 /// See `force_use_stage1` for documentation on what each argument is.
641 pub fn compiler_for(
642 &self,
643 stage: u32,
644 host: TargetSelection,
645 target: TargetSelection,
646 ) -> Compiler {
647 if self.build.force_use_stage1(Compiler { stage, host }, target) {
648 self.compiler(1, self.config.build)
649 } else {
650 self.compiler(stage, host)
651 }
652 }
653
654 pub fn sysroot(&self, compiler: Compiler) -> Interned<PathBuf> {
655 self.ensure(compile::Sysroot { compiler })
656 }
657
658 /// Returns the libdir where the standard library and other artifacts are
659 /// found for a compiler's sysroot.
660 pub fn sysroot_libdir(&self, compiler: Compiler, target: TargetSelection) -> Interned<PathBuf> {
661 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
662 struct Libdir {
663 compiler: Compiler,
664 target: TargetSelection,
665 }
666 impl Step for Libdir {
667 type Output = Interned<PathBuf>;
668
669 fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
670 run.never()
671 }
672
673 fn run(self, builder: &Builder<'_>) -> Interned<PathBuf> {
674 let lib = builder.sysroot_libdir_relative(self.compiler);
675 let sysroot = builder
676 .sysroot(self.compiler)
677 .join(lib)
678 .join("rustlib")
679 .join(self.target.triple)
680 .join("lib");
681 // Avoid deleting the rustlib/ directory we just copied
682 // (in `impl Step for Sysroot`).
683 if !builder.config.download_rustc {
684 let _ = fs::remove_dir_all(&sysroot);
685 t!(fs::create_dir_all(&sysroot));
686 }
687 INTERNER.intern_path(sysroot)
688 }
689 }
690 self.ensure(Libdir { compiler, target })
691 }
692
693 pub fn sysroot_codegen_backends(&self, compiler: Compiler) -> PathBuf {
694 self.sysroot_libdir(compiler, compiler.host).with_file_name("codegen-backends")
695 }
696
697 /// Returns the compiler's libdir where it stores the dynamic libraries that
698 /// it itself links against.
699 ///
700 /// For example this returns `<sysroot>/lib` on Unix and `<sysroot>/bin` on
701 /// Windows.
702 pub fn rustc_libdir(&self, compiler: Compiler) -> PathBuf {
703 if compiler.is_snapshot(self) {
704 self.rustc_snapshot_libdir()
705 } else {
706 match self.config.libdir_relative() {
707 Some(relative_libdir) if compiler.stage >= 1 => {
708 self.sysroot(compiler).join(relative_libdir)
709 }
710 _ => self.sysroot(compiler).join(libdir(compiler.host)),
711 }
712 }
713 }
714
715 /// Returns the compiler's relative libdir where it stores the dynamic libraries that
716 /// it itself links against.
717 ///
718 /// For example this returns `lib` on Unix and `bin` on
719 /// Windows.
720 pub fn libdir_relative(&self, compiler: Compiler) -> &Path {
721 if compiler.is_snapshot(self) {
722 libdir(self.config.build).as_ref()
723 } else {
724 match self.config.libdir_relative() {
725 Some(relative_libdir) if compiler.stage >= 1 => relative_libdir,
726 _ => libdir(compiler.host).as_ref(),
727 }
728 }
729 }
730
731 /// Returns the compiler's relative libdir where the standard library and other artifacts are
732 /// found for a compiler's sysroot.
733 ///
734 /// For example this returns `lib` on Unix and Windows.
735 pub fn sysroot_libdir_relative(&self, compiler: Compiler) -> &Path {
736 match self.config.libdir_relative() {
737 Some(relative_libdir) if compiler.stage >= 1 => relative_libdir,
738 _ if compiler.stage == 0 => &self.build.initial_libdir,
739 _ => Path::new("lib"),
740 }
741 }
742
743 /// Adds the compiler's directory of dynamic libraries to `cmd`'s dynamic
744 /// library lookup path.
745 pub fn add_rustc_lib_path(&self, compiler: Compiler, cmd: &mut Command) {
746 // Windows doesn't need dylib path munging because the dlls for the
747 // compiler live next to the compiler and the system will find them
748 // automatically.
749 if cfg!(windows) {
750 return;
751 }
752
753 let mut dylib_dirs = vec![self.rustc_libdir(compiler)];
754
755 // Ensure that the downloaded LLVM libraries can be found.
756 if self.config.llvm_from_ci {
757 let ci_llvm_lib = self.out.join(&*compiler.host.triple).join("ci-llvm").join("lib");
758 dylib_dirs.push(ci_llvm_lib);
759 }
760
761 add_dylib_path(dylib_dirs, cmd);
762 }
763
764 /// Gets a path to the compiler specified.
765 pub fn rustc(&self, compiler: Compiler) -> PathBuf {
766 if compiler.is_snapshot(self) {
767 self.initial_rustc.clone()
768 } else {
769 self.sysroot(compiler).join("bin").join(exe("rustc", compiler.host))
770 }
771 }
772
773 /// Gets the paths to all of the compiler's codegen backends.
774 fn codegen_backends(&self, compiler: Compiler) -> impl Iterator<Item = PathBuf> {
775 fs::read_dir(self.sysroot_codegen_backends(compiler))
776 .into_iter()
777 .flatten()
778 .filter_map(Result::ok)
779 .map(|entry| entry.path())
780 }
781
782 pub fn rustdoc(&self, compiler: Compiler) -> PathBuf {
783 self.ensure(tool::Rustdoc { compiler })
784 }
785
786 pub fn rustdoc_cmd(&self, compiler: Compiler) -> Command {
787 let mut cmd = Command::new(&self.out.join("bootstrap/debug/rustdoc"));
788 cmd.env("RUSTC_STAGE", compiler.stage.to_string())
789 .env("RUSTC_SYSROOT", self.sysroot(compiler))
790 // Note that this is *not* the sysroot_libdir because rustdoc must be linked
791 // equivalently to rustc.
792 .env("RUSTDOC_LIBDIR", self.rustc_libdir(compiler))
793 .env("CFG_RELEASE_CHANNEL", &self.config.channel)
794 .env("RUSTDOC_REAL", self.rustdoc(compiler))
795 .env("RUSTC_BOOTSTRAP", "1");
796
797 cmd.arg("-Wrustdoc::invalid_codeblock_attributes");
798
799 if self.config.deny_warnings {
800 cmd.arg("-Dwarnings");
801 }
802 cmd.arg("-Znormalize-docs");
803
804 // Remove make-related flags that can cause jobserver problems.
805 cmd.env_remove("MAKEFLAGS");
806 cmd.env_remove("MFLAGS");
807
808 if let Some(linker) = self.linker(compiler.host) {
809 cmd.env("RUSTDOC_LINKER", linker);
810 }
811 if self.is_fuse_ld_lld(compiler.host) {
812 cmd.env("RUSTDOC_FUSE_LD_LLD", "1");
813 }
814 cmd
815 }
816
817 /// Return the path to `llvm-config` for the target, if it exists.
818 ///
819 /// Note that this returns `None` if LLVM is disabled, or if we're in a
820 /// check build or dry-run, where there's no need to build all of LLVM.
821 fn llvm_config(&self, target: TargetSelection) -> Option<PathBuf> {
822 if self.config.llvm_enabled() && self.kind != Kind::Check && !self.config.dry_run {
823 let llvm_config = self.ensure(native::Llvm { target });
824 if llvm_config.is_file() {
825 return Some(llvm_config);
826 }
827 }
828 None
829 }
830
831 /// Prepares an invocation of `cargo` to be run.
832 ///
833 /// This will create a `Command` that represents a pending execution of
834 /// Cargo. This cargo will be configured to use `compiler` as the actual
835 /// rustc compiler, its output will be scoped by `mode`'s output directory,
836 /// it will pass the `--target` flag for the specified `target`, and will be
837 /// executing the Cargo command `cmd`.
838 pub fn cargo(
839 &self,
840 compiler: Compiler,
841 mode: Mode,
842 source_type: SourceType,
843 target: TargetSelection,
844 cmd: &str,
845 ) -> Cargo {
846 let mut cargo = Command::new(&self.initial_cargo);
847 let out_dir = self.stage_out(compiler, mode);
848
849 // Codegen backends are not yet tracked by -Zbinary-dep-depinfo,
850 // so we need to explicitly clear out if they've been updated.
851 for backend in self.codegen_backends(compiler) {
852 self.clear_if_dirty(&out_dir, &backend);
853 }
854
855 if cmd == "doc" || cmd == "rustdoc" {
856 let my_out = match mode {
857 // This is the intended out directory for compiler documentation.
858 Mode::Rustc | Mode::ToolRustc => self.compiler_doc_out(target),
859 Mode::Std => out_dir.join(target.triple).join("doc"),
860 _ => panic!("doc mode {:?} not expected", mode),
861 };
862 let rustdoc = self.rustdoc(compiler);
863 self.clear_if_dirty(&my_out, &rustdoc);
864 }
865
866 cargo.env("CARGO_TARGET_DIR", &out_dir).arg(cmd);
867
868 let profile_var = |name: &str| {
869 let profile = if self.config.rust_optimize { "RELEASE" } else { "DEV" };
870 format!("CARGO_PROFILE_{}_{}", profile, name)
871 };
872
873 // See comment in rustc_llvm/build.rs for why this is necessary, largely llvm-config
874 // needs to not accidentally link to libLLVM in stage0/lib.
875 cargo.env("REAL_LIBRARY_PATH_VAR", &util::dylib_path_var());
876 if let Some(e) = env::var_os(util::dylib_path_var()) {
877 cargo.env("REAL_LIBRARY_PATH", e);
878 }
879
880 // Found with `rg "init_env_logger\("`. If anyone uses `init_env_logger`
881 // from out of tree it shouldn't matter, since x.py is only used for
882 // building in-tree.
883 let color_logs = ["RUSTDOC_LOG_COLOR", "RUSTC_LOG_COLOR", "RUST_LOG_COLOR"];
884 match self.build.config.color {
885 Color::Always => {
886 cargo.arg("--color=always");
887 for log in &color_logs {
888 cargo.env(log, "always");
889 }
890 }
891 Color::Never => {
892 cargo.arg("--color=never");
893 for log in &color_logs {
894 cargo.env(log, "never");
895 }
896 }
897 Color::Auto => {} // nothing to do
898 }
899
900 if cmd != "install" {
901 cargo.arg("--target").arg(target.rustc_target_arg());
902 } else {
903 assert_eq!(target, compiler.host);
904 }
905
906 // Set a flag for `check`/`clippy`/`fix`, so that certain build
907 // scripts can do less work (i.e. not building/requiring LLVM).
908 if cmd == "check" || cmd == "clippy" || cmd == "fix" {
909 // If we've not yet built LLVM, or it's stale, then bust
910 // the rustc_llvm cache. That will always work, even though it
911 // may mean that on the next non-check build we'll need to rebuild
912 // rustc_llvm. But if LLVM is stale, that'll be a tiny amount
913 // of work comparitively, and we'd likely need to rebuild it anyway,
914 // so that's okay.
915 if crate::native::prebuilt_llvm_config(self, target).is_err() {
916 cargo.env("RUST_CHECK", "1");
917 }
918 }
919
920 let stage = if compiler.stage == 0 && self.local_rebuild {
921 // Assume the local-rebuild rustc already has stage1 features.
922 1
923 } else {
924 compiler.stage
925 };
926
927 let mut rustflags = Rustflags::new(target);
928 if stage != 0 {
929 if let Ok(s) = env::var("CARGOFLAGS_NOT_BOOTSTRAP") {
930 cargo.args(s.split_whitespace());
931 }
932 rustflags.env("RUSTFLAGS_NOT_BOOTSTRAP");
933 } else {
934 if let Ok(s) = env::var("CARGOFLAGS_BOOTSTRAP") {
935 cargo.args(s.split_whitespace());
936 }
937 rustflags.env("RUSTFLAGS_BOOTSTRAP");
938 if cmd == "clippy" {
939 // clippy overwrites sysroot if we pass it to cargo.
940 // Pass it directly to clippy instead.
941 // NOTE: this can't be fixed in clippy because we explicitly don't set `RUSTC`,
942 // so it has no way of knowing the sysroot.
943 rustflags.arg("--sysroot");
944 rustflags.arg(
945 self.sysroot(compiler)
946 .as_os_str()
947 .to_str()
948 .expect("sysroot must be valid UTF-8"),
949 );
950 // Only run clippy on a very limited subset of crates (in particular, not build scripts).
951 cargo.arg("-Zunstable-options");
952 // Explicitly does *not* set `--cfg=bootstrap`, since we're using a nightly clippy.
953 let host_version = Command::new("rustc").arg("--version").output().map_err(|_| ());
954 let output = host_version.and_then(|output| {
955 if output.status.success() {
956 Ok(output)
957 } else {
958 Err(())
959 }
960 }).unwrap_or_else(|_| {
961 eprintln!(
962 "error: `x.py clippy` requires a host `rustc` toolchain with the `clippy` component"
963 );
964 eprintln!("help: try `rustup component add clippy`");
965 std::process::exit(1);
966 });
967 if !t!(std::str::from_utf8(&output.stdout)).contains("nightly") {
968 rustflags.arg("--cfg=bootstrap");
969 }
970 } else {
971 rustflags.arg("--cfg=bootstrap");
972 }
973 }
974
975 if self.config.rust_new_symbol_mangling {
976 rustflags.arg("-Zsymbol-mangling-version=v0");
977 }
978
979 // FIXME: It might be better to use the same value for both `RUSTFLAGS` and `RUSTDOCFLAGS`,
980 // but this breaks CI. At the very least, stage0 `rustdoc` needs `--cfg bootstrap`. See
981 // #71458.
982 let mut rustdocflags = rustflags.clone();
983 rustdocflags.propagate_cargo_env("RUSTDOCFLAGS");
984 if stage == 0 {
985 rustdocflags.env("RUSTDOCFLAGS_BOOTSTRAP");
986 } else {
987 rustdocflags.env("RUSTDOCFLAGS_NOT_BOOTSTRAP");
988 }
989
990 if let Ok(s) = env::var("CARGOFLAGS") {
991 cargo.args(s.split_whitespace());
992 }
993
994 match mode {
995 Mode::Std | Mode::ToolBootstrap | Mode::ToolStd => {}
996 Mode::Rustc | Mode::Codegen | Mode::ToolRustc => {
997 // Build proc macros both for the host and the target
998 if target != compiler.host && cmd != "check" {
999 cargo.arg("-Zdual-proc-macros");
1000 rustflags.arg("-Zdual-proc-macros");
1001 }
1002 }
1003 }
1004
1005 // This tells Cargo (and in turn, rustc) to output more complete
1006 // dependency information. Most importantly for rustbuild, this
1007 // includes sysroot artifacts, like libstd, which means that we don't
1008 // need to track those in rustbuild (an error prone process!). This
1009 // feature is currently unstable as there may be some bugs and such, but
1010 // it represents a big improvement in rustbuild's reliability on
1011 // rebuilds, so we're using it here.
1012 //
1013 // For some additional context, see #63470 (the PR originally adding
1014 // this), as well as #63012 which is the tracking issue for this
1015 // feature on the rustc side.
1016 cargo.arg("-Zbinary-dep-depinfo");
1017
1018 cargo.arg("-j").arg(self.jobs().to_string());
1019 // Remove make-related flags to ensure Cargo can correctly set things up
1020 cargo.env_remove("MAKEFLAGS");
1021 cargo.env_remove("MFLAGS");
1022
1023 // FIXME: Temporary fix for https://github.com/rust-lang/cargo/issues/3005
1024 // Force cargo to output binaries with disambiguating hashes in the name
1025 let mut metadata = if compiler.stage == 0 {
1026 // Treat stage0 like a special channel, whether it's a normal prior-
1027 // release rustc or a local rebuild with the same version, so we
1028 // never mix these libraries by accident.
1029 "bootstrap".to_string()
1030 } else {
1031 self.config.channel.to_string()
1032 };
1033 // We want to make sure that none of the dependencies between
1034 // std/test/rustc unify with one another. This is done for weird linkage
1035 // reasons but the gist of the problem is that if librustc, libtest, and
1036 // libstd all depend on libc from crates.io (which they actually do) we
1037 // want to make sure they all get distinct versions. Things get really
1038 // weird if we try to unify all these dependencies right now, namely
1039 // around how many times the library is linked in dynamic libraries and
1040 // such. If rustc were a static executable or if we didn't ship dylibs
1041 // this wouldn't be a problem, but we do, so it is. This is in general
1042 // just here to make sure things build right. If you can remove this and
1043 // things still build right, please do!
1044 match mode {
1045 Mode::Std => metadata.push_str("std"),
1046 // When we're building rustc tools, they're built with a search path
1047 // that contains things built during the rustc build. For example,
1048 // bitflags is built during the rustc build, and is a dependency of
1049 // rustdoc as well. We're building rustdoc in a different target
1050 // directory, though, which means that Cargo will rebuild the
1051 // dependency. When we go on to build rustdoc, we'll look for
1052 // bitflags, and find two different copies: one built during the
1053 // rustc step and one that we just built. This isn't always a
1054 // problem, somehow -- not really clear why -- but we know that this
1055 // fixes things.
1056 Mode::ToolRustc => metadata.push_str("tool-rustc"),
1057 // Same for codegen backends.
1058 Mode::Codegen => metadata.push_str("codegen"),
1059 _ => {}
1060 }
1061 cargo.env("__CARGO_DEFAULT_LIB_METADATA", &metadata);
1062
1063 if cmd == "clippy" {
1064 rustflags.arg("-Zforce-unstable-if-unmarked");
1065 }
1066
1067 rustflags.arg("-Zmacro-backtrace");
1068
1069 let want_rustdoc = self.doc_tests != DocTests::No;
1070
1071 // We synthetically interpret a stage0 compiler used to build tools as a
1072 // "raw" compiler in that it's the exact snapshot we download. Normally
1073 // the stage0 build means it uses libraries build by the stage0
1074 // compiler, but for tools we just use the precompiled libraries that
1075 // we've downloaded
1076 let use_snapshot = mode == Mode::ToolBootstrap;
1077 assert!(!use_snapshot || stage == 0 || self.local_rebuild);
1078
1079 let maybe_sysroot = self.sysroot(compiler);
1080 let sysroot = if use_snapshot { self.rustc_snapshot_sysroot() } else { &maybe_sysroot };
1081 let libdir = self.rustc_libdir(compiler);
1082
1083 // Clear the output directory if the real rustc we're using has changed;
1084 // Cargo cannot detect this as it thinks rustc is bootstrap/debug/rustc.
1085 //
1086 // Avoid doing this during dry run as that usually means the relevant
1087 // compiler is not yet linked/copied properly.
1088 //
1089 // Only clear out the directory if we're compiling std; otherwise, we
1090 // should let Cargo take care of things for us (via depdep info)
1091 if !self.config.dry_run && mode == Mode::Std && cmd == "build" {
1092 self.clear_if_dirty(&out_dir, &self.rustc(compiler));
1093 }
1094
1095 // Customize the compiler we're running. Specify the compiler to cargo
1096 // as our shim and then pass it some various options used to configure
1097 // how the actual compiler itself is called.
1098 //
1099 // These variables are primarily all read by
1100 // src/bootstrap/bin/{rustc.rs,rustdoc.rs}
1101 cargo
1102 .env("RUSTBUILD_NATIVE_DIR", self.native_dir(target))
1103 .env("RUSTC_REAL", self.rustc(compiler))
1104 .env("RUSTC_STAGE", stage.to_string())
1105 .env("RUSTC_SYSROOT", &sysroot)
1106 .env("RUSTC_LIBDIR", &libdir)
1107 .env("RUSTDOC", self.out.join("bootstrap/debug/rustdoc"))
1108 .env(
1109 "RUSTDOC_REAL",
1110 if cmd == "doc" || cmd == "rustdoc" || (cmd == "test" && want_rustdoc) {
1111 self.rustdoc(compiler)
1112 } else {
1113 PathBuf::from("/path/to/nowhere/rustdoc/not/required")
1114 },
1115 )
1116 .env("RUSTC_ERROR_METADATA_DST", self.extended_error_dir())
1117 .env("RUSTC_BREAK_ON_ICE", "1");
1118 // Clippy support is a hack and uses the default `cargo-clippy` in path.
1119 // Don't override RUSTC so that the `cargo-clippy` in path will be run.
1120 if cmd != "clippy" {
1121 cargo.env("RUSTC", self.out.join("bootstrap/debug/rustc"));
1122 }
1123
1124 // Dealing with rpath here is a little special, so let's go into some
1125 // detail. First off, `-rpath` is a linker option on Unix platforms
1126 // which adds to the runtime dynamic loader path when looking for
1127 // dynamic libraries. We use this by default on Unix platforms to ensure
1128 // that our nightlies behave the same on Windows, that is they work out
1129 // of the box. This can be disabled, of course, but basically that's why
1130 // we're gated on RUSTC_RPATH here.
1131 //
1132 // Ok, so the astute might be wondering "why isn't `-C rpath` used
1133 // here?" and that is indeed a good question to ask. This codegen
1134 // option is the compiler's current interface to generating an rpath.
1135 // Unfortunately it doesn't quite suffice for us. The flag currently
1136 // takes no value as an argument, so the compiler calculates what it
1137 // should pass to the linker as `-rpath`. This unfortunately is based on
1138 // the **compile time** directory structure which when building with
1139 // Cargo will be very different than the runtime directory structure.
1140 //
1141 // All that's a really long winded way of saying that if we use
1142 // `-Crpath` then the executables generated have the wrong rpath of
1143 // something like `$ORIGIN/deps` when in fact the way we distribute
1144 // rustc requires the rpath to be `$ORIGIN/../lib`.
1145 //
1146 // So, all in all, to set up the correct rpath we pass the linker
1147 // argument manually via `-C link-args=-Wl,-rpath,...`. Plus isn't it
1148 // fun to pass a flag to a tool to pass a flag to pass a flag to a tool
1149 // to change a flag in a binary?
1150 if self.config.rust_rpath && util::use_host_linker(target) {
1151 let rpath = if target.contains("apple") {
1152 // Note that we need to take one extra step on macOS to also pass
1153 // `-Wl,-instal_name,@rpath/...` to get things to work right. To
1154 // do that we pass a weird flag to the compiler to get it to do
1155 // so. Note that this is definitely a hack, and we should likely
1156 // flesh out rpath support more fully in the future.
1157 rustflags.arg("-Zosx-rpath-install-name");
1158 Some("-Wl,-rpath,@loader_path/../lib")
1159 } else if !target.contains("windows") {
1160 Some("-Wl,-rpath,$ORIGIN/../lib")
1161 } else {
1162 None
1163 };
1164 if let Some(rpath) = rpath {
1165 rustflags.arg(&format!("-Clink-args={}", rpath));
1166 }
1167 }
1168
1169 if let Some(host_linker) = self.linker(compiler.host) {
1170 cargo.env("RUSTC_HOST_LINKER", host_linker);
1171 }
1172 if self.is_fuse_ld_lld(compiler.host) {
1173 cargo.env("RUSTC_HOST_FUSE_LD_LLD", "1");
1174 cargo.env("RUSTDOC_FUSE_LD_LLD", "1");
1175 }
1176
1177 if let Some(target_linker) = self.linker(target) {
1178 let target = crate::envify(&target.triple);
1179 cargo.env(&format!("CARGO_TARGET_{}_LINKER", target), target_linker);
1180 }
1181 if self.is_fuse_ld_lld(target) {
1182 rustflags.arg("-Clink-args=-fuse-ld=lld");
1183 }
1184 self.lld_flags(target).for_each(|flag| {
1185 rustdocflags.arg(&flag);
1186 });
1187
1188 if !(["build", "check", "clippy", "fix", "rustc"].contains(&cmd)) && want_rustdoc {
1189 cargo.env("RUSTDOC_LIBDIR", self.rustc_libdir(compiler));
1190 }
1191
1192 let debuginfo_level = match mode {
1193 Mode::Rustc | Mode::Codegen => self.config.rust_debuginfo_level_rustc,
1194 Mode::Std => self.config.rust_debuginfo_level_std,
1195 Mode::ToolBootstrap | Mode::ToolStd | Mode::ToolRustc => {
1196 self.config.rust_debuginfo_level_tools
1197 }
1198 };
1199 cargo.env(profile_var("DEBUG"), debuginfo_level.to_string());
1200 cargo.env(
1201 profile_var("DEBUG_ASSERTIONS"),
1202 if mode == Mode::Std {
1203 self.config.rust_debug_assertions_std.to_string()
1204 } else {
1205 self.config.rust_debug_assertions.to_string()
1206 },
1207 );
1208 cargo.env(
1209 profile_var("OVERFLOW_CHECKS"),
1210 if mode == Mode::Std {
1211 self.config.rust_overflow_checks_std.to_string()
1212 } else {
1213 self.config.rust_overflow_checks.to_string()
1214 },
1215 );
1216
1217 // `dsymutil` adds time to builds on Apple platforms for no clear benefit, and also makes
1218 // it more difficult for debuggers to find debug info. The compiler currently defaults to
1219 // running `dsymutil` to preserve its historical default, but when compiling the compiler
1220 // itself, we skip it by default since we know it's safe to do so in that case.
1221 // See https://github.com/rust-lang/rust/issues/79361 for more info on this flag.
1222 if target.contains("apple") {
1223 if self.config.rust_run_dsymutil {
1224 rustflags.arg("-Csplit-debuginfo=packed");
1225 } else {
1226 rustflags.arg("-Csplit-debuginfo=unpacked");
1227 }
1228 }
1229
1230 if self.config.cmd.bless() {
1231 // Bless `expect!` tests.
1232 cargo.env("UPDATE_EXPECT", "1");
1233 }
1234
1235 if !mode.is_tool() {
1236 cargo.env("RUSTC_FORCE_UNSTABLE", "1");
1237 }
1238
1239 if let Some(x) = self.crt_static(target) {
1240 if x {
1241 rustflags.arg("-Ctarget-feature=+crt-static");
1242 } else {
1243 rustflags.arg("-Ctarget-feature=-crt-static");
1244 }
1245 }
1246
1247 if let Some(x) = self.crt_static(compiler.host) {
1248 cargo.env("RUSTC_HOST_CRT_STATIC", x.to_string());
1249 }
1250
1251 if let Some(map_to) = self.build.debuginfo_map_to(GitRepo::Rustc) {
1252 let map = format!("{}={}", self.build.src.display(), map_to);
1253 cargo.env("RUSTC_DEBUGINFO_MAP", map);
1254
1255 // `rustc` needs to know the virtual `/rustc/$hash` we're mapping to,
1256 // in order to opportunistically reverse it later.
1257 cargo.env("CFG_VIRTUAL_RUST_SOURCE_BASE_DIR", map_to);
1258 }
1259
1260 // Enable usage of unstable features
1261 cargo.env("RUSTC_BOOTSTRAP", "1");
1262 self.add_rust_test_threads(&mut cargo);
1263
1264 // Almost all of the crates that we compile as part of the bootstrap may
1265 // have a build script, including the standard library. To compile a
1266 // build script, however, it itself needs a standard library! This
1267 // introduces a bit of a pickle when we're compiling the standard
1268 // library itself.
1269 //
1270 // To work around this we actually end up using the snapshot compiler
1271 // (stage0) for compiling build scripts of the standard library itself.
1272 // The stage0 compiler is guaranteed to have a libstd available for use.
1273 //
1274 // For other crates, however, we know that we've already got a standard
1275 // library up and running, so we can use the normal compiler to compile
1276 // build scripts in that situation.
1277 if mode == Mode::Std {
1278 cargo
1279 .env("RUSTC_SNAPSHOT", &self.initial_rustc)
1280 .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_snapshot_libdir());
1281 } else {
1282 cargo
1283 .env("RUSTC_SNAPSHOT", self.rustc(compiler))
1284 .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_libdir(compiler));
1285 }
1286
1287 // Tools that use compiler libraries may inherit the `-lLLVM` link
1288 // requirement, but the `-L` library path is not propagated across
1289 // separate Cargo projects. We can add LLVM's library path to the
1290 // platform-specific environment variable as a workaround.
1291 if mode == Mode::ToolRustc || mode == Mode::Codegen {
1292 if let Some(llvm_config) = self.llvm_config(target) {
1293 let llvm_libdir = output(Command::new(&llvm_config).arg("--libdir"));
1294 add_link_lib_path(vec![llvm_libdir.trim().into()], &mut cargo);
1295 }
1296 }
1297
1298 // Compile everything except libraries and proc macros with the more
1299 // efficient initial-exec TLS model. This doesn't work with `dlopen`,
1300 // so we can't use it by default in general, but we can use it for tools
1301 // and our own internal libraries.
1302 if !mode.must_support_dlopen() && !target.triple.starts_with("powerpc-") {
1303 rustflags.arg("-Ztls-model=initial-exec");
1304 }
1305
1306 if self.config.incremental {
1307 cargo.env("CARGO_INCREMENTAL", "1");
1308 } else {
1309 // Don't rely on any default setting for incr. comp. in Cargo
1310 cargo.env("CARGO_INCREMENTAL", "0");
1311 }
1312
1313 if let Some(ref on_fail) = self.config.on_fail {
1314 cargo.env("RUSTC_ON_FAIL", on_fail);
1315 }
1316
1317 if self.config.print_step_timings {
1318 cargo.env("RUSTC_PRINT_STEP_TIMINGS", "1");
1319 }
1320
1321 if self.config.print_step_rusage {
1322 cargo.env("RUSTC_PRINT_STEP_RUSAGE", "1");
1323 }
1324
1325 if self.config.backtrace_on_ice {
1326 cargo.env("RUSTC_BACKTRACE_ON_ICE", "1");
1327 }
1328
1329 cargo.env("RUSTC_VERBOSE", self.verbosity.to_string());
1330
1331 if source_type == SourceType::InTree {
1332 let mut lint_flags = Vec::new();
1333 // When extending this list, add the new lints to the RUSTFLAGS of the
1334 // build_bootstrap function of src/bootstrap/bootstrap.py as well as
1335 // some code doesn't go through this `rustc` wrapper.
1336 lint_flags.push("-Wrust_2018_idioms");
1337 lint_flags.push("-Wunused_lifetimes");
1338 lint_flags.push("-Wsemicolon_in_expressions_from_macros");
1339
1340 if self.config.deny_warnings {
1341 lint_flags.push("-Dwarnings");
1342 rustdocflags.arg("-Dwarnings");
1343 }
1344
1345 // FIXME(#58633) hide "unused attribute" errors in incremental
1346 // builds of the standard library, as the underlying checks are
1347 // not yet properly integrated with incremental recompilation.
1348 if mode == Mode::Std && compiler.stage == 0 && self.config.incremental {
1349 lint_flags.push("-Aunused-attributes");
1350 }
1351 // This does not use RUSTFLAGS due to caching issues with Cargo.
1352 // Clippy is treated as an "in tree" tool, but shares the same
1353 // cache as other "submodule" tools. With these options set in
1354 // RUSTFLAGS, that causes *every* shared dependency to be rebuilt.
1355 // By injecting this into the rustc wrapper, this circumvents
1356 // Cargo's fingerprint detection. This is fine because lint flags
1357 // are always ignored in dependencies. Eventually this should be
1358 // fixed via better support from Cargo.
1359 cargo.env("RUSTC_LINT_FLAGS", lint_flags.join(" "));
1360
1361 rustdocflags.arg("-Wrustdoc::invalid_codeblock_attributes");
1362 }
1363
1364 if mode == Mode::Rustc {
1365 rustflags.arg("-Zunstable-options");
1366 rustflags.arg("-Wrustc::internal");
1367 }
1368
1369 // Throughout the build Cargo can execute a number of build scripts
1370 // compiling C/C++ code and we need to pass compilers, archivers, flags, etc
1371 // obtained previously to those build scripts.
1372 // Build scripts use either the `cc` crate or `configure/make` so we pass
1373 // the options through environment variables that are fetched and understood by both.
1374 //
1375 // FIXME: the guard against msvc shouldn't need to be here
1376 if target.contains("msvc") {
1377 if let Some(ref cl) = self.config.llvm_clang_cl {
1378 cargo.env("CC", cl).env("CXX", cl);
1379 }
1380 } else {
1381 let ccache = self.config.ccache.as_ref();
1382 let ccacheify = |s: &Path| {
1383 let ccache = match ccache {
1384 Some(ref s) => s,
1385 None => return s.display().to_string(),
1386 };
1387 // FIXME: the cc-rs crate only recognizes the literal strings
1388 // `ccache` and `sccache` when doing caching compilations, so we
1389 // mirror that here. It should probably be fixed upstream to
1390 // accept a new env var or otherwise work with custom ccache
1391 // vars.
1392 match &ccache[..] {
1393 "ccache" | "sccache" => format!("{} {}", ccache, s.display()),
1394 _ => s.display().to_string(),
1395 }
1396 };
1397 let cc = ccacheify(&self.cc(target));
1398 cargo.env(format!("CC_{}", target.triple), &cc);
1399
1400 let cflags = self.cflags(target, GitRepo::Rustc).join(" ");
1401 cargo.env(format!("CFLAGS_{}", target.triple), &cflags);
1402
1403 if let Some(ar) = self.ar(target) {
1404 let ranlib = format!("{} s", ar.display());
1405 cargo
1406 .env(format!("AR_{}", target.triple), ar)
1407 .env(format!("RANLIB_{}", target.triple), ranlib);
1408 }
1409
1410 if let Ok(cxx) = self.cxx(target) {
1411 let cxx = ccacheify(&cxx);
1412 cargo
1413 .env(format!("CXX_{}", target.triple), &cxx)
1414 .env(format!("CXXFLAGS_{}", target.triple), cflags);
1415 }
1416 }
1417
1418 if mode == Mode::Std && self.config.extended && compiler.is_final_stage(self) {
1419 rustflags.arg("-Zsave-analysis");
1420 cargo.env(
1421 "RUST_SAVE_ANALYSIS_CONFIG",
1422 "{\"output_file\": null,\"full_docs\": false,\
1423 \"pub_only\": true,\"reachable_only\": false,\
1424 \"distro_crate\": true,\"signatures\": false,\"borrow_data\": false}",
1425 );
1426 }
1427
1428 // If Control Flow Guard is enabled, pass the `control-flow-guard` flag to rustc
1429 // when compiling the standard library, since this might be linked into the final outputs
1430 // produced by rustc. Since this mitigation is only available on Windows, only enable it
1431 // for the standard library in case the compiler is run on a non-Windows platform.
1432 // This is not needed for stage 0 artifacts because these will only be used for building
1433 // the stage 1 compiler.
1434 if cfg!(windows)
1435 && mode == Mode::Std
1436 && self.config.control_flow_guard
1437 && compiler.stage >= 1
1438 {
1439 rustflags.arg("-Ccontrol-flow-guard");
1440 }
1441
1442 // For `cargo doc` invocations, make rustdoc print the Rust version into the docs
1443 // This replaces spaces with newlines because RUSTDOCFLAGS does not
1444 // support arguments with regular spaces. Hopefully someday Cargo will
1445 // have space support.
1446 let rust_version = self.rust_version().replace(' ', "\n");
1447 rustdocflags.arg("--crate-version").arg(&rust_version);
1448
1449 // Environment variables *required* throughout the build
1450 //
1451 // FIXME: should update code to not require this env var
1452 cargo.env("CFG_COMPILER_HOST_TRIPLE", target.triple);
1453
1454 // Set this for all builds to make sure doc builds also get it.
1455 cargo.env("CFG_RELEASE_CHANNEL", &self.config.channel);
1456
1457 // This one's a bit tricky. As of the time of this writing the compiler
1458 // links to the `winapi` crate on crates.io. This crate provides raw
1459 // bindings to Windows system functions, sort of like libc does for
1460 // Unix. This crate also, however, provides "import libraries" for the
1461 // MinGW targets. There's an import library per dll in the windows
1462 // distribution which is what's linked to. These custom import libraries
1463 // are used because the winapi crate can reference Windows functions not
1464 // present in the MinGW import libraries.
1465 //
1466 // For example MinGW may ship libdbghelp.a, but it may not have
1467 // references to all the functions in the dbghelp dll. Instead the
1468 // custom import library for dbghelp in the winapi crates has all this
1469 // information.
1470 //
1471 // Unfortunately for us though the import libraries are linked by
1472 // default via `-ldylib=winapi_foo`. That is, they're linked with the
1473 // `dylib` type with a `winapi_` prefix (so the winapi ones don't
1474 // conflict with the system MinGW ones). This consequently means that
1475 // the binaries we ship of things like rustc_codegen_llvm (aka the rustc_codegen_llvm
1476 // DLL) when linked against *again*, for example with procedural macros
1477 // or plugins, will trigger the propagation logic of `-ldylib`, passing
1478 // `-lwinapi_foo` to the linker again. This isn't actually available in
1479 // our distribution, however, so the link fails.
1480 //
1481 // To solve this problem we tell winapi to not use its bundled import
1482 // libraries. This means that it will link to the system MinGW import
1483 // libraries by default, and the `-ldylib=foo` directives will still get
1484 // passed to the final linker, but they'll look like `-lfoo` which can
1485 // be resolved because MinGW has the import library. The downside is we
1486 // don't get newer functions from Windows, but we don't use any of them
1487 // anyway.
1488 if !mode.is_tool() {
1489 cargo.env("WINAPI_NO_BUNDLED_LIBRARIES", "1");
1490 }
1491
1492 for _ in 1..self.verbosity {
1493 cargo.arg("-v");
1494 }
1495
1496 match (mode, self.config.rust_codegen_units_std, self.config.rust_codegen_units) {
1497 (Mode::Std, Some(n), _) | (_, _, Some(n)) => {
1498 cargo.env(profile_var("CODEGEN_UNITS"), n.to_string());
1499 }
1500 _ => {
1501 // Don't set anything
1502 }
1503 }
1504
1505 if self.config.rust_optimize {
1506 // FIXME: cargo bench/install do not accept `--release`
1507 if cmd != "bench" && cmd != "install" {
1508 cargo.arg("--release");
1509 }
1510 }
1511
1512 if self.config.locked_deps {
1513 cargo.arg("--locked");
1514 }
1515 if self.config.vendor || self.is_sudo {
1516 cargo.arg("--frozen");
1517 }
1518
1519 // Try to use a sysroot-relative bindir, in case it was configured absolutely.
1520 cargo.env("RUSTC_INSTALL_BINDIR", self.config.bindir_relative());
1521
1522 self.ci_env.force_coloring_in_ci(&mut cargo);
1523
1524 // When we build Rust dylibs they're all intended for intermediate
1525 // usage, so make sure we pass the -Cprefer-dynamic flag instead of
1526 // linking all deps statically into the dylib.
1527 if matches!(mode, Mode::Std | Mode::Rustc) {
1528 rustflags.arg("-Cprefer-dynamic");
1529 }
1530
1531 // When building incrementally we default to a lower ThinLTO import limit
1532 // (unless explicitly specified otherwise). This will produce a somewhat
1533 // slower code but give way better compile times.
1534 {
1535 let limit = match self.config.rust_thin_lto_import_instr_limit {
1536 Some(limit) => Some(limit),
1537 None if self.config.incremental => Some(10),
1538 _ => None,
1539 };
1540
1541 if let Some(limit) = limit {
1542 rustflags.arg(&format!("-Cllvm-args=-import-instr-limit={}", limit));
1543 }
1544 }
1545
1546 Cargo { command: cargo, rustflags, rustdocflags }
1547 }
1548
1549 /// Ensure that a given step is built, returning its output. This will
1550 /// cache the step, so it is safe (and good!) to call this as often as
1551 /// needed to ensure that all dependencies are built.
1552 pub fn ensure<S: Step>(&'a self, step: S) -> S::Output {
1553 {
1554 let mut stack = self.stack.borrow_mut();
1555 for stack_step in stack.iter() {
1556 // should skip
1557 if stack_step.downcast_ref::<S>().map_or(true, |stack_step| *stack_step != step) {
1558 continue;
1559 }
1560 let mut out = String::new();
1561 out += &format!("\n\nCycle in build detected when adding {:?}\n", step);
1562 for el in stack.iter().rev() {
1563 out += &format!("\t{:?}\n", el);
1564 }
1565 panic!("{}", out);
1566 }
1567 if let Some(out) = self.cache.get(&step) {
1568 self.verbose(&format!("{}c {:?}", " ".repeat(stack.len()), step));
1569
1570 return out;
1571 }
1572 self.verbose(&format!("{}> {:?}", " ".repeat(stack.len()), step));
1573 stack.push(Box::new(step.clone()));
1574 }
1575
1576 let (out, dur) = {
1577 let start = Instant::now();
1578 let zero = Duration::new(0, 0);
1579 let parent = self.time_spent_on_dependencies.replace(zero);
1580 let out = step.clone().run(self);
1581 let dur = start.elapsed();
1582 let deps = self.time_spent_on_dependencies.replace(parent + dur);
1583 (out, dur - deps)
1584 };
1585
1586 if self.config.print_step_timings && !self.config.dry_run {
1587 println!("[TIMING] {:?} -- {}.{:03}", step, dur.as_secs(), dur.subsec_millis());
1588 }
1589
1590 {
1591 let mut stack = self.stack.borrow_mut();
1592 let cur_step = stack.pop().expect("step stack empty");
1593 assert_eq!(cur_step.downcast_ref(), Some(&step));
1594 }
1595 self.verbose(&format!("{}< {:?}", " ".repeat(self.stack.borrow().len()), step));
1596 self.cache.put(step, out.clone());
1597 out
1598 }
1599
1600 /// Ensure that a given step is built *only if it's supposed to be built by default*, returning
1601 /// its output. This will cache the step, so it's safe (and good!) to call this as often as
1602 /// needed to ensure that all dependencies are build.
1603 pub(crate) fn ensure_if_default<T, S: Step<Output = Option<T>>>(
1604 &'a self,
1605 step: S,
1606 ) -> S::Output {
1607 let desc = StepDescription::from::<S>();
1608 let should_run = (desc.should_run)(ShouldRun::new(self));
1609
1610 // Avoid running steps contained in --exclude
1611 for pathset in &should_run.paths {
1612 if desc.is_excluded(self, pathset) {
1613 return None;
1614 }
1615 }
1616
1617 // Only execute if it's supposed to run as default
1618 if desc.default && should_run.is_really_default() { self.ensure(step) } else { None }
1619 }
1620 }
1621
1622 #[cfg(test)]
1623 mod tests;
1624
1625 #[derive(Debug, Clone)]
1626 struct Rustflags(String, TargetSelection);
1627
1628 impl Rustflags {
1629 fn new(target: TargetSelection) -> Rustflags {
1630 let mut ret = Rustflags(String::new(), target);
1631 ret.propagate_cargo_env("RUSTFLAGS");
1632 ret
1633 }
1634
1635 /// By default, cargo will pick up on various variables in the environment. However, bootstrap
1636 /// reuses those variables to pass additional flags to rustdoc, so by default they get overriden.
1637 /// Explicitly add back any previous value in the environment.
1638 ///
1639 /// `prefix` is usually `RUSTFLAGS` or `RUSTDOCFLAGS`.
1640 fn propagate_cargo_env(&mut self, prefix: &str) {
1641 // Inherit `RUSTFLAGS` by default ...
1642 self.env(prefix);
1643
1644 // ... and also handle target-specific env RUSTFLAGS if they're configured.
1645 let target_specific = format!("CARGO_TARGET_{}_{}", crate::envify(&self.1.triple), prefix);
1646 self.env(&target_specific);
1647 }
1648
1649 fn env(&mut self, env: &str) {
1650 if let Ok(s) = env::var(env) {
1651 for part in s.split(' ') {
1652 self.arg(part);
1653 }
1654 }
1655 }
1656
1657 fn arg(&mut self, arg: &str) -> &mut Self {
1658 assert_eq!(arg.split(' ').count(), 1);
1659 if !self.0.is_empty() {
1660 self.0.push(' ');
1661 }
1662 self.0.push_str(arg);
1663 self
1664 }
1665 }
1666
1667 #[derive(Debug)]
1668 pub struct Cargo {
1669 command: Command,
1670 rustflags: Rustflags,
1671 rustdocflags: Rustflags,
1672 }
1673
1674 impl Cargo {
1675 pub fn rustdocflag(&mut self, arg: &str) -> &mut Cargo {
1676 self.rustdocflags.arg(arg);
1677 self
1678 }
1679 pub fn rustflag(&mut self, arg: &str) -> &mut Cargo {
1680 self.rustflags.arg(arg);
1681 self
1682 }
1683
1684 pub fn arg(&mut self, arg: impl AsRef<OsStr>) -> &mut Cargo {
1685 self.command.arg(arg.as_ref());
1686 self
1687 }
1688
1689 pub fn args<I, S>(&mut self, args: I) -> &mut Cargo
1690 where
1691 I: IntoIterator<Item = S>,
1692 S: AsRef<OsStr>,
1693 {
1694 for arg in args {
1695 self.arg(arg.as_ref());
1696 }
1697 self
1698 }
1699
1700 pub fn env(&mut self, key: impl AsRef<OsStr>, value: impl AsRef<OsStr>) -> &mut Cargo {
1701 // These are managed through rustflag/rustdocflag interfaces.
1702 assert_ne!(key.as_ref(), "RUSTFLAGS");
1703 assert_ne!(key.as_ref(), "RUSTDOCFLAGS");
1704 self.command.env(key.as_ref(), value.as_ref());
1705 self
1706 }
1707
1708 pub fn add_rustc_lib_path(&mut self, builder: &Builder<'_>, compiler: Compiler) {
1709 builder.add_rustc_lib_path(compiler, &mut self.command);
1710 }
1711
1712 pub fn current_dir(&mut self, dir: &Path) -> &mut Cargo {
1713 self.command.current_dir(dir);
1714 self
1715 }
1716 }
1717
1718 impl From<Cargo> for Command {
1719 fn from(mut cargo: Cargo) -> Command {
1720 let rustflags = &cargo.rustflags.0;
1721 if !rustflags.is_empty() {
1722 cargo.command.env("RUSTFLAGS", rustflags);
1723 }
1724
1725 let rustdocflags = &cargo.rustdocflags.0;
1726 if !rustdocflags.is_empty() {
1727 cargo.command.env("RUSTDOCFLAGS", rustdocflags);
1728 }
1729
1730 cargo.command
1731 }
1732 }