Update comment and remove special-case for Wasm targets which is incompatible with response-file changes

This commit is contained in:
Douglas Young
2024-03-20 23:37:46 +00:00
parent 7c98b82930
commit 6b0a706cb4
2 changed files with 1 additions and 7 deletions

View File

@@ -100,12 +100,6 @@ impl Command {
Program::Lld(ref p, flavor) => {
let mut c = process::Command::new(p);
c.arg("-flavor").arg(flavor.as_str());
if let LldFlavor::Wasm = flavor {
// LLVM expects host-specific formatting for @file
// arguments, but we always generate posix formatted files
// at this time. Indicate as such.
c.arg("--rsp-quoting=posix");
}
c
}
};