]> granicus.if.org Git - clang/commitdiff
[Driver] Change MipsLinux default linker from "lld" to "ld.lld"
authorFangrui Song <maskray@google.com>
Sun, 26 Aug 2018 19:47:23 +0000 (19:47 +0000)
committerFangrui Song <maskray@google.com>
Sun, 26 Aug 2018 19:47:23 +0000 (19:47 +0000)
Reviewers: kzhuravl, atanasyan

Reviewed By: atanasyan

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

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

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@340709 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Driver/ToolChains/MipsLinux.h

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