From 6b711aaa81a9f16d46f61847e8d53f292c7b15a8 Mon Sep 17 00:00:00 2001 From: Shiz Date: Sun, 14 May 2017 22:53:53 +0000 Subject: testing/libc++: new aport http://libcxx.llvm.org/ A new implementation of the C++ standard library, targeting C++11. --- testing/libc++/check-for-musl-libcs-max_align_t.patch | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 testing/libc++/check-for-musl-libcs-max_align_t.patch (limited to 'testing/libc++/check-for-musl-libcs-max_align_t.patch') diff --git a/testing/libc++/check-for-musl-libcs-max_align_t.patch b/testing/libc++/check-for-musl-libcs-max_align_t.patch new file mode 100644 index 0000000000..467306949a --- /dev/null +++ b/testing/libc++/check-for-musl-libcs-max_align_t.patch @@ -0,0 +1,18 @@ +libc++'s stddef.h uses non-standard macros to detect if max_align_t exists, +which break on musl. We reluctantly add musl's non-public macro the list +for now, but this should be fixed more fundamentally. + +diff --git a/libcxx/include/stddef.h b/libcxx/include/stddef.h +index 8841bbe..faf8552 100644 +--- a/libcxx/include/stddef.h ++++ b/libcxx/include/stddef.h +@@ -53,7 +53,8 @@ using std::nullptr_t; + } + + // Re-use the compiler's max_align_t where possible. +-#if !defined(__CLANG_MAX_ALIGN_T_DEFINED) && !defined(_GCC_MAX_ALIGN_T) ++#if !defined(__CLANG_MAX_ALIGN_T_DEFINED) && !defined(_GCC_MAX_ALIGN_T) && \ ++ !defined(__DEFINED_max_align_t) + typedef long double max_align_t; + #endif + -- cgit v1.2.3