1use 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#[derive(Debug, Clone, PartialEq, Eq, Hash)]
47pub struct Std {
48 pub target: TargetSelection,
49 pub build_compiler: Compiler,
51 crates: Vec<String>,
55 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 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 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 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 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 fn run(self, builder: &Builder<'_>) -> Self::Output {
158 let target = self.target;
159
160 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 builder
177 .compiler(self.build_compiler.stage.saturating_sub(1), builder.config.host_target)
178 } else {
179 self.build_compiler
180 };
181
182 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 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 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 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 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 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
342fn 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 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
375fn 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 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 &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
474pub fn std_crates_for_make_run(run: &RunConfig<'_>) -> Vec<String> {
477 let mut crates = run.make_run_crates(builder::Alias::Library);
478
479 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
494fn compiler_rt_for_profiler(builder: &Builder<'_>) -> PathBuf {
500 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 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
519pub fn std_cargo(
522 builder: &Builder<'_>,
523 target: TargetSelection,
524 cargo: &mut Cargo,
525 crates: &[String],
526) {
527 if target.contains("apple") && !builder.config.dry_run() {
545 let mut cmd = builder.rustc_cmd(cargo.compiler());
549 cmd.arg("--target").arg(target.rustc_target_arg());
550 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 cargo.env(env_var.trim(), value.trim());
560
561 if let Some(target) = env::var_os("MACOSX_STD_DEPLOYMENT_TARGET") {
571 cargo.env("MACOSX_DEPLOYMENT_TARGET", target);
572 }
573 }
574
575 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 cargo.env("RUST_COMPILER_RT_FOR_PROFILER", compiler_rt);
584 }
585
586 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 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 assert!(compiler_builtins_root.exists());
626 }
627
628 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 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 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 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#[derive(Debug, Clone, PartialEq, Eq, Hash)]
715pub struct StdLink {
716 pub compiler: Compiler,
717 pub target_compiler: Compiler,
718 pub target: TargetSelection,
719 crates: Vec<String>,
721 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 fn run(self, builder: &Builder<'_>) {
749 let compiler = self.compiler;
750 let target_compiler = self.target_compiler;
751 let target = self.target;
752
753 let (libdir, hostdir) = if !self.force_recompile && builder.download_rustc() {
755 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 if compiler.stage == 0 && is_downloaded_beta_stage0 {
779 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 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 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 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
832fn 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 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 apple_darwin_update_library_name(builder, &dst, &format!("@rpath/{}", runtime.name));
862 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") .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 fn run(self, builder: &Builder<'_>) -> Vec<(PathBuf, DependencyType)> {
913 let for_compiler = self.compiler;
914 let target = self.target;
915 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 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#[derive(Clone, Debug)]
972pub struct BuiltRustc {
973 pub build_compiler: Compiler,
977}
978
979#[derive(Debug, Clone, PartialEq, Eq, Hash)]
986pub struct Rustc {
987 pub target: TargetSelection,
989 pub build_compiler: Compiler,
991 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 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 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 fn run(self, builder: &Builder<'_>) -> Self::Output {
1044 let build_compiler = self.build_compiler;
1045 let target = self.target;
1046
1047 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 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 let stage = build_compiler.stage + 1;
1078
1079 if build_compiler.stage >= 2
1084 && !builder.config.full_bootstrap
1085 && target == builder.host_target
1086 {
1087 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 builder.ensure(RustcLink::from_build_compiler_and_sysroot(
1099 uplift_build_compiler,
1101 build_compiler,
1103 target,
1104 self.crates,
1105 ));
1106
1107 return BuiltRustc { build_compiler: uplift_build_compiler };
1110 }
1111
1112 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 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 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 if filename.ends_with(".rlib") {
1168 return true;
1169 }
1170 }
1171
1172 filename.ends_with(".rmeta")
1176 })),
1177 );
1178
1179 let target_root_dir = stamp.path().parent().unwrap();
1180 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 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 cargo.rustflag("-Zon-broken-pipe=kill");
1237
1238 if target.is_msvc() {
1243 cargo.rustflag("-Clink-arg=/Brepro");
1244 }
1245
1246 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 cargo.rustflag("-Zdylib-lto");
1260 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 => { }
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 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 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 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 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 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 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 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 cargo.env("CFG_DEFAULT_POLONIUS_NEXT", "1");
1372 cargo.env("CFG_DEFAULT_NEXT_SOLVER_GLOBALLY", "1");
1373 }
1374
1375 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 if builder.config.allocator(target) == Allocator::Jemalloc
1408 && env::var_os("JEMALLOC_SYS_WITH_LG_PAGE").is_none()
1409 {
1410 if target.starts_with("aarch64") {
1413 cargo.env("JEMALLOC_SYS_WITH_LG_PAGE", "16");
1414 }
1415 else if target.starts_with("loongarch") {
1417 cargo.env("JEMALLOC_SYS_WITH_LG_PAGE", "14");
1418 }
1419 }
1420}
1421
1422fn 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 cargo.env("LLVM_CONFIG", builder.host_llvm_config());
1442
1443 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 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 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 if !llvm_linker_flags.is_empty() {
1472 cargo.env("LLVM_LINKER_FLAGS", llvm_linker_flags);
1473 }
1474
1475 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#[derive(Debug, Clone, PartialEq, Eq, Hash)]
1521struct RustcLink {
1522 build_compiler: Compiler,
1524 sysroot_compiler: Compiler,
1527 target: TargetSelection,
1528 crates: Vec<String>,
1530}
1531
1532impl RustcLink {
1533 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 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 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#[derive(Clone)]
1578pub struct GccDylibSet {
1579 dylibs: BTreeMap<GccTargetPair, GccOutput>,
1580}
1581
1582impl GccDylibSet {
1583 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 pub fn install_to(&self, builder: &Builder<'_>, compiler: Compiler) {
1602 if builder.config.dry_run() {
1603 return;
1604 }
1605
1606 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 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
1633pub 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 Path::new("lib").join(target_pair.target()).join(target_filename)
1643}
1644
1645#[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#[derive(Debug, Clone, PartialEq, Eq, Hash)]
1666pub struct GccCodegenBackend {
1667 compilers: RustcPrivateCompilers,
1668 target: TargetSelection,
1669}
1670
1671impl GccCodegenBackend {
1672 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 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 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
1813fn 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
1843fn copy_codegen_backends_to_sysroot(
1850 builder: &Builder<'_>,
1851 stamp: BuildStamp,
1852 target_compiler: Compiler,
1853) {
1854 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
1879pub fn get_codegen_backend_file(stamp: &BuildStamp) -> PathBuf {
1881 PathBuf::from(t!(fs::read_to_string(stamp.path())))
1882}
1883
1884pub fn normalize_codegen_backend_name(builder: &Builder<'_>, path: &Path) -> String {
1886 let filename = path.file_name().unwrap().to_str().unwrap();
1887 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 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 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 if compiler.stage == 0 {
1962 dist::maybe_install_llvm_target(builder, compiler.host, &sysroot);
1963 }
1964
1965 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 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 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 add_filtered_files("lib", builder.config.ci_rust_std_contents());
2009
2010 let filtered_extensions = [
2011 OsStr::new("rmeta"),
2012 OsStr::new("rlib"),
2013 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 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 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#[derive(Debug, Clone, PartialEq, Eq, Hash)]
2085pub struct Assemble {
2086 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 return target_compiler;
2118 }
2119
2120 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 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 external_llvm_config.parent().unwrap().to_path_buf()
2157 } else {
2158 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 PathBuf::from(
2171 host_llvm_bin_dir
2172 .replace(&*builder.host_target.triple, &target.triple),
2173 )
2174 }
2175 }
2176 };
2177
2178 #[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 if llvm_output.kind() == LlvmKind::DownloadedFromCi {
2196 eprintln!("{} does not exist; skipping copy", src_path.display());
2197 continue;
2198 }
2199 if *tool == "llubi" {
2202 continue;
2203 }
2204 }
2205
2206 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 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 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 dist::maybe_install_llvm_target(builder, target_compiler.host, &sysroot);
2252 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 maybe_install_llvm_bitcode_linker();
2260
2261 return target_compiler;
2262 }
2263
2264 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 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 debug!(
2321 ?build_compiler,
2322 "target_compiler.host" = ?target_compiler.host,
2323 "building compiler libraries to link to"
2324 );
2325
2326 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 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 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 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 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 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 let mut targets = HashSet::new();
2463 for target in &builder.hosts {
2466 targets.insert(*target);
2467 }
2468 for target in &builder.targets {
2470 targets.insert(*target);
2471 }
2472 targets.insert(compilers.target_compiler().host);
2475
2476 let dylib_set = GccDylibSet::build(
2478 builder,
2479 compilers.target_compiler().host,
2480 targets.into_iter().collect(),
2481 );
2482
2483 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 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 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 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 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#[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 crates.insert(filename.split_once('.').unwrap().0.to_owned(), path.clone());
2589 }
2590
2591 sysroot_host_dst
2592 }
2593 DependencyType::Target => {
2594 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 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
2628pub enum ArtifactKeepMode {
2632 OnlyDylib,
2634 OnlyRmeta,
2636 BothRlibAndRmeta,
2638 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 let target_root_dir = stamp.path().parent().unwrap();
2653 let target_build_dir = target_root_dir.join("build");
2655 let host_root_dir = target_root_dir
2657 .parent()
2658 .unwrap() .parent()
2660 .unwrap() .join(target_root_dir.file_name().unwrap());
2662
2663 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(); (f, crate_types)
2678 }
2679 _ => return,
2680 };
2681 for filename in filenames_vec {
2682 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 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 filename.starts_with(&host_root_dir) {
2710 if crate_types.iter().any(|t| t == "proc-macro") {
2712 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 filename.starts_with(&target_build_dir) {
2726 deps.push((filename.to_path_buf(), DependencyType::Target));
2727 continue;
2728 }
2729
2730 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 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 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 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 println!("{line}");
2859 }
2860 cb(msg)
2861 }
2862 Err(_) => println!("{line}"),
2864 }
2865 }
2866
2867 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 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 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 t!(file.set_modified(previous_mtime));
2931}
2932
2933pub fn is_lto_stage(build_compiler: &Compiler) -> bool {
2935 build_compiler.stage != 0
2936}