mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-07-05 13:58:18 +00:00
22 lines
750 B
Diff
22 lines
750 B
Diff
r347347 | ldionne | 2018-11-20 22:14:05 +0100 (mar. 20 nov. 2018) | 6 lignes
|
|
|
|
[libcxx] Fix threads detection on GNU/Hurd
|
|
|
|
GNU/Hurd provides standard Posix threads
|
|
|
|
Reviewed as https://reviews.llvm.org/D54339.
|
|
Thanks to Samuel Thibault for the patch.
|
|
|
|
Index: llvm-toolchain-7-7/libcxx/include/__config
|
|
===================================================================
|
|
--- llvm-toolchain-7-7.orig/libcxx/include/__config
|
|
+++ llvm-toolchain-7-7/libcxx/include/__config
|
|
@@ -1110,6 +1110,7 @@ _LIBCPP_FUNC_VIS extern "C" void __sanit
|
|
defined(__Fuchsia__) || \
|
|
defined(__NetBSD__) || \
|
|
defined(__linux__) || \
|
|
+ defined(__GNU__) || \
|
|
defined(__APPLE__) || \
|
|
defined(__CloudABI__) || \
|
|
defined(__sun__) || \
|