fix: remove the check of lld not supporting @response-file
In LLVM v9, lld has supported @response-file LLVM v9 was released on 2019-09-19. And the check was added back to 2018-03-14 (1.26.0) via04442af18b
. It has been more than five years, and we ship our own lld regardlessly. This should be happily removed. See also: * <bb12396f91
> * <https://reviews.llvm.org/D63024>
This commit is contained in:
parent
249cb84316
commit
c8a6fcc3c8
1 changed files with 0 additions and 7 deletions
|
@ -143,13 +143,6 @@ impl Command {
|
|||
return false;
|
||||
}
|
||||
|
||||
// Right now LLD doesn't support the `@` syntax of passing an argument
|
||||
// through files, so regardless of the platform we try to go to the OS
|
||||
// on this one.
|
||||
if let Program::Lld(..) = self.program {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Ok so on Windows to spawn a process is 32,768 characters in its
|
||||
// command line [1]. Unfortunately we don't actually have access to that
|
||||
// as it's calculated just before spawning. Instead we perform a
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue