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

Alex Lorenz via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Fri Apr 30 20:12:10 PDT 2021


arphaman added inline comments.


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


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