[PATCH] D101682: [Driver] Fix `ToolChain::getCompilerRTPath()` to return the correct path on Darwin.

Dan Liew via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Sat May 1 07:54:12 PDT 2021


delcypher marked an inline comment as done.
delcypher added inline comments.


================
Comment at: clang/lib/Driver/ToolChain.cpp:401
     return "aix";
+  case llvm::Triple::Darwin:
+    return "darwin";
----------------
arphaman wrote:
> Should this also apply to `llvm::Triple::MacOSX` , `iOS`, and other Darwin OSes?
Good catch. I've fixed this.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D101682/new/

https://reviews.llvm.org/D101682



More information about the cfe-commits mailing list