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

Fangrui Song via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Aug 24 14:17:15 PDT 2018


MaskRay created this revision.
MaskRay added a reviewer: kzhuravl.
Herald added subscribers: cfe-commits, atanasyan, jrtc27, arichardson, sdardis.

Repository:
  rC Clang

https://reviews.llvm.org/D51234

Files:
  lib/Driver/ToolChains/MipsLinux.h


Index: lib/Driver/ToolChains/MipsLinux.h
===================================================================
--- lib/Driver/ToolChains/MipsLinux.h
+++ lib/Driver/ToolChains/MipsLinux.h
@@ -49,7 +49,7 @@
   }
 
   const char *getDefaultLinker() const override {
-    return "lld";
+    return "ld.lld";
   }
 
 private:


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D51234.162480.patch
Type: text/x-patch
Size: 319 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180824/4a586e1e/attachment.bin>


More information about the cfe-commits mailing list