Revert "nac3artiq: use lld.exe on Windows"

This reverts commit 19182759cd.
escape-analysis
Sebastien Bourdeauducq 2022-03-27 19:09:11 +08:00
parent 19182759cd
commit 201ca3f63d
1 changed files with 1 additions and 1 deletions

View File

@ -870,7 +870,7 @@ impl Nac3 {
#[cfg(not(windows))]
let lld_command = "ld.lld";
#[cfg(windows)]
let lld_command = "lld.exe";
let lld_command = "ld.lld.exe";
if let Ok(linker_status) = Command::new(lld_command).args(linker_args).status() {
if !linker_status.success() {
return Err(CompileError::new_err("failed to start linker"));