Depend directly on unwind when not building standalone

When using libunwind and not building as standalone project, we
can directly depend on the unwind library target.

Differential Revision: https://reviews.llvm.org/D23289

llvm-svn: 278169
This commit is contained in:
Petr Hosek 2016-08-09 21:28:52 +00:00
parent 5ed648e509
commit 8ec04577d6
1 changed files with 7 additions and 2 deletions

View File

@ -56,9 +56,14 @@ append_if(libraries LIBCXXABI_HAS_C_LIB c)
if (LIBCXXABI_USE_LLVM_UNWINDER)
if (NOT LIBCXXABI_BUILT_STANDALONE)
link_directories(${LLVM_LIBRARY_DIR})
if (LIBUNWIND_ENABLE_SHARED)
list(APPEND libraries unwind_shared)
else()
list(APPEND libraries unwind_static)
endif()
else()
list(APPEND libraries unwind)
endif()
list(APPEND libraries unwind)
else()
append_if(libraries LIBCXXABI_HAS_GCC_S_LIB gcc_s)
endif()