forked from OSchip/llvm-project
The MinGW linker supports response files
This affects both LLD and ld.bfd. This isn't testable with a normal driver test with -### because those command lines are printed before response file setup. I tested manually and confirmed it seems to do the right thing. llvm-svn: 367733
This commit is contained in:
parent
81a05cb9bc
commit
e6ef4f98d2
|
@ -34,7 +34,8 @@ public:
|
|||
|
||||
class LLVM_LIBRARY_VISIBILITY Linker : public Tool {
|
||||
public:
|
||||
Linker(const ToolChain &TC) : Tool("MinGW::Linker", "linker", TC) {}
|
||||
Linker(const ToolChain &TC)
|
||||
: Tool("MinGW::Linker", "linker", TC, Tool::RF_Full) {}
|
||||
|
||||
bool hasIntegratedCPP() const override { return false; }
|
||||
bool isLinkJob() const override { return true; }
|
||||
|
|
Loading…
Reference in New Issue