mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-05 08:58:30 +00:00
libc++abi: enable LLVM unwinder by default for ARM
libc++abi uses EHABI extensions, which are only part of the LLVM unwinder. When targeting ARM by default, enable the use of the LLVM unwinder. Hopefully this will fix the ARM native bot llvm-svn: 235904
This commit is contained in:
parent
d7214a7651
commit
fd8a75d730
@ -114,7 +114,12 @@ endif()
|
||||
option(LIBCXXABI_ENABLE_ASSERTIONS "Enable assertions independent of build mode." ON)
|
||||
option(LIBCXXABI_ENABLE_PEDANTIC "Compile with pedantic enabled." ON)
|
||||
option(LIBCXXABI_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
|
||||
option(LIBCXXABI_USE_LLVM_UNWINDER "Build and use the LLVM unwinder." OFF)
|
||||
set(LIBCXXABI_USE_LLVM_UNWINDER_DEFAULT OFF)
|
||||
if (${LLVM_NATIVE_ARCH} MATCHES arm)
|
||||
set(LIBCXXABI_USE_LLVM_UNWINDER_DEFAULT ON)
|
||||
endif ()
|
||||
option(LIBCXXABI_USE_LLVM_UNWINDER "Build and use the LLVM unwinder."
|
||||
${LIBCXXABI_USE_LLVM_UNWINDER_DEFAULT})
|
||||
option(LIBCXXABI_ENABLE_THREADS "Build with threads enabled" ON)
|
||||
set(LIBCXXABI_GCC_TOOLCHAIN "" CACHE STRING "GCC toolchain for cross compiling.")
|
||||
set(LIBCXXABI_SYSROOT "" CACHE STRING "Sysroot for cross compiling.")
|
||||
|
Loading…
x
Reference in New Issue
Block a user