rust/SOURCES/0001-Use-lld-provided-by-system-for-wasm.patch

27 lines
906 B
Diff
Raw Normal View History

2023-05-09 05:20:15 +00:00
From 37cb177eb53145103ae72b67562884782dde01c3 Mon Sep 17 00:00:00 2001
2022-05-17 08:53:31 +00:00
From: Ivan Mironov <mironov.ivan@gmail.com>
Date: Sun, 8 Dec 2019 17:23:08 +0500
Subject: [PATCH] Use lld provided by system for wasm
---
compiler/rustc_target/src/spec/wasm_base.rs | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/compiler/rustc_target/src/spec/wasm_base.rs b/compiler/rustc_target/src/spec/wasm_base.rs
2023-05-09 05:20:15 +00:00
index 528a84a8b37c..353d742161d1 100644
2022-05-17 08:53:31 +00:00
--- a/compiler/rustc_target/src/spec/wasm_base.rs
+++ b/compiler/rustc_target/src/spec/wasm_base.rs
2023-05-09 05:20:15 +00:00
@@ -89,8 +89,7 @@ macro_rules! args {
2022-05-17 08:53:31 +00:00
// arguments just yet
limit_rdylib_exports: false,
- // we use the LLD shipped with the Rust toolchain by default
2022-11-15 06:42:52 +00:00
- linker: Some("rust-lld".into()),
+ linker: Some("lld".into()),
2023-05-09 05:20:15 +00:00
linker_flavor: LinkerFlavor::WasmLld(Cc::No),
2022-05-17 08:53:31 +00:00
2023-05-09 05:20:15 +00:00
pre_link_args,
2022-05-17 08:53:31 +00:00
--
2023-05-09 05:20:15 +00:00
2.38.1
2022-05-17 08:53:31 +00:00