[PATCH] D124354: [lld/mac] Revert libcompiler_rt.dylib version check change
Nico Weber via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Apr 25 03:56:04 PDT 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG010acc52a83a: [lld/mac] Revert libcompiler_rt.dylib version check change (authored by thakis).
Herald added a project: LLVM.
Changed prior to commit:
https://reviews.llvm.org/D124354?vs=424804&id=424864#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D124354/new/
https://reviews.llvm.org/D124354
Files:
lld/MachO/InputFiles.cpp
Index: lld/MachO/InputFiles.cpp
===================================================================
--- lld/MachO/InputFiles.cpp
+++ lld/MachO/InputFiles.cpp
@@ -1289,11 +1289,10 @@
// Some versions of Xcode ship with .tbd files that don't have the right
// platform settings.
-constexpr std::array<StringRef, 4> skipPlatformChecks{
+constexpr std::array<StringRef, 3> skipPlatformChecks{
"/usr/lib/system/libsystem_kernel.dylib",
"/usr/lib/system/libsystem_platform.dylib",
- "/usr/lib/system/libsystem_pthread.dylib",
- "/usr/lib/system/libcompiler_rt.dylib"};
+ "/usr/lib/system/libsystem_pthread.dylib"};
static bool skipPlatformCheckForCatalyst(const InterfaceFile &interface,
bool explicitlyLinked) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D124354.424864.patch
Type: text/x-patch
Size: 775 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220425/102a42a9/attachment.bin>
More information about the llvm-commits
mailing list