Skip to content

Commit

Permalink
Switch x64 windows msvc target to use lld by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
crlf0710 committed Nov 26, 2020
1 parent 0beba93 commit 8d71463
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions compiler/rustc_target/src/spec/x86_64_pc_windows_msvc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ pub fn target() -> Target {
base.cpu = "x86-64".to_string();
base.max_atomic_width = Some(64);
base.has_elf_tls = true;
base.linker = Some("rust-lld".to_string());

Target {
llvm_target: "x86_64-pc-windows-msvc".to_string(),
Expand Down

0 comments on commit 8d71463

Please sign in to comment.