[Driver] Change MipsLinux default linker from "lld" to "ld.lld"

Reviewers: kzhuravl, atanasyan

Reviewed By: atanasyan

Subscribers: sdardis, arichardson, jrtc27, atanasyan, cfe-commits

Differential Revision: https://reviews.llvm.org/D51234

llvm-svn: 340709
This commit is contained in:
Fangrui Song 2018-08-26 19:47:23 +00:00
parent a72012c206
commit 15c959a823
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ public:
}
const char *getDefaultLinker() const override {
return "lld";
return "ld.lld";
}
private: