forked from M-Labs/nac3
Revert "nac3artiq: use lld.exe on Windows"
This reverts commit 19182759cd
.
This commit is contained in:
parent
19182759cd
commit
201ca3f63d
|
@ -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"));
|
||||
|
|
Loading…
Reference in New Issue