[PATCH] D24082: [CMake] Fix libc++abi arm build w/o libunwind.
Eric Fiselier via cfe-commits
cfe-commits at lists.llvm.org
Mon Oct 31 07:08:18 PDT 2016
EricWF added inline comments.
================
Comment at: CMakeLists.txt:117
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)
option(LIBCXXABI_USE_COMPILER_RT "Use compiler-rt instead of libgcc" OFF)
----------------
EricWF wrote:
> ```
> cmake_dependent_option(LIBCXXABI_USE_LLVM_UNWINDER "Build and use the LLVM unwinder" OFF
> "LLVM_NATIVE_ARCH MATCHES ARM" ON)
> ```
>
> And don't forget to add the include for cmake_dependent_option somewhere above!
The above code isn't correct as-is. You'll have to escape the strings for MATCHES.
https://reviews.llvm.org/D24082
More information about the cfe-commits
mailing list