initial commit

This commit is contained in:
2026-05-26 02:08:47 -05:00
commit aac5d72fe4
60 changed files with 12096 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
--- a/compiler/rustc_target/src/spec/base/uefi_msvc.rs
+++ b/compiler/rustc_target/src/spec/base/uefi_msvc.rs
@@ -45,7 +45,9 @@
// "Windows".
stack_probes: StackProbeType::Call,
singlethread: true,
- linker: Some("rust-lld".into()),
+ // Use the system LLD frontend name. Distro/toolchain builds that use an external LLVM
+ // often do not ship a `rust-lld` wrapper binary.
+ linker: Some("lld-link".into()),
entry_name: "efi_main".into(),
..base
}