From 2a6c8beb59a60b642718acff008b36af0cd14f7b Mon Sep 17 00:00:00 2001 From: LLVM Packaging Team Date: Mon, 30 Dec 2019 14:31:05 +0000 Subject: [PATCH] D54339-hurd-libcxx-threads-detection 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. Gbp-Pq: Topic hurd Gbp-Pq: Name D54339-hurd-libcxx-threads-detection.diff --- libcxx/include/__config | 1 + 1 file changed, 1 insertion(+) diff --git a/libcxx/include/__config b/libcxx/include/__config index 738d891e3..6982213d5 100644 --- a/libcxx/include/__config +++ b/libcxx/include/__config @@ -1110,6 +1110,7 @@ _LIBCPP_FUNC_VIS extern "C" void __sanitizer_annotate_contiguous_container( defined(__Fuchsia__) || \ defined(__NetBSD__) || \ defined(__linux__) || \ + defined(__GNU__) || \ defined(__APPLE__) || \ defined(__CloudABI__) || \ defined(__sun__) || \ -- 2.30.2