You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
906 B
26 lines
906 B
From 37cb177eb53145103ae72b67562884782dde01c3 Mon Sep 17 00:00:00 2001 |
|
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 |
|
index 528a84a8b37c..353d742161d1 100644 |
|
--- a/compiler/rustc_target/src/spec/wasm_base.rs |
|
+++ b/compiler/rustc_target/src/spec/wasm_base.rs |
|
@@ -89,8 +89,7 @@ macro_rules! args { |
|
// arguments just yet |
|
limit_rdylib_exports: false, |
|
|
|
- // we use the LLD shipped with the Rust toolchain by default |
|
- linker: Some("rust-lld".into()), |
|
+ linker: Some("lld".into()), |
|
linker_flavor: LinkerFlavor::WasmLld(Cc::No), |
|
|
|
pre_link_args, |
|
-- |
|
2.38.1 |
|
|
|
|