Skip to main content

bootstrap/core/build_steps/
compile.rs

1//! Implementation of compiling various phases of the compiler and standard
2//! library.
3//!
4//! This module contains some of the real meat in the bootstrap build system
5//! which is where Cargo is used to compile the standard library, libtest, and
6//! the compiler. This module is also responsible for assembling the sysroot as it
7//! goes along from the output of the previous stage.
8
9use std::borrow::Cow;
10use std::collections::{BTreeMap, HashMap, HashSet};
11use std::ffi::OsStr;
12use std::io::BufReader;
13use std::io::prelude::*;
14use std::path::{Path, PathBuf};
15use std::time::SystemTime;
16use std::{env, fs, str};
17
18use serde_derive::Deserialize;
19#[cfg(feature = "tracing")]
20use tracing::span;
21
22use crate::core::backend::CodegenBackendKind;
23use crate::core::build_steps::gcc::{Gcc, GccOutput, GccTargetPair};
24use crate::core::build_steps::llvm::{LlvmFromCi, LlvmKind, prebuilt_llvm_output};
25use crate::core::build_steps::tool::{RustcPrivateCompilers, SourceType, copy_lld_artifacts};
26use crate::core::build_steps::{dist, llvm};
27use crate::core::builder::{
28    self, Builder, Cargo, CommandLineStep, Kind, RunConfig, ShouldRun, Step, StepMetadata,
29    apply_pgo, crate_description,
30};
31use crate::core::compiler::Compiler;
32use crate::core::config::toml::target::DefaultLinuxLinkerOverride;
33use crate::core::config::{
34    Allocator, CompilerBuiltins, DebuginfoLevel, LlvmLibunwind, RustcLto, TargetSelection,
35};
36use crate::core::session::{CLang, DependencyType, FileType, Mode};
37use crate::utils::build_stamp;
38use crate::utils::build_stamp::BuildStamp;
39use crate::utils::exec::command;
40use crate::utils::helpers::{
41    self, exe, get_clang_cl_resource_dir, is_debug_info, is_dylib, symlink_dir, t, up_to_date,
42};
43use crate::{debug, trace};
44
45/// Build a standard library for the given `target` using the given `build_compiler`.
46#[derive(Debug, Clone, PartialEq, Eq, Hash)]
47pub struct Std {
48    pub target: TargetSelection,
49    /// Compiler that builds the standard library.
50    pub build_compiler: Compiler,
51    /// Whether to build only a subset of crates in the standard library.
52    ///
53    /// This shouldn't be used from other steps; see the comment on [`Rustc`].
54    crates: Vec<String>,
55    /// When using download-rustc, we need to use a new build of `std` for running unit tests of Std itself,
56    /// but we need to use the downloaded copy of std for linking to rustdoc. Allow this to be overridden by `builder.ensure` from other steps.
57    force_recompile: bool,
58    extra_rust_args: &'static [&'static str],
59    is_for_mir_opt_tests: bool,
60}
61
62impl Std {
63    pub fn new(build_compiler: Compiler, target: TargetSelection) -> Self {
64        Self {
65            target,
66            build_compiler,
67            crates: Default::default(),
68            force_recompile: false,
69            extra_rust_args: &[],
70            is_for_mir_opt_tests: false,
71        }
72    }
73
74    pub fn force_recompile(mut self, force_recompile: bool) -> Self {
75        self.force_recompile = force_recompile;
76        self
77    }
78
79    #[expect(clippy::wrong_self_convention)]
80    pub fn is_for_mir_opt_tests(mut self, is_for_mir_opt_tests: bool) -> Self {
81        self.is_for_mir_opt_tests = is_for_mir_opt_tests;
82        self
83    }
84
85    pub fn extra_rust_args(mut self, extra_rust_args: &'static [&'static str]) -> Self {
86        self.extra_rust_args = extra_rust_args;
87        self
88    }
89
90    fn copy_extra_objects(
91        &self,
92        builder: &Builder<'_>,
93        compiler: &Compiler,
94        target: TargetSelection,
95    ) -> Vec<(PathBuf, DependencyType)> {
96        let mut deps = Vec::new();
97        if !self.is_for_mir_opt_tests {
98            deps.extend(copy_third_party_objects(builder, compiler, target));
99            deps.extend(copy_self_contained_objects(builder, compiler, target));
100        }
101        deps
102    }
103
104    /// Returns true if the standard library should be uplifted from stage 1.
105    ///
106    /// Uplifting is enabled if we're building a stage2+ libstd and full bootstrap is
107    /// disabled.
108    pub fn should_be_uplifted_from_stage_1(builder: &Builder<'_>, stage: u32) -> bool {
109        stage > 1 && !builder.config.full_bootstrap
110    }
111}
112
113impl CommandLineStep for Std {
114    /// Build stamp of std, if it was indeed built or uplifted.
115    type Output = Option<BuildStamp>;
116
117    fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
118        run.crate_or_deps("sysroot").path("library")
119    }
120
121    fn is_default_step(_builder: &Builder<'_>) -> bool {
122        true
123    }
124
125    fn make_run(run: RunConfig<'_>) {
126        let crates = std_crates_for_make_run(&run);
127        let builder = run.builder;
128
129        // Force compilation of the standard library from source if the `library` is modified. This allows
130        // library team to compile the standard library without needing to compile the compiler with
131        // the `rust.download-rustc=true` option.
132        let force_recompile = builder.rust_info().is_managed_git_subrepository()
133            && builder.download_rustc()
134            && builder.config.has_changes_from_upstream(&["library"]);
135
136        trace!("is managed git repo: {}", builder.rust_info().is_managed_git_subrepository());
137        trace!("download_rustc: {}", builder.download_rustc());
138        trace!(force_recompile);
139
140        run.builder.ensure(Std {
141            // Note: we don't use compiler_for_std here, so that `x build library --stage 2`
142            // builds a stage2 rustc.
143            build_compiler: run.builder.compiler(run.builder.top_stage, builder.host_target),
144            target: run.target,
145            crates,
146            force_recompile,
147            extra_rust_args: &[],
148            is_for_mir_opt_tests: false,
149        });
150    }
151
152    /// Builds the standard library.
153    ///
154    /// This will build the standard library for a particular stage of the build
155    /// using the `compiler` targeting the `target` architecture. The artifacts
156    /// created will also be linked into the sysroot directory.
157    fn run(self, builder: &Builder<'_>) -> Self::Output {
158        let target = self.target;
159
160        // In most cases, we already have the std ready to be used for stage 0.
161        // However, if we are doing a local rebuild (so the build compiler can compile the standard
162        // library even on stage 0), and we're cross-compiling (so the stage0 standard library for
163        // *target* is not available), we still allow the stdlib to be built here.
164        if self.build_compiler.stage == 0
165            && !(builder.local_rebuild && target != builder.host_target)
166        {
167            let compiler = self.build_compiler;
168            builder.ensure(StdLink::from_std(self, compiler));
169
170            return None;
171        }
172
173        let build_compiler = if builder.download_rustc() && self.force_recompile {
174            // When there are changes in the library tree with CI-rustc, we want to build
175            // the stageN library and that requires using stageN-1 compiler.
176            builder
177                .compiler(self.build_compiler.stage.saturating_sub(1), builder.config.host_target)
178        } else {
179            self.build_compiler
180        };
181
182        // When using `download-rustc`, we already have artifacts for the host available. Don't
183        // recompile them.
184        if builder.download_rustc()
185            && builder.config.is_host_target(target)
186            && !self.force_recompile
187        {
188            let sysroot =
189                builder.ensure(Sysroot { compiler: build_compiler, force_recompile: false });
190            cp_rustc_component_to_ci_sysroot(
191                builder,
192                &sysroot,
193                builder.config.ci_rust_std_contents(),
194            );
195            return None;
196        }
197
198        if builder.config.keep_stage.contains(&build_compiler.stage)
199            || builder.config.keep_stage_std.contains(&build_compiler.stage)
200        {
201            trace!(keep_stage = ?builder.config.keep_stage);
202            trace!(keep_stage_std = ?builder.config.keep_stage_std);
203
204            builder.info("WARNING: Using a potentially old libstd. This may not behave well.");
205
206            builder.ensure(StartupObjects { compiler: build_compiler, target });
207
208            self.copy_extra_objects(builder, &build_compiler, target);
209
210            builder.ensure(StdLink::from_std(self, build_compiler));
211            return Some(build_stamp::libstd_stamp(builder, build_compiler, target));
212        }
213
214        let mut target_deps = builder.ensure(StartupObjects { compiler: build_compiler, target });
215
216        // Stage of the stdlib that we're building
217        let stage = build_compiler.stage;
218
219        if Self::should_be_uplifted_from_stage_1(builder, build_compiler.stage) {
220            let build_compiler_for_std_to_uplift = builder.compiler(1, builder.host_target);
221            let stage_1_stamp = builder.std(build_compiler_for_std_to_uplift, target);
222
223            let msg = if build_compiler_for_std_to_uplift.host == target {
224                format!(
225                    "Uplifting library (stage{} -> stage{stage})",
226                    build_compiler_for_std_to_uplift.stage
227                )
228            } else {
229                format!(
230                    "Uplifting library (stage{}:{} -> stage{stage}:{target})",
231                    build_compiler_for_std_to_uplift.stage, build_compiler_for_std_to_uplift.host,
232                )
233            };
234
235            builder.info(&msg);
236
237            // Even if we're not building std this stage, the new sysroot must
238            // still contain the third party objects needed by various targets.
239            self.copy_extra_objects(builder, &build_compiler, target);
240
241            builder.ensure(StdLink::from_std(self, build_compiler_for_std_to_uplift));
242            return stage_1_stamp;
243        }
244
245        target_deps.extend(self.copy_extra_objects(builder, &build_compiler, target));
246
247        // We build a sysroot for mir-opt tests using the same trick that Miri does: A check build
248        // with -Zalways-encode-mir. This frees us from the need to have a target linker, and the
249        // fact that this is a check build integrates nicely with run_cargo.
250        let mut cargo = if self.is_for_mir_opt_tests {
251            trace!("building special sysroot for mir-opt tests");
252            let mut cargo = builder::Cargo::new_for_mir_opt_tests(
253                builder,
254                build_compiler,
255                Mode::Std,
256                SourceType::InTree,
257                target,
258                Kind::Check,
259            );
260            cargo.rustflag("-Zalways-encode-mir");
261            cargo.arg("--manifest-path").arg(builder.src.join("library/sysroot/Cargo.toml"));
262            cargo
263        } else {
264            trace!("building regular sysroot");
265            let mut cargo = builder::Cargo::new(
266                builder,
267                build_compiler,
268                Mode::Std,
269                SourceType::InTree,
270                target,
271                Kind::Build,
272            );
273            std_cargo(builder, target, &mut cargo, &self.crates);
274            cargo
275        };
276
277        // See src/bootstrap/synthetic_targets.rs
278        if target.is_synthetic() {
279            cargo.env("RUSTC_BOOTSTRAP_SYNTHETIC_TARGET", "1");
280        }
281        for rustflag in self.extra_rust_args.iter() {
282            cargo.rustflag(rustflag);
283        }
284
285        let _guard = builder.msg(
286            Kind::Build,
287            format_args!("library artifacts{}", crate_description(&self.crates)),
288            Mode::Std,
289            build_compiler,
290            target,
291        );
292
293        let stamp = build_stamp::libstd_stamp(builder, build_compiler, target);
294        run_cargo(
295            builder,
296            cargo,
297            vec![],
298            &stamp,
299            target_deps,
300            if self.is_for_mir_opt_tests {
301                ArtifactKeepMode::OnlyRmeta
302            } else {
303                // We use -Zembed-metadata=no for the standard library
304                ArtifactKeepMode::BothRlibAndRmeta
305            },
306        );
307
308        builder.ensure(StdLink::from_std(
309            self,
310            builder.compiler(build_compiler.stage, builder.config.host_target),
311        ));
312        Some(stamp)
313    }
314
315    fn metadata(&self) -> Option<StepMetadata> {
316        Some(StepMetadata::build("std", self.target).built_by(self.build_compiler))
317    }
318}
319
320fn copy_and_stamp(
321    builder: &Builder<'_>,
322    libdir: &Path,
323    sourcedir: &Path,
324    name: &str,
325    target_deps: &mut Vec<(PathBuf, DependencyType)>,
326    dependency_type: DependencyType,
327) {
328    let target = libdir.join(name);
329    builder.copy_link(&sourcedir.join(name), &target, FileType::Regular);
330
331    target_deps.push((target, dependency_type));
332}
333
334fn copy_llvm_libunwind(builder: &Builder<'_>, target: TargetSelection, libdir: &Path) -> PathBuf {
335    let libunwind_path = builder.ensure(llvm::Libunwind { target });
336    let libunwind_source = libunwind_path.join("libunwind.a");
337    let libunwind_target = libdir.join("libunwind.a");
338    builder.copy_link(&libunwind_source, &libunwind_target, FileType::NativeLibrary);
339    libunwind_target
340}
341
342/// Copies third party objects needed by various targets.
343fn copy_third_party_objects(
344    builder: &Builder<'_>,
345    compiler: &Compiler,
346    target: TargetSelection,
347) -> Vec<(PathBuf, DependencyType)> {
348    let mut target_deps = vec![];
349
350    if builder.config.needs_sanitizer_runtime_built(target) && compiler.stage != 0 {
351        // The sanitizers are only copied in stage1 or above,
352        // to avoid creating dependency on LLVM.
353        target_deps.extend(
354            copy_sanitizers(builder, compiler, target)
355                .into_iter()
356                .map(|d| (d, DependencyType::Target)),
357        );
358    }
359
360    if target == "x86_64-fortanix-unknown-sgx"
361        || builder.config.llvm_libunwind(target) == LlvmLibunwind::InTree
362            && (target.contains("linux")
363                || target.contains("fuchsia")
364                || target.contains("aix")
365                || target.contains("hexagon"))
366    {
367        let libunwind_path =
368            copy_llvm_libunwind(builder, target, &builder.sysroot_target_libdir(*compiler, target));
369        target_deps.push((libunwind_path, DependencyType::Target));
370    }
371
372    target_deps
373}
374
375/// Copies third party objects needed by various targets for self-contained linkage.
376fn copy_self_contained_objects(
377    builder: &Builder<'_>,
378    compiler: &Compiler,
379    target: TargetSelection,
380) -> Vec<(PathBuf, DependencyType)> {
381    let libdir_self_contained =
382        builder.sysroot_target_libdir(*compiler, target).join("self-contained");
383    t!(fs::create_dir_all(&libdir_self_contained));
384    let mut target_deps = vec![];
385
386    // Copies the libc and CRT objects.
387    //
388    // rustc historically provides a more self-contained installation for musl targets
389    // not requiring the presence of a native musl toolchain. For example, it can fall back
390    // to using gcc from a glibc-targeting toolchain for linking.
391    // To do that we have to distribute musl startup objects as a part of Rust toolchain
392    // and link with them manually in the self-contained mode.
393    if target.needs_crt_begin_end() {
394        let srcdir = builder.musl_libdir(target).unwrap_or_else(|| {
395            panic!("Target {:?} does not have a \"musl-libdir\" key", target.triple)
396        });
397        if !target.starts_with("wasm32") {
398            for &obj in &["libc.a", "crt1.o", "Scrt1.o", "rcrt1.o", "crti.o", "crtn.o"] {
399                copy_and_stamp(
400                    builder,
401                    &libdir_self_contained,
402                    &srcdir,
403                    obj,
404                    &mut target_deps,
405                    DependencyType::TargetSelfContained,
406                );
407            }
408            let crt_path = builder.ensure(llvm::CrtBeginEnd { target });
409            for &obj in &["crtbegin.o", "crtbeginS.o", "crtend.o", "crtendS.o"] {
410                let src = crt_path.join(obj);
411                let target = libdir_self_contained.join(obj);
412                builder.copy_link(&src, &target, FileType::NativeLibrary);
413                target_deps.push((target, DependencyType::TargetSelfContained));
414            }
415        } else {
416            // For wasm32 targets, we need to copy the libc.a and crt1-command.o files from the
417            // musl-libdir, but we don't need the other files.
418            for &obj in &["libc.a", "crt1-command.o"] {
419                copy_and_stamp(
420                    builder,
421                    &libdir_self_contained,
422                    &srcdir,
423                    obj,
424                    &mut target_deps,
425                    DependencyType::TargetSelfContained,
426                );
427            }
428        }
429        if !target.starts_with("s390x") {
430            let libunwind_path = copy_llvm_libunwind(builder, target, &libdir_self_contained);
431            target_deps.push((libunwind_path, DependencyType::TargetSelfContained));
432        }
433    } else if target.contains("-wasi") {
434        let srcdir = builder.wasi_libdir(target).unwrap_or_else(|| {
435            panic!(
436                "Target {:?} does not have a \"wasi-root\" key in bootstrap.toml \
437                    or `$WASI_SDK_PATH` set",
438                target.triple
439            )
440        });
441
442        for &obj in &["libc.a", "crt1-command.o", "crt1-reactor.o"] {
443            copy_and_stamp(
444                builder,
445                &libdir_self_contained,
446                &srcdir,
447                obj,
448                &mut target_deps,
449                DependencyType::TargetSelfContained,
450            );
451        }
452        if srcdir.join("eh").exists() {
453            copy_and_stamp(
454                builder,
455                &libdir_self_contained,
456                &srcdir.join("eh"),
457                "libunwind.a",
458                &mut target_deps,
459                DependencyType::TargetSelfContained,
460            );
461        }
462    } else if target.is_windows_gnu() || target.is_windows_gnullvm() {
463        for obj in ["crt2.o", "dllcrt2.o"].iter() {
464            let src = compiler_file(builder, &builder.cc(target), target, CLang::C, obj);
465            let dst = libdir_self_contained.join(obj);
466            builder.copy_link(&src, &dst, FileType::NativeLibrary);
467            target_deps.push((dst, DependencyType::TargetSelfContained));
468        }
469    }
470
471    target_deps
472}
473
474/// Resolves standard library crates for [`Std::make_run`] for any build kind (like check, doc,
475/// build, clippy, etc.).
476pub fn std_crates_for_make_run(run: &RunConfig<'_>) -> Vec<String> {
477    let mut crates = run.make_run_crates(builder::Alias::Library);
478
479    // For no_std targets, we only want to check core and alloc
480    // Regardless of core/alloc being selected explicitly or via the "library" default alias,
481    // we only want to keep these two crates.
482    // The set of no_std crates should be kept in sync with what `Builder::std_cargo` does.
483    // Note: an alternative design would be to return an enum from this function (Default vs Subset)
484    // of crates. However, several steps currently pass `-p <package>` even if all crates are
485    // selected, because Cargo behaves differently in that case. To keep that behavior without
486    // making further changes, we pre-filter the no-std crates here.
487    let target_is_no_std = run.builder.no_std(run.target).unwrap_or(false);
488    if target_is_no_std {
489        crates.retain(|c| c == "core" || c == "alloc");
490    }
491    crates
492}
493
494/// Tries to find LLVM's `compiler-rt` source directory, for building `library/profiler_builtins`.
495///
496/// Normally it lives in the `src/llvm-project` submodule, but if we will be using a
497/// downloaded copy of CI LLVM, then we try to use the `compiler-rt` sources from
498/// there instead, which lets us avoid checking out the LLVM submodule.
499fn compiler_rt_for_profiler(builder: &Builder<'_>) -> PathBuf {
500    // Try to use `compiler-rt` sources from downloaded CI LLVM, if available
501    if let Some(downloaded_llvm) = builder.ensure(LlvmFromCi { target: builder.host_target }) {
502        let ci_llvm_compiler_rt = downloaded_llvm.output.root_dir().join("compiler-rt");
503        if !builder.config.dry_run() {
504            assert!(
505                ci_llvm_compiler_rt.exists(),
506                "compiler-rt sources not found in LLVM downloaded from CI at {ci_llvm_compiler_rt:?}"
507            );
508        }
509        return ci_llvm_compiler_rt;
510    }
511
512    // Otherwise, fall back to requiring the LLVM submodule.
513    builder.require_submodule("src/llvm-project", {
514        Some("The `build.profiler` config option requires `compiler-rt` sources from LLVM.")
515    });
516    builder.src.join("src/llvm-project/compiler-rt")
517}
518
519/// Configure cargo to compile the standard library, adding appropriate env vars
520/// and such.
521pub fn std_cargo(
522    builder: &Builder<'_>,
523    target: TargetSelection,
524    cargo: &mut Cargo,
525    crates: &[String],
526) {
527    // rustc already ensures that it builds with the minimum deployment
528    // target, so ideally we shouldn't need to do anything here.
529    //
530    // However, `cc` currently defaults to a higher version for backwards
531    // compatibility, which means that compiler-rt, which is built via
532    // compiler-builtins' build script, gets built with a higher deployment
533    // target. This in turn causes warnings while linking, and is generally
534    // a compatibility hazard.
535    //
536    // So, at least until https://github.com/rust-lang/cc-rs/issues/1171, or
537    // perhaps https://github.com/rust-lang/cargo/issues/13115 is resolved, we
538    // explicitly set the deployment target environment variables to avoid
539    // this issue.
540    //
541    // This place also serves as an extension point if we ever wanted to raise
542    // rustc's default deployment target while keeping the prebuilt `std` at
543    // a lower version, so it's kinda nice to have in any case.
544    if target.contains("apple") && !builder.config.dry_run() {
545        // Query rustc for the deployment target, and the associated env var.
546        // The env var is one of the standard `*_DEPLOYMENT_TARGET` vars, i.e.
547        // `MACOSX_DEPLOYMENT_TARGET`, `IPHONEOS_DEPLOYMENT_TARGET`, etc.
548        let mut cmd = builder.rustc_cmd(cargo.compiler());
549        cmd.arg("--target").arg(target.rustc_target_arg());
550        // FIXME(#152709): -Zunstable-options is to handle JSON targets.
551        // Remove when JSON targets are stabilized.
552        cmd.arg("-Zunstable-options").env("RUSTC_BOOTSTRAP", "1");
553        cmd.arg("--print=deployment-target");
554        let output = cmd.run_capture_stdout(builder).stdout();
555
556        let (env_var, value) = output.split_once('=').unwrap();
557        // Unconditionally set the env var (if it was set in the environment
558        // already, rustc should've picked that up).
559        cargo.env(env_var.trim(), value.trim());
560
561        // Allow CI to override the deployment target for `std` on macOS.
562        //
563        // This is useful because we might want the host tooling LLVM, `rustc`
564        // and Cargo to have a different deployment target than `std` itself
565        // (currently, these two versions are the same, but in the past, we
566        // supported macOS 10.7 for user code and macOS 10.8 in host tooling).
567        //
568        // It is not necessary on the other platforms, since only macOS has
569        // support for host tooling.
570        if let Some(target) = env::var_os("MACOSX_STD_DEPLOYMENT_TARGET") {
571            cargo.env("MACOSX_DEPLOYMENT_TARGET", target);
572        }
573    }
574
575    // Paths needed by `library/profiler_builtins/build.rs`.
576    if let Some(path) = builder.config.profiler_path(target) {
577        cargo.env("LLVM_PROFILER_RT_LIB", path);
578    } else if builder.config.profiler_enabled(target) {
579        let compiler_rt = compiler_rt_for_profiler(builder);
580        // Currently this is separate from the env var used by `compiler_builtins`
581        // (below) so that adding support for CI LLVM here doesn't risk breaking
582        // the compiler builtins. But they could be unified if desired.
583        cargo.env("RUST_COMPILER_RT_FOR_PROFILER", compiler_rt);
584    }
585
586    // Determine if we're going to compile in optimized C intrinsics to
587    // the `compiler-builtins` crate. These intrinsics live in LLVM's
588    // `compiler-rt` repository.
589    //
590    // Note that this shouldn't affect the correctness of `compiler-builtins`,
591    // but only its speed. Some intrinsics in C haven't been translated to Rust
592    // yet but that's pretty rare. Other intrinsics have optimized
593    // implementations in C which have only had slower versions ported to Rust,
594    // so we favor the C version where we can, but it's not critical.
595    //
596    // If `compiler-rt` is available ensure that the `c` feature of the
597    // `compiler-builtins` crate is enabled and it's configured to learn where
598    // `compiler-rt` is located.
599    let compiler_builtins_c_feature = match builder.config.optimized_compiler_builtins(target) {
600        CompilerBuiltins::LinkLLVMBuiltinsLib(path) => {
601            cargo.env("LLVM_COMPILER_RT_LIB", path);
602            " compiler-builtins-c"
603        }
604        CompilerBuiltins::BuildLLVMFuncs => {
605            // NOTE: this interacts strangely with `llvm-has-rust-patches`. In that case, we enforce
606            // `submodules = false`, so this is a no-op. But, the user could still decide to
607            //  manually use an in-tree submodule.
608            //
609            // NOTE: if we're using system llvm, we'll end up building a version of `compiler-rt`
610            // that doesn't match the LLVM we're linking to. That's probably ok? At least, the
611            // difference wasn't enforced before. There's a comment in the compiler_builtins build
612            // script that makes me nervous, though:
613            // https://github.com/rust-lang/compiler-builtins/blob/31ee4544dbe47903ce771270d6e3bea8654e9e50/build.rs#L575-L579
614            builder.require_submodule(
615                "src/llvm-project",
616                Some(
617                    "The `build.optimized-compiler-builtins` config option \
618                     requires `compiler-rt` sources from LLVM.",
619                ),
620            );
621            let compiler_builtins_root = builder.src.join("src/llvm-project/compiler-rt");
622            if !builder.config.dry_run() {
623                // This assertion would otherwise trigger during tests if `llvm-project` is not
624                // checked out.
625                assert!(compiler_builtins_root.exists());
626            }
627
628            // The path to `compiler-rt` is also used by `profiler_builtins` (above),
629            // so if you're changing something here please also change that as appropriate.
630            cargo.env("RUST_COMPILER_RT_ROOT", &compiler_builtins_root);
631            " compiler-builtins-c"
632        }
633        CompilerBuiltins::BuildRustOnly => "",
634    };
635
636    for krate in crates {
637        cargo.args(["-p", krate]);
638    }
639
640    let mut features = String::new();
641
642    if builder.no_std(target) == Some(true) {
643        features += " compiler-builtins-mem";
644        if !target.starts_with("bpf") {
645            features.push_str(compiler_builtins_c_feature);
646        }
647
648        // for no-std targets we only compile a few no_std crates
649        if crates.is_empty() {
650            cargo.args(["-p", "alloc"]);
651        }
652        cargo
653            .arg("--manifest-path")
654            .arg(builder.src.join("library/alloc/Cargo.toml"))
655            .arg("--features")
656            .arg(features);
657    } else {
658        features += &builder.std_features(target);
659        features.push_str(compiler_builtins_c_feature);
660
661        cargo
662            .arg("--features")
663            .arg(features)
664            .arg("--manifest-path")
665            .arg(builder.src.join("library/sysroot/Cargo.toml"));
666
667        // Help the libc crate compile by assisting it in finding various
668        // sysroot native libraries.
669        if target.contains("musl")
670            && let Some(p) = builder.musl_libdir(target)
671        {
672            let root = format!("native={}", p.to_str().unwrap());
673            cargo.rustflag("-L").rustflag(&root);
674        }
675
676        if target.contains("-wasi")
677            && let Some(dir) = builder.wasi_libdir(target)
678        {
679            let root = format!("native={}", dir.to_str().unwrap());
680            cargo.rustflag("-L").rustflag(&root);
681        }
682    }
683
684    if builder.config.rust_lto == RustcLto::Off {
685        cargo.rustflag("-Clto=off");
686    }
687
688    // By default, rustc does not include unwind tables unless they are required
689    // for a particular target. They are not required by RISC-V targets, but
690    // compiling the standard library with them means that users can get
691    // backtraces without having to recompile the standard library themselves.
692    //
693    // This choice was discussed in https://github.com/rust-lang/rust/pull/69890
694    if target.contains("riscv") {
695        cargo.rustflag("-Cforce-unwind-tables=yes");
696    }
697
698    let html_root =
699        format!("-Zcrate-attr=doc(html_root_url=\"{}/\")", builder.doc_rust_lang_org_channel(),);
700    cargo.rustflag(&html_root);
701    cargo.rustdocflag(&html_root);
702
703    cargo.rustdocflag("-Zcrate-attr=warn(rust_2018_idioms)");
704}
705
706/// Link all libstd rlibs/dylibs into a sysroot of `target_compiler`.
707///
708/// Links those artifacts generated by `compiler` to the `stage` compiler's
709/// sysroot for the specified `host` and `target`.
710///
711/// Note that this assumes that `compiler` has already generated the libstd
712/// libraries for `target`, and this method will find them in the relevant
713/// output directory.
714#[derive(Debug, Clone, PartialEq, Eq, Hash)]
715pub struct StdLink {
716    pub compiler: Compiler,
717    pub target_compiler: Compiler,
718    pub target: TargetSelection,
719    /// Not actually used; only present to make sure the cache invalidation is correct.
720    crates: Vec<String>,
721    /// See [`Std::force_recompile`].
722    force_recompile: bool,
723}
724
725impl StdLink {
726    pub fn from_std(std: Std, host_compiler: Compiler) -> Self {
727        Self {
728            compiler: host_compiler,
729            target_compiler: std.build_compiler,
730            target: std.target,
731            crates: std.crates,
732            force_recompile: std.force_recompile,
733        }
734    }
735}
736
737impl Step for StdLink {
738    type Output = ();
739
740    /// Link all libstd rlibs/dylibs into the sysroot location.
741    ///
742    /// Links those artifacts generated by `compiler` to the `stage` compiler's
743    /// sysroot for the specified `host` and `target`.
744    ///
745    /// Note that this assumes that `compiler` has already generated the libstd
746    /// libraries for `target`, and this method will find them in the relevant
747    /// output directory.
748    fn run(self, builder: &Builder<'_>) {
749        let compiler = self.compiler;
750        let target_compiler = self.target_compiler;
751        let target = self.target;
752
753        // NOTE: intentionally does *not* check `target == builder.build` to avoid having to add the same check in `test::Crate`.
754        let (libdir, hostdir) = if !self.force_recompile && builder.download_rustc() {
755            // NOTE: copies part of `sysroot_libdir` to avoid having to add a new `force_recompile` argument there too
756            let lib = builder.sysroot_libdir_relative(self.compiler);
757            let sysroot = builder.ensure(crate::core::build_steps::compile::Sysroot {
758                compiler: self.compiler,
759                force_recompile: self.force_recompile,
760            });
761            let libdir = sysroot.join(lib).join("rustlib").join(target).join("lib");
762            let hostdir = sysroot.join(lib).join("rustlib").join(compiler.host).join("lib");
763            (libdir, hostdir)
764        } else {
765            let libdir = builder.sysroot_target_libdir(target_compiler, target);
766            let hostdir = builder.sysroot_target_libdir(target_compiler, compiler.host);
767            (libdir, hostdir)
768        };
769
770        let is_downloaded_beta_stage0 = builder
771            .sess
772            .initial_rustc
773            .starts_with(builder.out.join(compiler.host).join("stage0/bin"));
774
775        // Special case for stage0, to make `rustup toolchain link` and `x dist --stage 0`
776        // work for stage0-sysroot. We only do this if the stage0 compiler comes from beta,
777        // and is not set to a custom path.
778        if compiler.stage == 0 && is_downloaded_beta_stage0 {
779            // Copy bin files from stage0/bin to stage0-sysroot/bin
780            let sysroot = builder.out.join(compiler.host).join("stage0-sysroot");
781
782            let host = compiler.host;
783            let stage0_bin_dir = builder.out.join(host).join("stage0/bin");
784            let sysroot_bin_dir = sysroot.join("bin");
785            t!(fs::create_dir_all(&sysroot_bin_dir));
786            builder.cp_link_r(&stage0_bin_dir, &sysroot_bin_dir);
787
788            let stage0_lib_dir = builder.out.join(host).join("stage0/lib");
789            t!(fs::create_dir_all(sysroot.join("lib")));
790            builder.cp_link_r(&stage0_lib_dir, &sysroot.join("lib"));
791
792            // Copy codegen-backends from stage0
793            let sysroot_codegen_backends = builder.sysroot_codegen_backends(compiler);
794            t!(fs::create_dir_all(&sysroot_codegen_backends));
795            let stage0_codegen_backends = builder
796                .out
797                .join(host)
798                .join("stage0/lib/rustlib")
799                .join(host)
800                .join("codegen-backends");
801            if stage0_codegen_backends.exists() {
802                builder.cp_link_r(&stage0_codegen_backends, &sysroot_codegen_backends);
803            }
804        } else if compiler.stage == 0 {
805            let sysroot = builder.out.join(compiler.host.triple).join("stage0-sysroot");
806
807            if builder.local_rebuild {
808                // On local rebuilds this path might be a symlink to the project root,
809                // which can be read-only (e.g., on CI). So remove it before copying
810                // the stage0 lib.
811                let _ = fs::remove_dir_all(sysroot.join("lib/rustlib/src/rust"));
812            }
813
814            builder.cp_link_r(&builder.initial_sysroot.join("lib"), &sysroot.join("lib"));
815        } else {
816            if builder.download_rustc() {
817                // Ensure there are no CI-rustc std artifacts.
818                let _ = fs::remove_dir_all(&libdir);
819                let _ = fs::remove_dir_all(&hostdir);
820            }
821
822            add_to_sysroot(
823                builder,
824                &libdir,
825                &hostdir,
826                &build_stamp::libstd_stamp(builder, compiler, target),
827            );
828        }
829    }
830}
831
832/// Copies sanitizer runtime libraries into target libdir.
833fn copy_sanitizers(
834    builder: &Builder<'_>,
835    compiler: &Compiler,
836    target: TargetSelection,
837) -> Vec<PathBuf> {
838    let runtimes: Vec<llvm::SanitizerRuntime> = builder.ensure(llvm::Sanitizers { target });
839
840    if builder.config.dry_run() {
841        return Vec::new();
842    }
843
844    let mut target_deps = Vec::new();
845    let libdir = builder.sysroot_target_libdir(*compiler, target);
846
847    for runtime in &runtimes {
848        let dst = libdir.join(&runtime.name);
849        builder.copy_link(&runtime.path, &dst, FileType::NativeLibrary);
850
851        // The `aarch64-apple-ios-macabi` and `x86_64-apple-ios-macabi` are also supported for
852        // sanitizers, but they share a sanitizer runtime with `${arch}-apple-darwin`, so we do
853        // not list them here to rename and sign the runtime library.
854        if target == "x86_64-apple-darwin"
855            || target == "aarch64-apple-darwin"
856            || target == "aarch64-apple-ios"
857            || target == "aarch64-apple-ios-sim"
858            || target == "x86_64-apple-ios"
859        {
860            // Update the library’s install name to reflect that it has been renamed.
861            apple_darwin_update_library_name(builder, &dst, &format!("@rpath/{}", runtime.name));
862            // Upon renaming the install name, the code signature of the file will invalidate,
863            // so we will sign it again.
864            apple_darwin_sign_file(builder, &dst);
865        }
866
867        target_deps.push(dst);
868    }
869
870    target_deps
871}
872
873fn apple_darwin_update_library_name(builder: &Builder<'_>, library_path: &Path, new_name: &str) {
874    command("install_name_tool").arg("-id").arg(new_name).arg(library_path).run(builder);
875}
876
877fn apple_darwin_sign_file(builder: &Builder<'_>, file_path: &Path) {
878    command("codesign")
879        .arg("-f") // Force to rewrite the existing signature
880        .arg("-s")
881        .arg("-")
882        .arg(file_path)
883        .run(builder);
884}
885
886#[derive(Debug, Clone, PartialEq, Eq, Hash)]
887pub struct StartupObjects {
888    pub compiler: Compiler,
889    pub target: TargetSelection,
890}
891
892impl CommandLineStep for StartupObjects {
893    type Output = Vec<(PathBuf, DependencyType)>;
894
895    fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
896        run.path("library/rtstartup")
897    }
898
899    fn make_run(run: RunConfig<'_>) {
900        run.builder.ensure(StartupObjects {
901            compiler: run.builder.compiler(run.builder.top_stage, run.build_triple()),
902            target: run.target,
903        });
904    }
905
906    /// Builds and prepare startup objects like rsbegin.o and rsend.o
907    ///
908    /// These are primarily used on Windows right now for linking executables/dlls.
909    /// They don't require any library support as they're just plain old object
910    /// files, so we just use the nightly snapshot compiler to always build them (as
911    /// no other compilers are guaranteed to be available).
912    fn run(self, builder: &Builder<'_>) -> Vec<(PathBuf, DependencyType)> {
913        let for_compiler = self.compiler;
914        let target = self.target;
915        // Even though no longer necessary on x86_64, they are kept for now to
916        // avoid potential issues in downstream crates.
917        if !target.is_windows_gnu() {
918            return vec![];
919        }
920
921        let mut target_deps = vec![];
922
923        let src_dir = &builder.src.join("library").join("rtstartup");
924        let dst_dir = &builder.native_dir(target).join("rtstartup");
925        let sysroot_dir = &builder.sysroot_target_libdir(for_compiler, target);
926        t!(fs::create_dir_all(dst_dir));
927
928        for file in &["rsbegin", "rsend"] {
929            let src_file = &src_dir.join(file.to_string() + ".rs");
930            let dst_file = &dst_dir.join(file.to_string() + ".o");
931            if !up_to_date(src_file, dst_file) {
932                let mut cmd = command(&builder.initial_rustc);
933                cmd.env("RUSTC_BOOTSTRAP", "1");
934                if !builder.local_rebuild {
935                    // a local_rebuild compiler already has stage1 features
936                    cmd.arg("--cfg").arg("bootstrap");
937                }
938                cmd.arg("--target")
939                    .arg(target.rustc_target_arg())
940                    .arg("--emit=obj")
941                    .arg("-o")
942                    .arg(dst_file)
943                    .arg(src_file)
944                    .run(builder);
945            }
946
947            let obj = sysroot_dir.join((*file).to_string() + ".o");
948            builder.copy_link(dst_file, &obj, FileType::NativeLibrary);
949            target_deps.push((obj, DependencyType::Target));
950        }
951
952        target_deps
953    }
954}
955
956fn cp_rustc_component_to_ci_sysroot(builder: &Builder<'_>, sysroot: &Path, contents: Vec<String>) {
957    let ci_rustc_dir = builder.config.ci_rustc_dir();
958
959    for file in contents {
960        let src = ci_rustc_dir.join(&file);
961        let dst = sysroot.join(file);
962        if src.is_dir() {
963            t!(fs::create_dir_all(dst));
964        } else {
965            builder.copy_link(&src, &dst, FileType::Regular);
966        }
967    }
968}
969
970/// Represents information about a built rustc.
971#[derive(Clone, Debug)]
972pub struct BuiltRustc {
973    /// The compiler that actually built this *rustc*.
974    /// This can be different from the *build_compiler* passed to the `Rustc` step because of
975    /// uplifting.
976    pub build_compiler: Compiler,
977}
978
979/// Build rustc using the passed `build_compiler`.
980///
981/// - Makes sure that `build_compiler` has a standard library prepared for its host target,
982///   so that it can compile build scripts and proc macros when building this `rustc`.
983/// - Makes sure that `build_compiler` has a standard library prepared for `target`,
984///   so that the built `rustc` can *link to it* and use it at runtime.
985#[derive(Debug, Clone, PartialEq, Eq, Hash)]
986pub struct Rustc {
987    /// The target on which rustc will run (its host).
988    pub target: TargetSelection,
989    /// The **previous** compiler used to compile this rustc.
990    pub build_compiler: Compiler,
991    /// Whether to build a subset of crates, rather than the whole compiler.
992    ///
993    /// This should only be requested by the user, not used within bootstrap itself.
994    /// Using it within bootstrap can lead to confusing situation where lints are replayed
995    /// in two different steps.
996    crates: Vec<String>,
997}
998
999impl Rustc {
1000    pub fn new(build_compiler: Compiler, target: TargetSelection) -> Self {
1001        Self { target, build_compiler, crates: Default::default() }
1002    }
1003}
1004
1005impl CommandLineStep for Rustc {
1006    type Output = BuiltRustc;
1007    const IS_HOST: bool = true;
1008
1009    fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1010        run.crate_or_deps_filtered("rustc-main", |krate| {
1011            // We can't allow `build rustc` as an alias for this Step, because that's reserved by `Assemble`.
1012            // Ideally Assemble would use `build compiler` instead, but that seems too confusing to be worth the breaking change.
1013            krate.name != "rustc-main"
1014        })
1015    }
1016
1017    fn is_default_step(_builder: &Builder<'_>) -> bool {
1018        false
1019    }
1020
1021    fn make_run(run: RunConfig<'_>) {
1022        // If only `compiler` was passed, do not run this step.
1023        // Instead the `Assemble` step will take care of compiling Rustc.
1024        if run.builder.paths == vec![PathBuf::from("compiler")] {
1025            return;
1026        }
1027
1028        let crates = run.cargo_crates_in_set();
1029        run.builder.ensure(Rustc {
1030            build_compiler: run
1031                .builder
1032                .compiler(run.builder.top_stage.saturating_sub(1), run.build_triple()),
1033            target: run.target,
1034            crates,
1035        });
1036    }
1037
1038    /// Builds the compiler.
1039    ///
1040    /// This will build the compiler for a particular stage of the build using
1041    /// the `build_compiler` targeting the `target` architecture. The artifacts
1042    /// created will also be linked into the sysroot directory.
1043    fn run(self, builder: &Builder<'_>) -> Self::Output {
1044        let build_compiler = self.build_compiler;
1045        let target = self.target;
1046
1047        // NOTE: the ABI of the stage0 compiler is different from the ABI of the downloaded compiler,
1048        // so its artifacts can't be reused.
1049        if builder.download_rustc() && build_compiler.stage != 0 {
1050            trace!(stage = build_compiler.stage, "`download_rustc` requested");
1051
1052            let sysroot =
1053                builder.ensure(Sysroot { compiler: build_compiler, force_recompile: false });
1054            cp_rustc_component_to_ci_sysroot(
1055                builder,
1056                &sysroot,
1057                builder.config.ci_rustc_dev_contents(),
1058            );
1059            return BuiltRustc { build_compiler };
1060        }
1061
1062        // Build a standard library for `target` using the `build_compiler`.
1063        // This will be the standard library that the rustc which we build *links to*.
1064        builder.std(build_compiler, target);
1065
1066        if builder.config.keep_stage.contains(&build_compiler.stage) {
1067            trace!(stage = build_compiler.stage, "`keep-stage` requested");
1068
1069            builder.info("WARNING: Using a potentially old librustc. This may not behave well.");
1070            builder.info("WARNING: Use `--keep-stage-std` if you want to rebuild the compiler when it changes");
1071            builder.ensure(RustcLink::from_rustc(self));
1072
1073            return BuiltRustc { build_compiler };
1074        }
1075
1076        // The stage of the compiler that we're building
1077        let stage = build_compiler.stage + 1;
1078
1079        // If we are building a stage3+ compiler, and full bootstrap is disabled, and we have a
1080        // previous rustc available, we will uplift a compiler from a previous stage.
1081        // We do not allow cross-compilation uplifting here, because there it can be quite tricky
1082        // to figure out which stage actually built the rustc that should be uplifted.
1083        if build_compiler.stage >= 2
1084            && !builder.config.full_bootstrap
1085            && target == builder.host_target
1086        {
1087            // Here we need to determine the **build compiler** that built the stage that we will
1088            // be uplifting. We cannot uplift stage 1, as it has a different ABI than stage 2+,
1089            // so we always uplift the stage2 compiler (compiled with stage 1).
1090            let uplift_build_compiler = builder.compiler(1, build_compiler.host);
1091
1092            let msg = format!("Uplifting rustc from stage2 to stage{stage})");
1093            builder.info(&msg);
1094
1095            // Here the compiler that built the rlibs (`uplift_build_compiler`) can be different
1096            // from the compiler whose sysroot should be modified in this step. So we need to copy
1097            // the (previously built) rlibs into the correct sysroot.
1098            builder.ensure(RustcLink::from_build_compiler_and_sysroot(
1099                // This is the compiler that actually built the rustc rlibs
1100                uplift_build_compiler,
1101                // We copy the rlibs into the sysroot of `build_compiler`
1102                build_compiler,
1103                target,
1104                self.crates,
1105            ));
1106
1107            // Here we have performed an uplift, so we return the actual build compiler that "built"
1108            // this rustc.
1109            return BuiltRustc { build_compiler: uplift_build_compiler };
1110        }
1111
1112        // Build a standard library for the current host target using the `build_compiler`.
1113        // This standard library will be used when building `rustc` for compiling
1114        // build scripts and proc macros.
1115        // If we are not cross-compiling, the Std build above will be the same one as the one we
1116        // prepare here.
1117        builder.std(
1118            builder.compiler(self.build_compiler.stage, builder.config.host_target),
1119            builder.config.host_target,
1120        );
1121
1122        let mut cargo = builder::Cargo::new(
1123            builder,
1124            build_compiler,
1125            Mode::Rustc,
1126            SourceType::InTree,
1127            target,
1128            Kind::Build,
1129        );
1130
1131        rustc_cargo(builder, &mut cargo, target, &build_compiler, &self.crates);
1132
1133        // NB: all RUSTFLAGS should be added to `rustc_cargo()` so they will be
1134        // consistently applied by check/doc/test modes too.
1135
1136        for krate in &*self.crates {
1137            cargo.arg("-p").arg(krate);
1138        }
1139
1140        if builder.sess.config.enable_bolt_settings && build_compiler.stage == 1 {
1141            // Relocations are required for BOLT to work.
1142            cargo.env("RUSTC_BOLT_LINK_FLAGS", "1");
1143        }
1144
1145        let _guard = builder.msg(
1146            Kind::Build,
1147            format_args!("compiler artifacts{}", crate_description(&self.crates)),
1148            Mode::Rustc,
1149            build_compiler,
1150            target,
1151        );
1152        let stamp = build_stamp::librustc_stamp(builder, build_compiler, target);
1153
1154        run_cargo(
1155            builder,
1156            cargo,
1157            vec![],
1158            &stamp,
1159            vec![],
1160            ArtifactKeepMode::Custom(Box::new(|filename| {
1161                if filename.contains("jemalloc_sys")
1162                    || filename.contains("rustc_public_bridge")
1163                    || filename.contains("rustc_public")
1164                {
1165                    // jemalloc_sys and rustc_public_bridge are not linked into librustc_driver.so,
1166                    // so we need to distribute them as rlib to be able to use them.
1167                    if filename.ends_with(".rlib") {
1168                        return true;
1169                    }
1170                }
1171
1172                // Distribute the rest of the rustc crates as rmeta files only to reduce
1173                // the tarball sizes by about 50%. The object files are linked into
1174                // librustc_driver.so, so it is still possible to link against them.
1175                filename.ends_with(".rmeta")
1176            })),
1177        );
1178
1179        let target_root_dir = stamp.path().parent().unwrap();
1180        // When building `librustc_driver.so` (like `libLLVM.so`) on linux, it can contain
1181        // unexpected debuginfo from dependencies, for example from the C++ standard library used in
1182        // our LLVM wrapper. Unless we're explicitly requesting `librustc_driver` to be built with
1183        // debuginfo (via the debuginfo level of the executables using it): strip this debuginfo
1184        // away after the fact.
1185        if builder.config.rust_debuginfo_level_rustc == DebuginfoLevel::None
1186            && builder.config.rust_debuginfo_level_tools == DebuginfoLevel::None
1187        {
1188            let rustc_driver = target_root_dir.join("librustc_driver.so");
1189            strip_debug(builder, target, &rustc_driver);
1190        }
1191
1192        if builder.config.rust_debuginfo_level_rustc == DebuginfoLevel::None {
1193            // Due to LTO a lot of debug info from C++ dependencies such as jemalloc can make it into
1194            // our final binaries
1195            strip_debug(builder, target, &target_root_dir.join("rustc-main"));
1196        }
1197
1198        builder.ensure(RustcLink::from_rustc(self));
1199        BuiltRustc { build_compiler }
1200    }
1201
1202    fn metadata(&self) -> Option<StepMetadata> {
1203        Some(StepMetadata::build("rustc", self.target).built_by(self.build_compiler))
1204    }
1205}
1206
1207pub fn rustc_cargo(
1208    builder: &Builder<'_>,
1209    cargo: &mut Cargo,
1210    target: TargetSelection,
1211    build_compiler: &Compiler,
1212    crates: &[String],
1213) {
1214    let kind = cargo.kind();
1215    cargo
1216        .arg("--features")
1217        .arg(builder.rustc_features(kind, target, crates))
1218        .arg("--manifest-path")
1219        .arg(builder.src.join("compiler/rustc/Cargo.toml"));
1220
1221    cargo.rustdocflag("-Zcrate-attr=warn(rust_2018_idioms)");
1222
1223    // If the rustc output is piped to e.g. `head -n1` we want the process to be killed, rather than
1224    // having an error bubble up and cause a panic.
1225    //
1226    // FIXME(jieyouxu): this flag is load-bearing for rustc to not ICE on broken pipes, because
1227    // rustc internally sometimes uses std `println!` -- but std `println!` by default will panic on
1228    // broken pipes, and uncaught panics will manifest as an ICE. The compiler *should* handle this
1229    // properly, but this flag is set in the meantime to paper over the I/O errors.
1230    //
1231    // See <https://github.com/rust-lang/rust/issues/131059> for details.
1232    //
1233    // Also see the discussion for properly handling I/O errors related to broken pipes, i.e. safe
1234    // variants of `println!` in
1235    // <https://rust-lang.zulipchat.com/#narrow/stream/131828-t-compiler/topic/Internal.20lint.20for.20raw.20.60print!.60.20and.20.60println!.60.3F>.
1236    cargo.rustflag("-Zon-broken-pipe=kill");
1237
1238    // /Brepro tells the MSVC linker to omit non-deterministic COFF data
1239    // (namely the PE timestamp) from the produced binary. Only applied when
1240    // building rustc itself via bootstrap. See discussion:
1241    // https://github.com/rust-lang/rust/pull/158873
1242    if target.is_msvc() {
1243        cargo.rustflag("-Clink-arg=/Brepro");
1244    }
1245
1246    // Building with protected visibility reduces the number of dynamic relocations needed, giving
1247    // us a faster startup time. However GNU ld < 2.40 will error if we try to link a shared object
1248    // with direct references to protected symbols, so for now we only use protected symbols if
1249    // linking with LLD is enabled.
1250    if builder.sess.config.bootstrap_override_lld.is_used() {
1251        cargo.rustflag("-Zdefault-visibility=protected");
1252    }
1253
1254    if is_lto_stage(build_compiler) {
1255        match builder.config.rust_lto {
1256            RustcLto::Thin | RustcLto::Fat => {
1257                // Since using LTO for optimizing dylibs is currently experimental,
1258                // we need to pass -Zdylib-lto.
1259                cargo.rustflag("-Zdylib-lto");
1260                // Cargo by default passes `-Cembed-bitcode=no` and doesn't pass `-Clto` when
1261                // compiling dylibs (and their dependencies), even when LTO is enabled for the
1262                // crate. Therefore, we need to override `-Clto` and `-Cembed-bitcode` here.
1263                let lto_type = match builder.config.rust_lto {
1264                    RustcLto::Thin => "thin",
1265                    RustcLto::Fat => "fat",
1266                    _ => unreachable!(),
1267                };
1268                cargo.rustflag(&format!("-Clto={lto_type}"));
1269                cargo.rustflag("-Cembed-bitcode=yes");
1270            }
1271            RustcLto::ThinLocal => { /* Do nothing, this is the default */ }
1272            RustcLto::Off => {
1273                cargo.rustflag("-Clto=off");
1274            }
1275        }
1276    } else if builder.config.rust_lto == RustcLto::Off {
1277        cargo.rustflag("-Clto=off");
1278    }
1279
1280    // With LLD, we can use ICF (identical code folding) to reduce the executable size
1281    // of librustc_driver/rustc and to improve i-cache utilization.
1282    //
1283    // -Wl,[link options] doesn't work on MSVC. However, /OPT:ICF (technically /OPT:REF,ICF)
1284    // is already on by default in MSVC optimized builds, which is interpreted as --icf=all:
1285    // https://github.com/llvm/llvm-project/blob/3329cec2f79185bafd678f310fafadba2a8c76d2/lld/COFF/Driver.cpp#L1746
1286    // https://github.com/rust-lang/rust/blob/f22819bcce4abaff7d1246a56eec493418f9f4ee/compiler/rustc_codegen_ssa/src/back/linker.rs#L827
1287    if builder.config.bootstrap_override_lld.is_used() && !build_compiler.host.is_msvc() {
1288        cargo.rustflag("-Clink-args=-Wl,--icf=all");
1289    }
1290
1291    apply_pgo(builder, cargo, *build_compiler, &builder.config.rust_pgo);
1292
1293    // The stage0 compiler changes infrequently and does not directly depend on code
1294    // in the current working directory. Therefore, caching it with sccache should be
1295    // useful.
1296    // This is only performed for non-incremental builds, as ccache cannot deal with these.
1297    //
1298    // We skip this on Windows hosts for now because of command line length issues (see CI failure
1299    // in https://github.com/rust-lang/rust/pull/158888#issuecomment-4960306292).
1300    if let Some(ref ccache) = builder.config.ccache
1301        && build_compiler.stage == 0
1302        && !cfg!(windows)
1303        && !builder.config.incremental
1304    {
1305        cargo.env("RUSTC_WRAPPER", ccache);
1306    }
1307
1308    rustc_cargo_env(builder, cargo, target);
1309}
1310
1311fn rustc_cargo_env(builder: &Builder<'_>, cargo: &mut Cargo, target: TargetSelection) {
1312    // Set some configuration variables picked up by build scripts and
1313    // the compiler alike
1314    cargo
1315        .env("CFG_RELEASE", builder.rust_release())
1316        .env("CFG_RELEASE_CHANNEL", &builder.config.channel)
1317        .env("CFG_VERSION", builder.rust_version());
1318
1319    // Some tools like Cargo detect their own git information in build scripts. When omit-git-hash
1320    // is enabled in bootstrap.toml, we pass this environment variable to tell build scripts to avoid
1321    // detecting git information on their own.
1322    if builder.config.omit_git_hash {
1323        cargo.env("CFG_OMIT_GIT_HASH", "1");
1324    }
1325
1326    cargo.env("CFG_DEFAULT_CODEGEN_BACKEND", builder.config.default_codegen_backend(target).name());
1327
1328    let libdir_relative = builder.config.libdir_relative().unwrap_or_else(|| Path::new("lib"));
1329    let target_config = builder.config.target_config.get(&target);
1330
1331    cargo.env("CFG_LIBDIR_RELATIVE", libdir_relative);
1332
1333    if let Some(ref ver_date) = builder.rust_info().commit_date() {
1334        cargo.env("CFG_VER_DATE", ver_date);
1335    }
1336    if let Some(ref ver_hash) = builder.rust_info().sha() {
1337        cargo.env("CFG_VER_HASH", ver_hash);
1338    }
1339    if !builder.unstable_features() {
1340        cargo.env("CFG_DISABLE_UNSTABLE_FEATURES", "1");
1341    }
1342
1343    // Prefer the current target's own default_linker, else a globally
1344    // specified one.
1345    if let Some(s) = target_config.and_then(|c| c.default_linker.as_ref()) {
1346        cargo.env("CFG_DEFAULT_LINKER", s);
1347    } else if let Some(ref s) = builder.config.rustc_default_linker {
1348        cargo.env("CFG_DEFAULT_LINKER", s);
1349    }
1350
1351    // Enable rustc's env var to use a linker override on Linux when requested.
1352    if let Some(linker) = target_config.map(|c| c.default_linker_linux_override) {
1353        match linker {
1354            DefaultLinuxLinkerOverride::Off => {}
1355            DefaultLinuxLinkerOverride::SelfContainedLldCc => {
1356                cargo.env("CFG_DEFAULT_LINKER_SELF_CONTAINED_LLD_CC", "1");
1357            }
1358        }
1359    }
1360
1361    // The host this new compiler will *run* on.
1362    cargo.env("CFG_COMPILER_HOST_TRIPLE", target.triple);
1363
1364    if builder.config.rust_verify_llvm_ir {
1365        cargo.env("RUSTC_VERIFY_LLVM_IR", "1");
1366    }
1367
1368    let nightly = builder.config.channel == "nightly" || builder.config.channel == "dev";
1369    if nightly {
1370        // We want to enable Polonius Alpha and Next Trait Solver by default on nighty
1371        cargo.env("CFG_DEFAULT_POLONIUS_NEXT", "1");
1372        cargo.env("CFG_DEFAULT_NEXT_SOLVER_GLOBALLY", "1");
1373    }
1374
1375    // These conditionals represent a tension between three forces:
1376    // - For non-check builds, we need to define some LLVM-related environment
1377    //   variables, requiring LLVM to have been built.
1378    // - For check builds, we want to avoid building LLVM if possible.
1379    // - Check builds and non-check builds should have the same environment if
1380    //   possible, to avoid unnecessary rebuilds due to cache-busting (in the same stage).
1381    //
1382    // If we have either:
1383    // - LLVM already locally built
1384    // - download-ci-llvm enabled
1385    // - LLVM provided externally through a llvm-config
1386    //
1387    // and we do a check-like build, we run rustc_llvm as normally, to maintain a
1388    // consistent environment between check and non-check builds
1389    //
1390    // However, if neither from the above three bullet points is true, and we do a check-like build,
1391    // we skip running rustc_llvm by setting the RUST_CHECK environment variable.
1392    //
1393    // Note that if download-ci-llvm is enabled, `prebuilt_llvm_output` will *eagerly* download
1394    // LLVM from CI, thus making it locally available.
1395    if builder.config.llvm_enabled(target) {
1396        let building_llvm_is_expensive = prebuilt_llvm_output(builder, target).is_none();
1397
1398        let skip_llvm = cargo.kind().is_check_like() && building_llvm_is_expensive;
1399        if skip_llvm {
1400            cargo.env("RUST_CHECK", "1");
1401        } else {
1402            rustc_llvm_env(builder, cargo, target);
1403        }
1404    }
1405
1406    // See also the "JEMALLOC_SYS_WITH_LG_PAGE" setting in the tool build step.
1407    if builder.config.allocator(target) == Allocator::Jemalloc
1408        && env::var_os("JEMALLOC_SYS_WITH_LG_PAGE").is_none()
1409    {
1410        // Build jemalloc on AArch64 with support for page sizes up to 64K
1411        // See: https://github.com/rust-lang/rust/pull/135081
1412        if target.starts_with("aarch64") {
1413            cargo.env("JEMALLOC_SYS_WITH_LG_PAGE", "16");
1414        }
1415        // Build jemalloc on LoongArch with support for page sizes up to 16K
1416        else if target.starts_with("loongarch") {
1417            cargo.env("JEMALLOC_SYS_WITH_LG_PAGE", "14");
1418        }
1419    }
1420}
1421
1422/// Pass down configuration from the LLVM build into the build of
1423/// rustc_llvm and rustc_codegen_llvm.
1424///
1425/// Note that calling this function has the side-effect of _building LLVM_, which is sometimes
1426/// unwanted (e.g. for check builds).
1427fn rustc_llvm_env(builder: &Builder<'_>, cargo: &mut Cargo, target: TargetSelection) {
1428    let llvm_output = builder.ensure(llvm::Llvm { target });
1429    if builder.config.is_rust_llvm(&llvm_output, target) {
1430        cargo.env("LLVM_RUSTLLVM", "1");
1431    }
1432    if builder.config.llvm_enzyme {
1433        cargo.env("LLVM_ENZYME", "1");
1434    }
1435    if builder.config.llvm_offload {
1436        builder.ensure(llvm::OmpOffload { target });
1437        cargo.env("LLVM_OFFLOAD", "1");
1438    }
1439
1440    // This always has to be the host LLVM config, because it is executed by rustc_llvm
1441    cargo.env("LLVM_CONFIG", builder.host_llvm_config());
1442
1443    // Some LLVM linker flags (-L and -l) may be needed to link `rustc_llvm`. Its build script
1444    // expects these to be passed via the `LLVM_LINKER_FLAGS` env variable, separated by
1445    // whitespace.
1446    //
1447    // For example:
1448    // - on windows, when `clang-cl` is used with instrumentation, we need to manually add
1449    // clang's runtime library resource directory so that the profiler runtime library can be
1450    // found. This is to avoid the linker errors about undefined references to
1451    // `__llvm_profile_instrument_memop` when linking `rustc_driver`.
1452    let mut llvm_linker_flags = String::new();
1453    if builder.config.llvm_pgo.generate_profile.is_some()
1454        && target.is_msvc()
1455        && let Some(ref clang_cl_path) = builder.config.llvm_clang_cl
1456    {
1457        // Add clang's runtime library directory to the search path
1458        let clang_rt_dir = get_clang_cl_resource_dir(builder, clang_cl_path);
1459        llvm_linker_flags.push_str(&format!("-L{}", clang_rt_dir.display()));
1460    }
1461
1462    // The config can also specify its own llvm linker flags.
1463    if let Some(ref s) = builder.config.llvm_ldflags {
1464        if !llvm_linker_flags.is_empty() {
1465            llvm_linker_flags.push(' ');
1466        }
1467        llvm_linker_flags.push_str(s);
1468    }
1469
1470    // Set the linker flags via the env var that `rustc_llvm`'s build script will read.
1471    if !llvm_linker_flags.is_empty() {
1472        cargo.env("LLVM_LINKER_FLAGS", llvm_linker_flags);
1473    }
1474
1475    // Building with a static libstdc++ is only supported on Linux and windows-gnu* right now,
1476    // not for MSVC or macOS
1477    if builder.config.llvm_static_stdcpp
1478        && !target.contains("freebsd")
1479        && !target.is_msvc()
1480        && !target.contains("apple")
1481        && !target.contains("solaris")
1482    {
1483        let libstdcxx_name =
1484            if target.contains("windows-gnullvm") { "libc++.a" } else { "libstdc++.a" };
1485        let file = compiler_file(
1486            builder,
1487            &builder.cxx(target).unwrap(),
1488            target,
1489            CLang::Cxx,
1490            libstdcxx_name,
1491        );
1492        cargo.env("LLVM_STATIC_STDCPP", file);
1493    }
1494    if llvm_output.link_shared() {
1495        cargo.env("LLVM_LINK_SHARED", "1");
1496    }
1497    if builder.config.llvm_use_libcxx {
1498        cargo.env("LLVM_USE_LIBCXX", "1");
1499    }
1500    if builder.config.llvm_assertions {
1501        cargo.env("LLVM_ASSERTIONS", "1");
1502    }
1503    if builder.cxx_tool(target).is_like_gnu() || builder.cc_tool(target).is_like_gnu() {
1504        cargo.env("LLVM_COMPILER_IS_GNU_LIKE", "1");
1505    }
1506}
1507
1508/// `RustcLink` copies compiler rlibs from a rustc build into a compiler sysroot.
1509/// It works with (potentially up to) three compilers:
1510/// - `build_compiler` is a compiler that built rustc rlibs
1511/// - `sysroot_compiler` is a compiler into whose sysroot we will copy the rlibs
1512///   - In most situations, `build_compiler` == `sysroot_compiler`
1513/// - `target_compiler` is the compiler whose rlibs were built. It is not represented explicitly
1514///   in this step, rather we just read the rlibs from a rustc build stamp of `build_compiler`.
1515///
1516/// This is necessary for tools using `rustc_private`, where the previous compiler will build
1517/// a tool against the next compiler.
1518/// To build a tool against a compiler, the rlibs of that compiler that it links against
1519/// must be in the sysroot of the compiler that's doing the compiling.
1520#[derive(Debug, Clone, PartialEq, Eq, Hash)]
1521struct RustcLink {
1522    /// This compiler **built** some rustc, whose rlibs we will copy into a sysroot.
1523    build_compiler: Compiler,
1524    /// This is the compiler into whose sysroot we want to copy the built rlibs.
1525    /// In most cases, it will correspond to `build_compiler`.
1526    sysroot_compiler: Compiler,
1527    target: TargetSelection,
1528    /// Not actually used; only present to make sure the cache invalidation is correct.
1529    crates: Vec<String>,
1530}
1531
1532impl RustcLink {
1533    /// Copy rlibs from the build compiler that build this `rustc` into the sysroot of that
1534    /// build compiler.
1535    fn from_rustc(rustc: Rustc) -> Self {
1536        Self {
1537            build_compiler: rustc.build_compiler,
1538            sysroot_compiler: rustc.build_compiler,
1539            target: rustc.target,
1540            crates: rustc.crates,
1541        }
1542    }
1543
1544    /// Copy rlibs **built** by `build_compiler` into the sysroot of `sysroot_compiler`.
1545    fn from_build_compiler_and_sysroot(
1546        build_compiler: Compiler,
1547        sysroot_compiler: Compiler,
1548        target: TargetSelection,
1549        crates: Vec<String>,
1550    ) -> Self {
1551        Self { build_compiler, sysroot_compiler, target, crates }
1552    }
1553}
1554
1555impl Step for RustcLink {
1556    type Output = ();
1557
1558    /// Same as `StdLink`, only for librustc
1559    fn run(self, builder: &Builder<'_>) {
1560        let build_compiler = self.build_compiler;
1561        let sysroot_compiler = self.sysroot_compiler;
1562        let target = self.target;
1563        add_to_sysroot(
1564            builder,
1565            &builder.sysroot_target_libdir(sysroot_compiler, target),
1566            &builder.sysroot_target_libdir(sysroot_compiler, sysroot_compiler.host),
1567            &build_stamp::librustc_stamp(builder, build_compiler, target),
1568        );
1569    }
1570}
1571
1572/// Set of `libgccjit` dylibs that can be used by `cg_gcc` to compile code for a set of targets.
1573/// `libgccjit` requires a separate build for each `(host, target)` pair.
1574/// So if you are on linux-x64 and build for linux-aarch64, you will need at least:
1575/// - linux-x64 -> linux-x64 libgccjit (for building host code like proc macros)
1576/// - linux-x64 -> linux-aarch64 libgccjit (for the aarch64 target code)
1577#[derive(Clone)]
1578pub struct GccDylibSet {
1579    dylibs: BTreeMap<GccTargetPair, GccOutput>,
1580}
1581
1582impl GccDylibSet {
1583    /// Build a set of libgccjit dylibs that will be executed on `host` and will generate code for
1584    /// each specified target.
1585    pub fn build(
1586        builder: &Builder<'_>,
1587        host: TargetSelection,
1588        targets: Vec<TargetSelection>,
1589    ) -> Self {
1590        let dylibs = targets
1591            .iter()
1592            .map(|t| GccTargetPair::for_target_pair(host, *t))
1593            .map(|target_pair| (target_pair, builder.ensure(Gcc { target_pair })))
1594            .collect();
1595        Self { dylibs }
1596    }
1597
1598    /// Install the libgccjit dylibs to the corresponding target directories of the given compiler.
1599    /// cg_gcc know how to search for the libgccjit dylibs in these directories, according to the
1600    /// (host, target) pair that is being compiled by rustc and cg_gcc.
1601    pub fn install_to(&self, builder: &Builder<'_>, compiler: Compiler) {
1602        if builder.config.dry_run() {
1603            return;
1604        }
1605
1606        // <rustc>/lib/<host-target>/codegen-backends
1607        let cg_sysroot = builder.sysroot_codegen_backends(compiler);
1608
1609        for (target_pair, libgccjit) in &self.dylibs {
1610            assert_eq!(
1611                target_pair.host(),
1612                compiler.host,
1613                "Trying to install libgccjit ({target_pair}) to a compiler with a different host ({})",
1614                compiler.host
1615            );
1616            let libgccjit_path = libgccjit.libgccjit();
1617
1618            // If we build libgccjit ourselves, then `libgccjit` can actually be a symlink.
1619            // In that case, we have to resolve it first, otherwise we'd create a symlink to a
1620            // symlink, which wouldn't work.
1621            let libgccjit_path = t!(
1622                libgccjit_path.canonicalize(),
1623                format!("Cannot find libgccjit at {}", libgccjit_path.display())
1624            );
1625
1626            let dst = cg_sysroot.join(libgccjit_path_relative_to_cg_dir(target_pair, libgccjit));
1627            t!(std::fs::create_dir_all(dst.parent().unwrap()));
1628            builder.copy_link(&libgccjit_path, &dst, FileType::NativeLibrary);
1629        }
1630    }
1631}
1632
1633/// Returns a path where libgccjit.so should be stored, **relative** to the
1634/// **codegen backend directory**.
1635pub fn libgccjit_path_relative_to_cg_dir(
1636    target_pair: &GccTargetPair,
1637    libgccjit: &GccOutput,
1638) -> PathBuf {
1639    let target_filename = libgccjit.libgccjit().file_name().unwrap().to_str().unwrap();
1640
1641    // <cg-dir>/lib/<target>/libgccjit.so
1642    Path::new("lib").join(target_pair.target()).join(target_filename)
1643}
1644
1645/// Output of the `compile::GccCodegenBackend` step.
1646///
1647/// It contains a build stamp with the path to the built cg_gcc dylib.
1648#[derive(Clone)]
1649pub struct GccCodegenBackendOutput {
1650    stamp: BuildStamp,
1651}
1652
1653impl GccCodegenBackendOutput {
1654    pub fn stamp(&self) -> &BuildStamp {
1655        &self.stamp
1656    }
1657}
1658
1659/// Builds the GCC codegen backend (`cg_gcc`).
1660/// Note that this **does not** build libgccjit, which is a dependency of cg_gcc.
1661/// That has to be built separately, because a separate copy of libgccjit is required
1662/// for each (host, target) compilation pair.
1663/// cg_gcc goes to great lengths to ensure that it does not *directly* link to libgccjit,
1664/// so we respect that here and allow building cg_gcc without building libgccjit itself.
1665#[derive(Debug, Clone, PartialEq, Eq, Hash)]
1666pub struct GccCodegenBackend {
1667    compilers: RustcPrivateCompilers,
1668    target: TargetSelection,
1669}
1670
1671impl GccCodegenBackend {
1672    /// Build `cg_gcc` that will run on the given host target.
1673    pub fn for_target(compilers: RustcPrivateCompilers, target: TargetSelection) -> Self {
1674        Self { compilers, target }
1675    }
1676}
1677
1678impl CommandLineStep for GccCodegenBackend {
1679    type Output = GccCodegenBackendOutput;
1680
1681    const IS_HOST: bool = true;
1682
1683    fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1684        run.alias("rustc_codegen_gcc").alias("cg_gcc")
1685    }
1686
1687    fn make_run(run: RunConfig<'_>) {
1688        let compilers = RustcPrivateCompilers::new(run.builder, run.builder.top_stage, run.target);
1689        run.builder.ensure(GccCodegenBackend::for_target(compilers, run.target));
1690    }
1691
1692    fn run(self, builder: &Builder<'_>) -> Self::Output {
1693        let host = self.compilers.target();
1694        let build_compiler = self.compilers.build_compiler();
1695
1696        let stamp = build_stamp::codegen_backend_stamp(
1697            builder,
1698            build_compiler,
1699            host,
1700            &CodegenBackendKind::Gcc,
1701        );
1702
1703        if builder.config.keep_stage.contains(&build_compiler.stage) && stamp.path().exists() {
1704            trace!("`keep-stage` requested");
1705            builder.info(
1706                "WARNING: Using a potentially old codegen backend. \
1707                This may not behave well.",
1708            );
1709            // Codegen backends are linked separately from this step today, so we don't do
1710            // anything here.
1711            return GccCodegenBackendOutput { stamp };
1712        }
1713
1714        let mut cargo = builder::Cargo::new(
1715            builder,
1716            build_compiler,
1717            Mode::Codegen,
1718            SourceType::InTree,
1719            host,
1720            Kind::Build,
1721        );
1722        cargo.arg("--manifest-path").arg(builder.src.join("compiler/rustc_codegen_gcc/Cargo.toml"));
1723
1724        let _guard =
1725            builder.msg(Kind::Build, "codegen backend gcc", Mode::Codegen, build_compiler, host);
1726        let files = run_cargo(builder, cargo, vec![], &stamp, vec![], ArtifactKeepMode::OnlyDylib);
1727
1728        GccCodegenBackendOutput {
1729            stamp: write_codegen_backend_stamp(stamp, files, builder.config.dry_run()),
1730        }
1731    }
1732
1733    fn metadata(&self) -> Option<StepMetadata> {
1734        Some(
1735            StepMetadata::build("rustc_codegen_gcc", self.compilers.target())
1736                .built_by(self.compilers.build_compiler()),
1737        )
1738    }
1739}
1740
1741#[derive(Debug, Clone, PartialEq, Eq, Hash)]
1742pub struct CraneliftCodegenBackend {
1743    pub compilers: RustcPrivateCompilers,
1744}
1745
1746impl CommandLineStep for CraneliftCodegenBackend {
1747    type Output = BuildStamp;
1748    const IS_HOST: bool = true;
1749
1750    fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1751        run.alias("rustc_codegen_cranelift").alias("cg_clif")
1752    }
1753
1754    fn make_run(run: RunConfig<'_>) {
1755        run.builder.ensure(CraneliftCodegenBackend {
1756            compilers: RustcPrivateCompilers::new(run.builder, run.builder.top_stage, run.target),
1757        });
1758    }
1759
1760    fn run(self, builder: &Builder<'_>) -> Self::Output {
1761        let target = self.compilers.target();
1762        let build_compiler = self.compilers.build_compiler();
1763
1764        let stamp = build_stamp::codegen_backend_stamp(
1765            builder,
1766            build_compiler,
1767            target,
1768            &CodegenBackendKind::Cranelift,
1769        );
1770
1771        if builder.config.keep_stage.contains(&build_compiler.stage) {
1772            trace!("`keep-stage` requested");
1773            builder.info(
1774                "WARNING: Using a potentially old codegen backend. \
1775                This may not behave well.",
1776            );
1777            // Codegen backends are linked separately from this step today, so we don't do
1778            // anything here.
1779            return stamp;
1780        }
1781
1782        let mut cargo = builder::Cargo::new(
1783            builder,
1784            build_compiler,
1785            Mode::Codegen,
1786            SourceType::InTree,
1787            target,
1788            Kind::Build,
1789        );
1790        cargo
1791            .arg("--manifest-path")
1792            .arg(builder.src.join("compiler/rustc_codegen_cranelift/Cargo.toml"));
1793
1794        let _guard = builder.msg(
1795            Kind::Build,
1796            "codegen backend cranelift",
1797            Mode::Codegen,
1798            build_compiler,
1799            target,
1800        );
1801        let files = run_cargo(builder, cargo, vec![], &stamp, vec![], ArtifactKeepMode::OnlyDylib);
1802        write_codegen_backend_stamp(stamp, files, builder.config.dry_run())
1803    }
1804
1805    fn metadata(&self) -> Option<StepMetadata> {
1806        Some(
1807            StepMetadata::build("rustc_codegen_cranelift", self.compilers.target())
1808                .built_by(self.compilers.build_compiler()),
1809        )
1810    }
1811}
1812
1813/// Write filtered `files` into the passed build stamp and returns it.
1814fn write_codegen_backend_stamp(
1815    mut stamp: BuildStamp,
1816    files: Vec<PathBuf>,
1817    dry_run: bool,
1818) -> BuildStamp {
1819    if dry_run {
1820        return stamp;
1821    }
1822
1823    let mut files = files.into_iter().filter(|f| looks_like_codegen_backend(Path::new(f)));
1824    let codegen_backend = match files.next() {
1825        Some(f) => f,
1826        None => panic!("no dylibs built for codegen backend?"),
1827    };
1828    if let Some(f) = files.next() {
1829        panic!("codegen backend built two dylibs:\n{}\n{}", codegen_backend.display(), f.display());
1830    }
1831
1832    let codegen_backend = codegen_backend.to_str().unwrap();
1833    stamp = stamp.add_stamp(codegen_backend);
1834    t!(stamp.write());
1835    stamp
1836}
1837
1838pub fn looks_like_codegen_backend(path: &Path) -> bool {
1839    is_dylib(path)
1840        && path.file_name().and_then(|p| p.to_str()).is_some_and(|n| n.contains("rustc_codegen_"))
1841}
1842
1843/// Creates the `codegen-backends` folder for a compiler that's about to be
1844/// assembled as a complete compiler.
1845///
1846/// This will take the codegen artifacts recorded in the given `stamp` and link them
1847/// into an appropriate location for `target_compiler` to be a functional
1848/// compiler.
1849fn copy_codegen_backends_to_sysroot(
1850    builder: &Builder<'_>,
1851    stamp: BuildStamp,
1852    target_compiler: Compiler,
1853) {
1854    // Note that this step is different than all the other `*Link` steps in
1855    // that it's not assembling a bunch of libraries but rather is primarily
1856    // moving the codegen backend into place. The codegen backend of rustc is
1857    // not linked into the main compiler by default but is rather dynamically
1858    // selected at runtime for inclusion.
1859    //
1860    // Here we're looking for the output dylib of the `CodegenBackend` step and
1861    // we're copying that into the `codegen-backends` folder.
1862    let dst = builder.sysroot_codegen_backends(target_compiler);
1863    t!(fs::create_dir_all(&dst), dst);
1864
1865    if builder.config.dry_run() {
1866        return;
1867    }
1868
1869    if stamp.path().exists() {
1870        let file = get_codegen_backend_file(&stamp);
1871        builder.copy_link(
1872            &file,
1873            &dst.join(normalize_codegen_backend_name(builder, &file)),
1874            FileType::NativeLibrary,
1875        );
1876    }
1877}
1878
1879/// Gets the path to a dynamic codegen backend library from its build stamp.
1880pub fn get_codegen_backend_file(stamp: &BuildStamp) -> PathBuf {
1881    PathBuf::from(t!(fs::read_to_string(stamp.path())))
1882}
1883
1884/// Normalize the name of a dynamic codegen backend library.
1885pub fn normalize_codegen_backend_name(builder: &Builder<'_>, path: &Path) -> String {
1886    let filename = path.file_name().unwrap().to_str().unwrap();
1887    // change e.g. `librustc_codegen_cranelift-xxxxxx.so` to
1888    // `librustc_codegen_cranelift-release.so`
1889    let dash = filename.find('-').unwrap();
1890    let dot = filename.find('.').unwrap();
1891    format!("{}-{}{}", &filename[..dash], builder.rust_release(), &filename[dot..])
1892}
1893
1894pub fn compiler_file(
1895    builder: &Builder<'_>,
1896    compiler: &Path,
1897    target: TargetSelection,
1898    c: CLang,
1899    file: &str,
1900) -> PathBuf {
1901    if builder.config.dry_run() {
1902        return PathBuf::new();
1903    }
1904    let mut cmd = command(compiler);
1905    cmd.args(builder.cc_handled_cflags(target, c));
1906    cmd.args(builder.cc_unhandled_cflags(target, c));
1907    cmd.arg(format!("-print-file-name={file}"));
1908    let out = cmd.run_capture_stdout(builder).stdout();
1909    PathBuf::from(out.trim())
1910}
1911
1912#[derive(Debug, Clone, PartialEq, Eq, Hash)]
1913pub struct Sysroot {
1914    pub compiler: Compiler,
1915    /// See [`Std::force_recompile`].
1916    force_recompile: bool,
1917}
1918
1919impl Sysroot {
1920    pub(crate) fn new(compiler: Compiler) -> Self {
1921        Sysroot { compiler, force_recompile: false }
1922    }
1923}
1924
1925impl Step for Sysroot {
1926    type Output = PathBuf;
1927
1928    /// Returns the sysroot that `compiler` is supposed to use.
1929    /// For the stage0 compiler, this is stage0-sysroot (because of the initial std build).
1930    /// For all other stages, it's the same stage directory that the compiler lives in.
1931    fn run(self, builder: &Builder<'_>) -> PathBuf {
1932        let compiler = self.compiler;
1933        let host_dir = builder.out.join(compiler.host);
1934
1935        let sysroot_dir = |stage| {
1936            if stage == 0 {
1937                host_dir.join("stage0-sysroot")
1938            } else if self.force_recompile && stage == compiler.stage {
1939                host_dir.join(format!("stage{stage}-test-sysroot"))
1940            } else if builder.download_rustc() && compiler.stage != builder.top_stage {
1941                host_dir.join("ci-rustc-sysroot")
1942            } else {
1943                host_dir.join(format!("stage{stage}"))
1944            }
1945        };
1946        let sysroot = sysroot_dir(compiler.stage);
1947        trace!(stage = ?compiler.stage, ?sysroot);
1948
1949        builder.do_if_verbose(|| {
1950            println!("Removing sysroot {} to avoid caching bugs", sysroot.display())
1951        });
1952        let _ = fs::remove_dir_all(&sysroot);
1953        t!(fs::create_dir_all(&sysroot));
1954
1955        // In some cases(see https://github.com/rust-lang/rust/issues/109314), when the stage0
1956        // compiler relies on more recent version of LLVM than the stage0 compiler, it may not
1957        // be able to locate the correct LLVM in the sysroot. This situation typically occurs
1958        // when we upgrade LLVM version while the stage0 compiler continues to use an older version.
1959        //
1960        // Make sure to add the correct version of LLVM into the stage0 sysroot.
1961        if compiler.stage == 0 {
1962            dist::maybe_install_llvm_target(builder, compiler.host, &sysroot);
1963        }
1964
1965        // If we're downloading a compiler from CI, we can use the same compiler for all stages other than 0.
1966        if builder.download_rustc() && compiler.stage != 0 {
1967            assert_eq!(
1968                builder.config.host_target, compiler.host,
1969                "Cross-compiling is not yet supported with `download-rustc`",
1970            );
1971
1972            // #102002, cleanup old toolchain folders when using download-rustc so people don't use them by accident.
1973            for stage in 0..=2 {
1974                if stage != compiler.stage {
1975                    let dir = sysroot_dir(stage);
1976                    if !dir.ends_with("ci-rustc-sysroot") {
1977                        let _ = fs::remove_dir_all(dir);
1978                    }
1979                }
1980            }
1981
1982            // Copy the compiler into the correct sysroot.
1983            //
1984            // FIXME(#156525): investigate if this is still needed.
1985            //
1986            // NOTE(#108767): We intentionally don't copy `rustc-dev` artifacts until they're
1987            // requested with `builder.ensure(Rustc)`. This fixes an issue where we'd have multiple
1988            // copies of libc in the sysroot with no way to tell which to load. There are a few
1989            // quirks of bootstrap that interact to make this reliable:
1990            // 1. The order `Step`s are run is hard-coded in `builder.rs` and not configurable. This
1991            //    avoids e.g. reordering `test::UiFulldeps` before `test::Ui` and causing the latter
1992            //    to fail because of duplicate metadata.
1993            // 2. The sysroot is deleted and recreated between each invocation, so running `x test
1994            //    ui-fulldeps && x test ui` can't cause failures.
1995            let mut filtered_files = Vec::new();
1996            let mut add_filtered_files = |suffix, contents| {
1997                for path in contents {
1998                    let path = Path::new(&path);
1999                    if path.parent().is_some_and(|parent| parent.ends_with(suffix)) {
2000                        filtered_files.push(path.file_name().unwrap().to_owned());
2001                    }
2002                }
2003            };
2004            let suffix = format!("lib/rustlib/{}/lib", compiler.host);
2005            add_filtered_files(suffix.as_str(), builder.config.ci_rustc_dev_contents());
2006            // NOTE: we can't copy std eagerly because `stage2-test-sysroot` needs to have only the
2007            // newly compiled std, not the downloaded std.
2008            add_filtered_files("lib", builder.config.ci_rust_std_contents());
2009
2010            let filtered_extensions = [
2011                OsStr::new("rmeta"),
2012                OsStr::new("rlib"),
2013                // FIXME: this is wrong when compiler.host != build, but we don't support that today
2014                OsStr::new(std::env::consts::DLL_EXTENSION),
2015            ];
2016            let ci_rustc_dir = builder.config.ci_rustc_dir();
2017            builder.cp_link_filtered(&ci_rustc_dir, &sysroot, &|path| {
2018                if path.extension().is_none_or(|ext| !filtered_extensions.contains(&ext)) {
2019                    return true;
2020                }
2021                if !path.parent().is_none_or(|p| p.ends_with(&suffix)) {
2022                    return true;
2023                }
2024                filtered_files.iter().all(|f| f != path.file_name().unwrap())
2025            });
2026        }
2027
2028        // Symlink the source root into the same location inside the sysroot,
2029        // where `rust-src` component would go (`$sysroot/lib/rustlib/src/rust`),
2030        // so that any tools relying on `rust-src` also work for local builds,
2031        // and also for translating the virtual `/rustc/$hash` back to the real
2032        // directory (for running tests with `rust.remap-debuginfo = true`).
2033        if compiler.stage != 0 {
2034            let sysroot_lib_rustlib_src = sysroot.join("lib/rustlib/src");
2035            t!(fs::create_dir_all(&sysroot_lib_rustlib_src));
2036            let sysroot_lib_rustlib_src_rust = sysroot_lib_rustlib_src.join("rust");
2037            if let Err(e) =
2038                symlink_dir(&builder.config, &builder.src, &sysroot_lib_rustlib_src_rust)
2039            {
2040                eprintln!(
2041                    "ERROR: creating symbolic link `{}` to `{}` failed with {}",
2042                    sysroot_lib_rustlib_src_rust.display(),
2043                    builder.src.display(),
2044                    e,
2045                );
2046                if builder.config.rust_remap_debuginfo {
2047                    eprintln!(
2048                        "ERROR: some `tests/ui` tests will fail when lacking `{}`",
2049                        sysroot_lib_rustlib_src_rust.display(),
2050                    );
2051                }
2052                helpers::exit_process(1);
2053            }
2054        }
2055
2056        // rustc-src component is already part of CI rustc's sysroot
2057        if !builder.download_rustc() {
2058            let sysroot_lib_rustlib_rustcsrc = sysroot.join("lib/rustlib/rustc-src");
2059            t!(fs::create_dir_all(&sysroot_lib_rustlib_rustcsrc));
2060            let sysroot_lib_rustlib_rustcsrc_rust = sysroot_lib_rustlib_rustcsrc.join("rust");
2061            if let Err(e) =
2062                symlink_dir(&builder.config, &builder.src, &sysroot_lib_rustlib_rustcsrc_rust)
2063            {
2064                eprintln!(
2065                    "ERROR: creating symbolic link `{}` to `{}` failed with {}",
2066                    sysroot_lib_rustlib_rustcsrc_rust.display(),
2067                    builder.src.display(),
2068                    e,
2069                );
2070                helpers::exit_process(1);
2071            }
2072        }
2073
2074        sysroot
2075    }
2076}
2077
2078/// Prepare a compiler sysroot.
2079///
2080/// The sysroot may contain various things useful for running the compiler, like linkers and
2081/// linker wrappers (LLD, LLVM bitcode linker, etc.).
2082///
2083/// This will assemble a compiler in `build/$target/stage$stage`.
2084#[derive(Debug, Clone, PartialEq, Eq, Hash)]
2085pub struct Assemble {
2086    /// The compiler which we will produce in this step. Assemble itself will
2087    /// take care of ensuring that the necessary prerequisites to do so exist,
2088    /// that is, this can be e.g. a stage2 compiler and Assemble will build
2089    /// the previous stages for you.
2090    pub target_compiler: Compiler,
2091}
2092
2093impl CommandLineStep for Assemble {
2094    type Output = Compiler;
2095    const IS_HOST: bool = true;
2096
2097    fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2098        run.path("compiler/rustc").path("compiler")
2099    }
2100
2101    fn make_run(run: RunConfig<'_>) {
2102        run.builder.ensure(Assemble {
2103            target_compiler: run.builder.compiler(run.builder.top_stage, run.target),
2104        });
2105    }
2106
2107    fn run(self, builder: &Builder<'_>) -> Compiler {
2108        let target_compiler = self.target_compiler;
2109
2110        if target_compiler.stage == 0 {
2111            trace!("stage 0 build compiler is always available, simply returning");
2112            assert_eq!(
2113                builder.config.host_target, target_compiler.host,
2114                "Cannot obtain compiler for non-native build triple at stage 0"
2115            );
2116            // The stage 0 compiler for the build triple is always pre-built.
2117            return target_compiler;
2118        }
2119
2120        // We prepend this bin directory to the user PATH when linking Rust binaries. To
2121        // avoid shadowing the system LLD we rename the LLD we provide to `rust-lld`.
2122        let libdir = builder.sysroot_target_libdir(target_compiler, target_compiler.host);
2123        let libdir_bin = libdir.parent().unwrap().join("bin");
2124        t!(fs::create_dir_all(&libdir_bin));
2125
2126        if builder.config.llvm_enabled(target_compiler.host) {
2127            trace!("target_compiler.host" = ?target_compiler.host, "LLVM enabled");
2128
2129            let target = target_compiler.host;
2130            let llvm_output = builder.ensure(llvm::Llvm { target });
2131            if !builder.config.dry_run() && builder.config.llvm_tools_enabled {
2132                trace!("LLVM tools enabled");
2133
2134                let host_llvm = builder.ensure(llvm::Llvm { target: builder.host_target });
2135                let host_llvm_bin_dir = command(host_llvm.llvm_config())
2136                    .arg("--bindir")
2137                    .cached()
2138                    .run_capture_stdout(builder)
2139                    .stdout()
2140                    .trim()
2141                    .to_string();
2142
2143                let llvm_bin_dir = if target == builder.host_target {
2144                    PathBuf::from(host_llvm_bin_dir)
2145                } else {
2146                    // If we're cross-compiling, we cannot run the target llvm-config in order to
2147                    // figure out where binaries are located. We thus have to guess.
2148                    let external_llvm_config = builder
2149                        .config
2150                        .target_config
2151                        .get(&target)
2152                        .and_then(|t| t.llvm_config.clone());
2153                    if let Some(external_llvm_config) = external_llvm_config {
2154                        // If we have an external LLVM, just hope that the bindir is the directory
2155                        // where the LLVM config is located
2156                        external_llvm_config.parent().unwrap().to_path_buf()
2157                    } else {
2158                        // If not, then take the path of the host bindir of the host LLVM,
2159                        // relative to its output build directory, and then apply it to the target
2160                        // LLVM output build directory.
2161                        let host_llvm_out = host_llvm.root_dir();
2162                        let target_llvm_out = llvm_output.root_dir();
2163                        if let Ok(relative_path) =
2164                            Path::new(&host_llvm_bin_dir).strip_prefix(host_llvm_out)
2165                        {
2166                            target_llvm_out.join(relative_path)
2167                        } else {
2168                            // This is the most desperate option, just replace the host target with
2169                            // the actual target in the directory path...
2170                            PathBuf::from(
2171                                host_llvm_bin_dir
2172                                    .replace(&*builder.host_target.triple, &target.triple),
2173                            )
2174                        }
2175                    }
2176                };
2177
2178                // Since we've already built the LLVM tools, install them to the sysroot.
2179                // This is the equivalent of installing the `llvm-tools-preview` component via
2180                // rustup, and lets developers use a locally built toolchain to
2181                // build projects that expect llvm tools to be present in the sysroot
2182                // (e.g. the `bootimage` crate).
2183
2184                #[cfg(feature = "tracing")]
2185                let _llvm_tools_span =
2186                    span!(tracing::Level::TRACE, "installing llvm tools to sysroot", ?libdir_bin)
2187                        .entered();
2188                for tool in dist::LLVM_TOOLS {
2189                    trace!("installing `{tool}`");
2190                    let tool_exe = exe(tool, target_compiler.host);
2191                    let src_path = llvm_bin_dir.join(&tool_exe);
2192
2193                    if !src_path.exists() {
2194                        // When using `download-ci-llvm`, some of the tools may not exist, so skip trying to copy them.
2195                        if llvm_output.kind() == LlvmKind::DownloadedFromCi {
2196                            eprintln!("{} does not exist; skipping copy", src_path.display());
2197                            continue;
2198                        }
2199                        // On older LLVM versions, llubi isn't in the default tools. Remove this
2200                        // code when LLVM 23 is the minimum version.
2201                        if *tool == "llubi" {
2202                            continue;
2203                        }
2204                    }
2205
2206                    // There is a chance that these tools are being installed from an external LLVM.
2207                    // Use `Builder::resolve_symlink_and_copy` instead of `Builder::copy_link` to ensure
2208                    // we are copying the original file not the symlinked path, which causes issues for
2209                    // tarball distribution.
2210                    //
2211                    // See https://github.com/rust-lang/rust/issues/135554.
2212                    builder.resolve_symlink_and_copy(&src_path, &libdir_bin.join(&tool_exe));
2213                }
2214            }
2215        }
2216
2217        let maybe_install_llvm_bitcode_linker = || {
2218            if builder.config.llvm_bitcode_linker_enabled {
2219                trace!("llvm-bitcode-linker enabled, installing");
2220                let llvm_bitcode_linker = builder.ensure(
2221                    crate::core::build_steps::tool::LlvmBitcodeLinker::from_target_compiler(
2222                        builder,
2223                        target_compiler,
2224                    ),
2225                );
2226
2227                // Copy the llvm-bitcode-linker to the self-contained binary directory
2228                let bindir_self_contained = builder
2229                    .sysroot(target_compiler)
2230                    .join(format!("lib/rustlib/{}/bin/self-contained", target_compiler.host));
2231                let tool_exe = exe("llvm-bitcode-linker", target_compiler.host);
2232
2233                t!(fs::create_dir_all(&bindir_self_contained));
2234                builder.copy_link(
2235                    &llvm_bitcode_linker.tool_path,
2236                    &bindir_self_contained.join(tool_exe),
2237                    FileType::Executable,
2238                );
2239            }
2240        };
2241
2242        // If we're downloading a compiler from CI, we can use the same compiler for all stages other than 0.
2243        if builder.download_rustc() {
2244            trace!("`download-rustc` requested, reusing CI compiler for stage > 0");
2245
2246            builder.std(target_compiler, target_compiler.host);
2247            let sysroot =
2248                builder.ensure(Sysroot { compiler: target_compiler, force_recompile: false });
2249            // Ensure that `libLLVM.so` ends up in the newly created target directory,
2250            // so that tools using `rustc_private` can use it.
2251            dist::maybe_install_llvm_target(builder, target_compiler.host, &sysroot);
2252            // Lower stages use `ci-rustc-sysroot`, not stageN
2253            if target_compiler.stage == builder.top_stage {
2254                builder.info(&format!("Creating a sysroot for stage{stage} compiler (use `rustup toolchain link 'name' build/host/stage{stage}`)", stage = target_compiler.stage));
2255            }
2256
2257            // FIXME: this is incomplete, we do not copy a bunch of other stuff to the downloaded
2258            // sysroot...
2259            maybe_install_llvm_bitcode_linker();
2260
2261            return target_compiler;
2262        }
2263
2264        // Get the compiler that we'll use to bootstrap ourselves.
2265        //
2266        // Note that this is where the recursive nature of the bootstrap
2267        // happens, as this will request the previous stage's compiler on
2268        // downwards to stage 0.
2269        //
2270        // Also note that we're building a compiler for the host platform. We
2271        // only assume that we can run `build` artifacts, which means that to
2272        // produce some other architecture compiler we need to start from
2273        // `build` to get there.
2274        //
2275        // FIXME: It may be faster if we build just a stage 1 compiler and then
2276        //        use that to bootstrap this compiler forward.
2277        debug!(
2278            "ensuring build compiler is available: compiler(stage = {}, host = {:?})",
2279            target_compiler.stage - 1,
2280            builder.config.host_target,
2281        );
2282        let build_compiler =
2283            builder.compiler(target_compiler.stage - 1, builder.config.host_target);
2284
2285        // Build enzyme
2286        if builder.config.llvm_enzyme {
2287            debug!("`llvm_enzyme` requested");
2288            let enzyme = builder.ensure(llvm::Enzyme { target: build_compiler.host });
2289            let target_libdir =
2290                builder.sysroot_target_libdir(target_compiler, target_compiler.host);
2291            let target_dst_lib = target_libdir.join(enzyme.enzyme_filename());
2292            builder.copy_link(&enzyme.enzyme_path(), &target_dst_lib, FileType::NativeLibrary);
2293        }
2294
2295        if builder.config.llvm_offload && !builder.config.dry_run() {
2296            debug!("`llvm_offload` requested");
2297            if builder.is_llvm_enabled_for(builder.config.host_target) {
2298                let rust_offload =
2299                    builder.ensure(llvm::RustOffload { target: build_compiler.host });
2300                let target_libdir =
2301                    builder.sysroot_target_libdir(target_compiler, target_compiler.host);
2302                let rust_offload_dst_lib = target_libdir.join(rust_offload.rust_offload_filename());
2303                builder.copy_link(
2304                    &rust_offload.rust_offload_path(),
2305                    &rust_offload_dst_lib,
2306                    FileType::NativeLibrary,
2307                );
2308
2309                let omp_offload = builder.ensure(llvm::OmpOffload { target: build_compiler.host });
2310                for p in omp_offload.artifact_paths_with_symlink_targets() {
2311                    let libname = p.file_name().unwrap();
2312                    let dst_lib = target_libdir.join(libname);
2313                    builder.resolve_symlink_and_copy(&p, &dst_lib);
2314                }
2315            }
2316        }
2317
2318        // Build the libraries for this compiler to link to (i.e., the libraries
2319        // it uses at runtime).
2320        debug!(
2321            ?build_compiler,
2322            "target_compiler.host" = ?target_compiler.host,
2323            "building compiler libraries to link to"
2324        );
2325
2326        // It is possible that an uplift has happened, so we override build_compiler here.
2327        let BuiltRustc { build_compiler } =
2328            builder.ensure(Rustc::new(build_compiler, target_compiler.host));
2329
2330        let stage = target_compiler.stage;
2331        let host = target_compiler.host;
2332        let (host_info, dir_name) = if build_compiler.host == host {
2333            ("".into(), "host".into())
2334        } else {
2335            (format!(" ({host})"), host.to_string())
2336        };
2337        // NOTE: "Creating a sysroot" is somewhat inconsistent with our internal terminology, since
2338        // sysroots can temporarily be empty until we put the compiler inside. However,
2339        // `ensure(Sysroot)` isn't really something that's user facing, so there shouldn't be any
2340        // ambiguity.
2341        let msg = format!(
2342            "Creating a sysroot for stage{stage} compiler{host_info} (use `rustup toolchain link 'name' build/{dir_name}/stage{stage}`)"
2343        );
2344        builder.info(&msg);
2345
2346        // Link in all dylibs to the libdir
2347        let stamp = build_stamp::librustc_stamp(builder, build_compiler, target_compiler.host);
2348        let proc_macros = builder
2349            .read_stamp_file(&stamp)
2350            .into_iter()
2351            .filter_map(|(path, dependency_type)| {
2352                if dependency_type == DependencyType::Host {
2353                    Some(path.file_name().unwrap().to_owned().into_string().unwrap())
2354                } else {
2355                    None
2356                }
2357            })
2358            .collect::<HashSet<_>>();
2359
2360        let sysroot = builder.sysroot(target_compiler);
2361        let rustc_libdir = builder.rustc_libdir(target_compiler);
2362        t!(fs::create_dir_all(&rustc_libdir));
2363        let src_libdir = builder.sysroot_target_libdir(build_compiler, host);
2364        for f in builder.read_dir(&src_libdir) {
2365            let filename = f.file_name().into_string().unwrap();
2366
2367            let is_proc_macro = proc_macros.contains(&filename);
2368            let is_dylib_or_debug = is_dylib(&f.path()) || is_debug_info(&filename);
2369
2370            // `rustc_driver` statically links to stdlib, so do not copy the libstd dynamic library file
2371            let can_be_rustc_dynamic_dep =
2372                !(filename.starts_with("std-") || filename.starts_with("libstd-"));
2373
2374            if is_dylib_or_debug && can_be_rustc_dynamic_dep && !is_proc_macro {
2375                builder.copy_link(&f.path(), &rustc_libdir.join(&filename), FileType::Regular);
2376            }
2377        }
2378
2379        {
2380            #[cfg(feature = "tracing")]
2381            let _codegen_backend_span =
2382                span!(tracing::Level::DEBUG, "building requested codegen backends").entered();
2383
2384            for backend in builder.config.enabled_codegen_backends(target_compiler.host) {
2385                // FIXME: this is a horrible hack used to make `x check` work when other codegen
2386                // backends are enabled.
2387                // `x check` will check stage 1 rustc, which copies its rmetas to the stage0 sysroot.
2388                // Then it checks codegen backends, which correctly use these rmetas.
2389                // Then it needs to check std, but for that it needs to build stage 1 rustc.
2390                // This copies the build rmetas into the stage0 sysroot, effectively poisoning it,
2391                // because we then have both check and build rmetas in the same sysroot.
2392                // That would be fine on its own. However, when another codegen backend is enabled,
2393                // then building stage 1 rustc implies also building stage 1 codegen backend (even if
2394                // it isn't used for anything). And since that tries to use the poisoned
2395                // rmetas, it fails to build.
2396                // We don't actually need to build rustc-private codegen backends for checking std,
2397                // so instead we skip that.
2398                // Note: this would be also an issue for other rustc-private tools, but that is "solved"
2399                // by check::Std being last in the list of checked things (see
2400                // `Builder::get_step_descriptions`).
2401                if builder.kind == Kind::Check && builder.top_stage == 1 {
2402                    continue;
2403                }
2404
2405                let prepare_compilers = || {
2406                    RustcPrivateCompilers::from_build_and_target_compiler(
2407                        build_compiler,
2408                        target_compiler,
2409                    )
2410                };
2411
2412                match backend {
2413                    CodegenBackendKind::Cranelift => {
2414                        let stamp = builder
2415                            .ensure(CraneliftCodegenBackend { compilers: prepare_compilers() });
2416                        copy_codegen_backends_to_sysroot(builder, stamp, target_compiler);
2417                    }
2418                    CodegenBackendKind::Gcc => {
2419                        // We need to build cg_gcc for the host target of the compiler which we
2420                        // build here, which is `target_compiler`.
2421                        // But we also need to build libgccjit for some additional targets, in
2422                        // the most general case.
2423                        // 1. We need to build (target_compiler.host, stdlib target) libgccjit
2424                        // for all stdlibs that we build, so that cg_gcc can be used to build code
2425                        // for all those targets.
2426                        // 2. We need to build (target_compiler.host, target_compiler.host)
2427                        // libgccjit, so that the target compiler can compile host code (e.g. proc
2428                        // macros).
2429                        // 3. We need to build (target_compiler.host, host target) libgccjit
2430                        // for all *host targets* that we build, so that cg_gcc can be used to
2431                        // build a (possibly cross-compiled) stage 2+ rustc.
2432                        //
2433                        // Assume that we are on host T1 and we do a stage2 build of rustc for T2.
2434                        // We want the T2 rustc compiler to be able to use cg_gcc and build code
2435                        // for T2 (host) and T3 (target). We also want to build the stage2 compiler
2436                        // itself using cg_gcc.
2437                        // This could correspond to the following bootstrap invocation:
2438                        // `x build rustc --build T1 --host T2 --target T3 --set codegen-backends=['gcc', 'llvm']`
2439                        //
2440                        // For that, we will need the following GCC target pairs:
2441                        // 1. T1 -> T2 (to cross-compile a T2 rustc using cg_gcc running on T1)
2442                        // 2. T2 -> T2 (to build host code with the stage 2 rustc running on T2)
2443                        // 3. T2 -> T3 (to cross-compile code with the stage 2 rustc running on T2)
2444                        //
2445                        // FIXME: this set of targets is *maximal*, in reality we might need
2446                        // less libgccjits at this current build stage. Try to reduce the set of
2447                        // GCC dylibs built below by taking a look at the current stage and whether
2448                        // cg_gcc is used as the default codegen backend.
2449
2450                        // First, the easy part: build cg_gcc
2451                        let compilers = prepare_compilers();
2452                        let cg_gcc = builder
2453                            .ensure(GccCodegenBackend::for_target(compilers, target_compiler.host));
2454                        copy_codegen_backends_to_sysroot(builder, cg_gcc.stamp, target_compiler);
2455
2456                        // Then, the hard part: prepare all required libgccjit dylibs.
2457
2458                        // The left side of the target pairs below is implied. It has to match the
2459                        // host target on which libgccjit will be used, which is the host target of
2460                        // `target_compiler`. We only pass the right side of the target pairs to
2461                        // the `GccDylibSet` constructor.
2462                        let mut targets = HashSet::new();
2463                        // Add all host targets, so that we are able to build host code in this
2464                        // bootstrap invocation using cg_gcc.
2465                        for target in &builder.hosts {
2466                            targets.insert(*target);
2467                        }
2468                        // Add all stdlib targets, so that the built rustc can produce code for them
2469                        for target in &builder.targets {
2470                            targets.insert(*target);
2471                        }
2472                        // Add the host target of the built rustc itself, so that it can build
2473                        // host code (e.g. proc macros) using cg_gcc.
2474                        targets.insert(compilers.target_compiler().host);
2475
2476                        // Now build all the required libgccjit dylibs
2477                        let dylib_set = GccDylibSet::build(
2478                            builder,
2479                            compilers.target_compiler().host,
2480                            targets.into_iter().collect(),
2481                        );
2482
2483                        // And then copy all the dylibs to the corresponding
2484                        // library sysroots, so that they are available for cg_gcc.
2485                        dylib_set.install_to(builder, target_compiler);
2486                    }
2487                    CodegenBackendKind::Llvm | CodegenBackendKind::Custom(_) => continue,
2488                }
2489            }
2490        }
2491
2492        if builder.config.lld_enabled {
2493            let lld_wrapper =
2494                builder.ensure(crate::core::build_steps::tool::LldWrapper::for_use_by_compiler(
2495                    builder,
2496                    target_compiler,
2497                ));
2498            copy_lld_artifacts(builder, lld_wrapper, target_compiler);
2499        }
2500
2501        if builder.config.llvm_enabled(target_compiler.host) && builder.config.llvm_tools_enabled {
2502            debug!(
2503                "llvm and llvm tools enabled; copying `llvm-objcopy` as `rust-objcopy` to \
2504                workaround faulty homebrew `strip`s"
2505            );
2506
2507            // `llvm-strip` is used by rustc, which is actually just a symlink to `llvm-objcopy`, so
2508            // copy and rename `llvm-objcopy`.
2509            //
2510            // But only do so if llvm-tools are enabled, as bootstrap compiler might not contain any
2511            // LLVM tools, e.g. for cg_clif.
2512            // See <https://github.com/rust-lang/rust/issues/132719>.
2513            let src_exe = exe("llvm-objcopy", target_compiler.host);
2514            let dst_exe = exe("rust-objcopy", target_compiler.host);
2515            builder.copy_link(
2516                &libdir_bin.join(src_exe),
2517                &libdir_bin.join(dst_exe),
2518                FileType::Executable,
2519            );
2520        }
2521
2522        // In addition to `rust-lld` also install `wasm-component-ld` when
2523        // is enabled. This is used by targets that produce WebAssembly
2524        // components in Rust such as `wasm32-wasip{2,3}`.
2525        if builder.tool_enabled("wasm-component-ld") {
2526            let wasm_component = builder.ensure(
2527                crate::core::build_steps::tool::WasmComponentLd::for_use_by_compiler(
2528                    builder,
2529                    target_compiler,
2530                ),
2531            );
2532            builder.copy_link(
2533                &wasm_component.tool_path,
2534                &libdir_bin.join(wasm_component.tool_path.file_name().unwrap()),
2535                FileType::Executable,
2536            );
2537        }
2538
2539        maybe_install_llvm_bitcode_linker();
2540
2541        // Ensure that `libLLVM.so` ends up in the newly build compiler directory,
2542        // so that it can be found when the newly built `rustc` is run.
2543        debug!(
2544            "target_compiler.host" = ?target_compiler.host,
2545            ?sysroot,
2546            "ensuring availability of `libLLVM.so` in compiler directory"
2547        );
2548        dist::maybe_install_llvm_runtime(builder, target_compiler.host, &sysroot);
2549        dist::maybe_install_llvm_target(builder, target_compiler.host, &sysroot);
2550
2551        // Link the compiler binary itself into place
2552        let out_dir = builder.cargo_out(build_compiler, Mode::Rustc, host);
2553        let rustc = out_dir.join(exe("rustc-main", host));
2554        let bindir = sysroot.join("bin");
2555        t!(fs::create_dir_all(bindir));
2556        let compiler = builder.rustc(target_compiler);
2557        debug!(src = ?rustc, dst = ?compiler, "linking compiler binary itself");
2558        builder.copy_link(&rustc, &compiler, FileType::Executable);
2559
2560        target_compiler
2561    }
2562}
2563
2564/// Link some files into a rustc sysroot.
2565///
2566/// For a particular stage this will link the file listed in `stamp` into the
2567/// `sysroot_dst` provided.
2568#[track_caller]
2569pub fn add_to_sysroot(
2570    builder: &Builder<'_>,
2571    sysroot_dst: &Path,
2572    sysroot_host_dst: &Path,
2573    stamp: &BuildStamp,
2574) {
2575    let self_contained_dst = &sysroot_dst.join("self-contained");
2576    t!(fs::create_dir_all(sysroot_dst));
2577    t!(fs::create_dir_all(sysroot_host_dst));
2578    t!(fs::create_dir_all(self_contained_dst));
2579
2580    let mut crates = HashMap::new();
2581    for (path, dependency_type) in builder.read_stamp_file(stamp) {
2582        let filename = path.file_name().unwrap().to_str().unwrap();
2583        let dst = match dependency_type {
2584            DependencyType::Host => {
2585                if sysroot_dst == sysroot_host_dst {
2586                    // Only insert the part before the . to deduplicate different files for the same crate.
2587                    // For example foo-1234.dll and foo-1234.dll.lib.
2588                    crates.insert(filename.split_once('.').unwrap().0.to_owned(), path.clone());
2589                }
2590
2591                sysroot_host_dst
2592            }
2593            DependencyType::Target => {
2594                // Only insert the part before the . to deduplicate different files for the same crate.
2595                // For example foo-1234.dll and foo-1234.dll.lib.
2596                crates.insert(filename.split_once('.').unwrap().0.to_owned(), path.clone());
2597
2598                sysroot_dst
2599            }
2600            DependencyType::TargetSelfContained => self_contained_dst,
2601        };
2602        builder.copy_link(&path, &dst.join(filename), FileType::Regular);
2603    }
2604
2605    // Check that none of the rustc_* crates have multiple versions. Otherwise using them from
2606    // the sysroot would cause ambiguity errors. We do allow rustc_hash however as it is an
2607    // external dependency that we build multiple copies of. It is re-exported by
2608    // rustc_data_structures, so not being able to use extern crate rustc_hash; is not a big
2609    // issue.
2610    let mut seen_crates = HashMap::new();
2611    for (filestem, path) in crates {
2612        if !filestem.contains("rustc_") || filestem.contains("rustc_hash") {
2613            continue;
2614        }
2615        if let Some(other_path) =
2616            seen_crates.insert(filestem.split_once('-').unwrap().0.to_owned(), path.clone())
2617        {
2618            panic!(
2619                "duplicate rustc crate {}\n-  first copy at {}\n- second copy at {}",
2620                filestem.split_once('-').unwrap().0.to_owned(),
2621                other_path.display(),
2622                path.display(),
2623            );
2624        }
2625    }
2626}
2627
2628/// Specifies which rlib/rmeta artifacts outputted by Cargo should be put into the resulting
2629/// build stamp, and thus be included in dist archives and copied into sysroots by default.
2630/// Note that some kinds of artifacts are copied automatically (e.g. native libraries).
2631pub enum ArtifactKeepMode {
2632    /// Only keep .so files, ignore .rlib and .rmeta files
2633    OnlyDylib,
2634    /// Only keep .rmeta files, ignore .rlib files
2635    OnlyRmeta,
2636    /// Keep both .rlib and .rmeta files.
2637    BothRlibAndRmeta,
2638    /// Custom logic for keeping an artifact
2639    /// It receives the filename of an artifact, and returns true if it should be kept.
2640    Custom(Box<dyn Fn(&str) -> bool>),
2641}
2642
2643pub fn run_cargo(
2644    builder: &Builder<'_>,
2645    cargo: Cargo,
2646    tail_args: Vec<String>,
2647    stamp: &BuildStamp,
2648    additional_target_deps: Vec<(PathBuf, DependencyType)>,
2649    artifact_keep_mode: ArtifactKeepMode,
2650) -> Vec<PathBuf> {
2651    // `target_root_dir` looks like $dir/$target/release
2652    let target_root_dir = stamp.path().parent().unwrap();
2653    // `target_build_dir` looks like $dir/$target/release/build
2654    let target_build_dir = target_root_dir.join("build");
2655    // `host_root_dir` looks like $dir/release
2656    let host_root_dir = target_root_dir
2657        .parent()
2658        .unwrap() // chop off `release`
2659        .parent()
2660        .unwrap() // chop off `$target`
2661        .join(target_root_dir.file_name().unwrap());
2662
2663    // Spawn Cargo slurping up its JSON output. We'll start building up the
2664    // `deps` array of all files it generated along with a `toplevel` array of
2665    // files we need to probe for later.
2666    let mut deps = Vec::new();
2667    let mut toplevel = Vec::new();
2668    let ok = stream_cargo(builder, cargo, tail_args, &mut |msg| {
2669        let (filenames_vec, crate_types) = match msg {
2670            CargoMessage::CompilerArtifact {
2671                filenames,
2672                target: CargoTarget { crate_types },
2673                ..
2674            } => {
2675                let mut f: Vec<String> = filenames.into_iter().map(|s| s.into_owned()).collect();
2676                f.sort(); // Sort the filenames
2677                (f, crate_types)
2678            }
2679            _ => return,
2680        };
2681        for filename in filenames_vec {
2682            // Skip files like executables
2683            let keep = if filename.ends_with(".lib")
2684                || filename.ends_with(".a")
2685                || is_debug_info(&filename)
2686                || is_dylib(Path::new(&*filename))
2687            {
2688                // Always keep native libraries, rust dylibs and debuginfo
2689                true
2690            } else {
2691                match &artifact_keep_mode {
2692                    ArtifactKeepMode::OnlyDylib => false,
2693                    ArtifactKeepMode::OnlyRmeta => filename.ends_with(".rmeta"),
2694                    ArtifactKeepMode::BothRlibAndRmeta => {
2695                        filename.ends_with(".rmeta") || filename.ends_with(".rlib")
2696                    }
2697                    ArtifactKeepMode::Custom(func) => func(&filename),
2698                }
2699            };
2700
2701            if !keep {
2702                continue;
2703            }
2704
2705            let filename = Path::new(&*filename);
2706
2707            // If this was an output file in the "host dir" we don't actually
2708            // worry about it, it's not relevant for us
2709            if filename.starts_with(&host_root_dir) {
2710                // Unless it's a proc macro used in the compiler
2711                if crate_types.iter().any(|t| t == "proc-macro") {
2712                    // Cargo will compile proc-macros that are part of the rustc workspace twice.
2713                    // Once as libmacro-hash.so as build dependency and once as libmacro.so as
2714                    // output artifact. Only keep the former to avoid ambiguity when trying to use
2715                    // the proc macro from the sysroot.
2716                    if filename.file_name().unwrap().to_str().unwrap().contains("-") {
2717                        deps.push((filename.to_path_buf(), DependencyType::Host));
2718                    }
2719                }
2720                continue;
2721            }
2722
2723            // If this was output in the `deps` dir then this is a precise file
2724            // name (hash included) so we start tracking it.
2725            if filename.starts_with(&target_build_dir) {
2726                deps.push((filename.to_path_buf(), DependencyType::Target));
2727                continue;
2728            }
2729
2730            // Otherwise this was a "top level artifact" which right now doesn't
2731            // have a hash in the name, but there's a version of this file in
2732            // the `deps` folder which *does* have a hash in the name. That's
2733            // the one we'll want to we'll probe for it later.
2734            //
2735            // We do not use `Path::file_stem` or `Path::extension` here,
2736            // because some generated files may have multiple extensions e.g.
2737            // `std-<hash>.dll.lib` on Windows. The aforementioned methods only
2738            // split the file name by the last extension (`.lib`) while we need
2739            // to split by all extensions (`.dll.lib`).
2740            let expected_len = t!(filename.metadata()).len();
2741            let filename = filename.file_name().unwrap().to_str().unwrap();
2742            let mut parts = filename.splitn(2, '.');
2743            let file_stem = parts.next().unwrap().to_owned();
2744            let extension = parts.next().unwrap().to_owned();
2745
2746            toplevel.push((file_stem, extension, expected_len));
2747        }
2748    });
2749
2750    if !ok {
2751        helpers::exit_process(1);
2752    }
2753
2754    if builder.config.dry_run() {
2755        return Vec::new();
2756    }
2757
2758    // Ok now we need to actually find all the files listed in `toplevel`. We've
2759    // got a list of prefix/extensions and we basically just need to find the
2760    // most recent file in the `build` folder corresponding to each one.
2761    //
2762    // Cargo's build folder is structured as `build/<pkg>/<hash>/out/<artifacts>` so
2763    // we need to traverse multiple directory layers to get to actual files.
2764    let read_dir = |path: &Path| path.read_dir().ok().into_iter().flatten().filter_map(Result::ok);
2765    let contents = target_build_dir
2766        .read_dir()
2767        .unwrap_or_else(|e| panic!("Couldn't read {}: {}", target_build_dir.display(), e))
2768        .map(|e| e.unwrap())
2769        .flat_map(|e| read_dir(&e.path()))
2770        .flat_map(|e| read_dir(&e.path()))
2771        .flat_map(|e| read_dir(&e.path()))
2772        .map(|e| (e.path(), e.file_name().into_string().unwrap(), t!(e.metadata())))
2773        .collect::<Vec<_>>();
2774    for (prefix, extension, expected_len) in toplevel {
2775        let candidates = contents.iter().filter(|&(_, filename, meta)| {
2776            meta.len() == expected_len
2777                && filename
2778                    .strip_prefix(&prefix[..])
2779                    .map(|s| s.starts_with('-') && s.ends_with(&extension[..]))
2780                    .unwrap_or(false)
2781        });
2782        let max = candidates.max_by_key(|&(_, _, metadata)| {
2783            metadata.modified().expect("mtime should be available on all relevant OSes")
2784        });
2785        let path_to_add = match max {
2786            Some(triple) => triple.0.to_str().unwrap(),
2787            None => panic!("no output generated for {prefix:?} {extension:?}"),
2788        };
2789        if is_dylib(Path::new(path_to_add)) {
2790            let candidate = format!("{path_to_add}.lib");
2791            let candidate = PathBuf::from(candidate);
2792            if candidate.exists() {
2793                deps.push((candidate, DependencyType::Target));
2794            }
2795        }
2796        deps.push((path_to_add.into(), DependencyType::Target));
2797    }
2798
2799    deps.extend(additional_target_deps);
2800    deps.sort();
2801    let mut new_contents = Vec::new();
2802    for (dep, dependency_type) in deps.iter() {
2803        new_contents.extend(match *dependency_type {
2804            DependencyType::Host => b"h",
2805            DependencyType::Target => b"t",
2806            DependencyType::TargetSelfContained => b"s",
2807        });
2808        new_contents.extend(dep.to_str().unwrap().as_bytes());
2809        new_contents.extend(b"\0");
2810    }
2811    t!(fs::write(stamp.path(), &new_contents));
2812    deps.into_iter().map(|(d, _)| d).collect()
2813}
2814
2815pub fn stream_cargo(
2816    builder: &Builder<'_>,
2817    cargo: Cargo,
2818    tail_args: Vec<String>,
2819    cb: &mut dyn FnMut(CargoMessage<'_>),
2820) -> bool {
2821    let mut cmd = cargo.into_cmd();
2822
2823    // Instruct Cargo to give us json messages on stdout, critically leaving
2824    // stderr as piped so we can get those pretty colors.
2825    let mut message_format = if builder.config.json_output {
2826        String::from("json")
2827    } else {
2828        String::from("json-render-diagnostics")
2829    };
2830    if let Some(s) = &builder.config.rustc_error_format {
2831        message_format.push_str(",json-diagnostic-");
2832        message_format.push_str(s);
2833    }
2834    cmd.arg("--message-format").arg(message_format);
2835
2836    for arg in tail_args {
2837        cmd.arg(arg);
2838    }
2839
2840    builder.do_if_verbose(|| println!("running: {cmd:?}"));
2841
2842    let streaming_command = cmd.stream_capture_stdout(&builder.config.exec_ctx);
2843
2844    let Some(mut streaming_command) = streaming_command else {
2845        return true;
2846    };
2847
2848    // Spawn Cargo slurping up its JSON output. We'll start building up the
2849    // `deps` array of all files it generated along with a `toplevel` array of
2850    // files we need to probe for later.
2851    let stdout = BufReader::new(streaming_command.stdout.take().unwrap());
2852    for line in stdout.lines() {
2853        let line = t!(line);
2854        match serde_json::from_str::<CargoMessage<'_>>(&line) {
2855            Ok(msg) => {
2856                if builder.config.json_output {
2857                    // Forward JSON to stdout.
2858                    println!("{line}");
2859                }
2860                cb(msg)
2861            }
2862            // If this was informational, just print it out and continue
2863            Err(_) => println!("{line}"),
2864        }
2865    }
2866
2867    // Make sure Cargo actually succeeded after we read all of its stdout.
2868    let status = t!(streaming_command.wait(&builder.config.exec_ctx));
2869    if builder.is_verbose() && !status.success() {
2870        eprintln!(
2871            "command did not execute successfully: {cmd:?}\n\
2872                  expected success, got: {status}"
2873        );
2874    }
2875
2876    status.success()
2877}
2878
2879#[derive(Deserialize)]
2880pub struct CargoTarget<'a> {
2881    crate_types: Vec<Cow<'a, str>>,
2882}
2883
2884#[derive(Deserialize)]
2885#[serde(tag = "reason", rename_all = "kebab-case")]
2886pub enum CargoMessage<'a> {
2887    CompilerArtifact { filenames: Vec<Cow<'a, str>>, target: CargoTarget<'a> },
2888    BuildScriptExecuted,
2889    BuildFinished,
2890}
2891
2892pub fn strip_debug(builder: &Builder<'_>, target: TargetSelection, path: &Path) {
2893    // FIXME: to make things simpler for now, limit this to the host and target where we know
2894    // `strip -g` is both available and will fix the issue, i.e. on a x64 linux host that is not
2895    // cross-compiling. Expand this to other appropriate targets in the future.
2896    if target != "x86_64-unknown-linux-gnu"
2897        || !builder.config.is_host_target(target)
2898        || !path.exists()
2899    {
2900        return;
2901    }
2902
2903    let previous_mtime = t!(t!(path.metadata()).modified());
2904    let stamp = BuildStamp::new(path.parent().unwrap())
2905        .with_prefix(path.file_name().unwrap().to_str().unwrap())
2906        .with_prefix("strip")
2907        .add_stamp(previous_mtime.duration_since(SystemTime::UNIX_EPOCH).unwrap().as_nanos());
2908
2909    // Running strip can be relatively expensive (~1s on librustc_driver.so), so we don't rerun it
2910    // if the file is unchanged.
2911    if !stamp.is_up_to_date() {
2912        command("strip").arg("--strip-debug").arg(path).run_capture(builder);
2913    }
2914    t!(stamp.write());
2915
2916    let file = t!(fs::File::open(path));
2917
2918    // After running `strip`, we have to set the file modification time to what it was before,
2919    // otherwise we risk Cargo invalidating its fingerprint and rebuilding the world next time
2920    // bootstrap is invoked.
2921    //
2922    // An example of this is if we run this on librustc_driver.so. In the first invocation:
2923    // - Cargo will build librustc_driver.so (mtime of 1)
2924    // - Cargo will build rustc-main (mtime of 2)
2925    // - Bootstrap will strip librustc_driver.so (changing the mtime to 3).
2926    //
2927    // In the second invocation of bootstrap, Cargo will see that the mtime of librustc_driver.so
2928    // is greater than the mtime of rustc-main, and will rebuild rustc-main. That will then cause
2929    // everything else (standard library, future stages...) to be rebuilt.
2930    t!(file.set_modified(previous_mtime));
2931}
2932
2933/// We only use LTO for stage 2+, to speed up build time of intermediate stages.
2934pub fn is_lto_stage(build_compiler: &Compiler) -> bool {
2935    build_compiler.stage != 0
2936}