diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-12-02 11:49:20 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-12-02 22:19:20 +0100 |
commit | a9b5fff591d462f1f22e44ab1a269b82b8f2a664 (patch) | |
tree | 6b8ca9fb84e454c2def732d1a6434c0b8e57778e /libcxx/src/algorithm.cpp | |
parent | 93f77617abba512d2861e2fc50ce385883f587b6 (diff) | |
download | llvm-a9b5fff591d462f1f22e44ab1a269b82b8f2a664.tar.gz |
[libcxx{,abi}] Emit deplibs only when detected by CMake
This is a followup to 35bc5276ca3. It fixes the dependent libs usage
in libcxx and libcxxabi to link pthread and rt libraries only if CMake
detects them, rather than based on explicit platform blacklist.
Differential Revision: https://reviews.llvm.org/D70888
Diffstat (limited to 'libcxx/src/algorithm.cpp')
-rw-r--r-- | libcxx/src/algorithm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/src/algorithm.cpp b/libcxx/src/algorithm.cpp index ffdcb5fccde7..40669fb9e756 100644 --- a/libcxx/src/algorithm.cpp +++ b/libcxx/src/algorithm.cpp @@ -10,7 +10,7 @@ #include "random" #ifndef _LIBCPP_HAS_NO_THREADS #include "mutex" -#if defined(__unix__) && !defined(__ANDROID__) && defined(__ELF__) && defined(_LIBCPP_HAS_COMMENT_LIB_PRAGMA) +#if defined(__ELF__) && defined(_LIBCPP_LINK_PTHREAD_LIB) #pragma comment(lib, "pthread") #endif #endif |