[libcxx-commits] [PATCH] D86767: [libunwind] Minor SJLJ config cleanup. NFCI.
Ryan Prichard via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Thu Sep 3 16:00:15 PDT 2020
This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG673484b34189: [libunwind] Minor SJLJ config cleanup. NFCI. (authored by rprichard).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D86767/new/
https://reviews.llvm.org/D86767
Files:
libunwind/src/Unwind_AppleExtras.cpp
libunwind/src/config.h
Index: libunwind/src/config.h
===================================================================
--- libunwind/src/config.h
+++ libunwind/src/config.h
@@ -18,6 +18,8 @@
#include <stdint.h>
#include <stdlib.h>
+#include <__libunwind_config.h>
+
// Platform specific configuration defines.
#ifdef __APPLE__
#if defined(FOR_DYLD)
@@ -33,7 +35,7 @@
#define _LIBUNWIND_SUPPORT_DWARF_UNWIND 1
#endif
#else
- #if defined(__ARM_DWARF_EH__) || !defined(__arm__)
+ #if !defined(_LIBUNWIND_ARM_EHABI)
#define _LIBUNWIND_SUPPORT_DWARF_UNWIND 1
#define _LIBUNWIND_SUPPORT_DWARF_INDEX 1
#endif
@@ -81,6 +83,8 @@
#error Unsupported target
#endif
+// Apple/armv7k defaults to DWARF/Compact unwinding, but its libunwind also
+// needs to include the SJLJ APIs.
#if (defined(__APPLE__) && defined(__arm__)) || defined(__USING_SJLJ_EXCEPTIONS__)
#define _LIBUNWIND_BUILD_SJLJ_APIS
#endif
Index: libunwind/src/Unwind_AppleExtras.cpp
===================================================================
--- libunwind/src/Unwind_AppleExtras.cpp
+++ libunwind/src/Unwind_AppleExtras.cpp
@@ -8,8 +8,6 @@
//===----------------------------------------------------------------------===//
#include "config.h"
-#include "AddressSpace.hpp"
-#include "DwarfParser.hpp"
// static linker symbols to prevent wrong two level namespace for _Unwind symbols
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D86767.289828.patch
Type: text/x-patch
Size: 1369 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20200903/bd7510de/attachment.bin>
More information about the libcxx-commits
mailing list