Skip to content

Commit 5eb44df

Browse files
Make _LIBUNWIND_SUPPORT_FRAME_APIS a build-time option
Previously this was based on target architecture, but that makes very little sense--frame API availability is generally for libgcc compatibility and that is dependent on runtime needs rather than target architecture. Default this to on, so as not to remove the apis from environments that already have them. The functions this macro protects are stubs for libgcc-compatibility. Today, libunwind as a drop-in replacement for libgcc_eh links on x86, x86_64, and powerpc, but not aarch64, which doesn't really make sense. As there is nothing architecture specific about these, they should be provided everywhere or nowhere. The target-specific protection goes all the way back to the original code contribution in 312fcd0 from 2013, so the original reason is lost to history, and probably not relevant today. Differential Revision: https://reviews.llvm.org/D158011
1 parent 36465e3 commit 5eb44df

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

libunwind/CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ option(LIBUNWIND_IS_BAREMETAL "Build libunwind for baremetal targets." OFF)
5151
option(LIBUNWIND_USE_FRAME_HEADER_CACHE "Cache frame headers for unwinding. Requires locking dl_iterate_phdr." OFF)
5252
option(LIBUNWIND_REMEMBER_HEAP_ALLOC "Use heap instead of the stack for .cfi_remember_state." OFF)
5353
option(LIBUNWIND_INSTALL_HEADERS "Install the libunwind headers." ON)
54+
option(LIBUNWIND_ENABLE_FRAME_APIS "Include libgcc-compatible frame apis." OFF)
5455

5556
set(LIBUNWIND_LIBDIR_SUFFIX "${LLVM_LIBDIR_SUFFIX}" CACHE STRING
5657
"Define suffix of library directory name (32/64)")
@@ -250,6 +251,11 @@ if (NOT LIBUNWIND_ENABLE_CROSS_UNWINDING)
250251
add_compile_flags(-D_LIBUNWIND_IS_NATIVE_ONLY)
251252
endif()
252253

254+
# Include stubs for __register_frame_info_bases and related
255+
if (LIBUNWIND_ENABLE_FRAME_APIS)
256+
add_compile_flags(-D_LIBUNWIND_SUPPORT_FRAME_APIS)
257+
endif()
258+
253259
# Threading-support
254260
if (NOT LIBUNWIND_ENABLE_THREADS)
255261
add_compile_flags(-D_LIBUNWIND_HAS_NO_THREADS)

libunwind/src/config.h

-4
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,6 @@
108108
#define _LIBUNWIND_BUILD_SJLJ_APIS
109109
#endif
110110

111-
#if defined(__i386__) || defined(__x86_64__) || defined(__powerpc__)
112-
#define _LIBUNWIND_SUPPORT_FRAME_APIS
113-
#endif
114-
115111
#if defined(__i386__) || defined(__x86_64__) || defined(__powerpc__) || \
116112
(!defined(__APPLE__) && defined(__arm__)) || defined(__aarch64__) || \
117113
defined(__mips__) || defined(__riscv) || defined(__hexagon__) || \

0 commit comments

Comments
 (0)