diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2015-04-27 18:19:33 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2015-04-27 18:19:33 +0000 |
commit | fd8a75d73096ebc11d3231cd049c81011af12ecc (patch) | |
tree | 80e7451f811610e381482a3e82d009e4882db6bf /libcxxabi | |
parent | d7214a7651db3dc153f239fe6f1603d865c64b03 (diff) | |
download | bcm5719-llvm-fd8a75d73096ebc11d3231cd049c81011af12ecc.tar.gz bcm5719-llvm-fd8a75d73096ebc11d3231cd049c81011af12ecc.zip |
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
Diffstat (limited to 'libcxxabi')
-rw-r--r-- | libcxxabi/CMakeLists.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libcxxabi/CMakeLists.txt b/libcxxabi/CMakeLists.txt index 121b468ddb0..cab24b7fd57 100644 --- a/libcxxabi/CMakeLists.txt +++ b/libcxxabi/CMakeLists.txt @@ -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.") |