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 /libcxxabi/src/fallback_malloc.cpp | |
parent | 93f77617abba512d2861e2fc50ce385883f587b6 (diff) | |
download | bcm5719-llvm-a9b5fff591d462f1f22e44ab1a269b82b8f2a664.tar.gz bcm5719-llvm-a9b5fff591d462f1f22e44ab1a269b82b8f2a664.zip |
[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 'libcxxabi/src/fallback_malloc.cpp')
-rw-r--r-- | libcxxabi/src/fallback_malloc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxxabi/src/fallback_malloc.cpp b/libcxxabi/src/fallback_malloc.cpp index 8f301bcacd1..fdae40764ab 100644 --- a/libcxxabi/src/fallback_malloc.cpp +++ b/libcxxabi/src/fallback_malloc.cpp @@ -13,7 +13,7 @@ #include <__threading_support> #ifndef _LIBCXXABI_HAS_NO_THREADS -#if defined(__unix__) && !defined(__ANDROID__) && defined(__ELF__) && defined(_LIBCXXABI_HAS_COMMENT_LIB_PRAGMA) +#if defined(__ELF__) && defined(_LIBCXXABI_LINK_PTHREAD_LIB) #pragma comment(lib, "pthread") #endif #endif |