diff options
| author | Philipp Oppermann <dev@phil-opp.com> | 2019-03-06 19:46:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-06 19:46:33 +0100 |
| commit | 876258b0fa31fc1d1a79ddc0e5a0c9c5f0e8f85b (patch) | |
| tree | 8c9929c1f4d64f8bc4d47b648d969f817b13747c | |
| parent | f22dca0a1bef4141e75326caacc3cd59f3d5be8e (diff) | |
Default to integrated `rust-lld` linker for UEFI targets
| -rw-r--r-- | src/librustc_target/spec/uefi_base.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_target/spec/uefi_base.rs b/src/librustc_target/spec/uefi_base.rs index 631966c09a4..956767a22a0 100644 --- a/src/librustc_target/spec/uefi_base.rs +++ b/src/librustc_target/spec/uefi_base.rs @@ -59,7 +59,7 @@ pub fn opts() -> TargetOptions { singlethread: true, emit_debug_gdb_scripts: false, - linker: Some("lld-link".to_string()), + linker: Some("rust-lld".to_string()), lld_flavor: LldFlavor::Link, pre_link_args, |
