diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2015-04-24 19:40:31 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2015-04-24 19:40:31 +0000 |
commit | ee8031b773ba5a69dd7f317088c99cc42ffcaf56 (patch) | |
tree | 5d96b2894476a76f0bd045cd850bfaf33d05647b /CMakeLists.txt | |
parent | 3943f43a546ed6cdea2ad93fe9a1d162d3529047 (diff) |
libc++abi: remove the duplicated unwind content
The unwinder has been moved into its own project setup at
http://svn.llvm.org/projects/libunwind/trunk. This simply removes the now
duplicated content. This move was previously discussed on llvmdev at [1].
[1] http://lists.cs.uiuc.edu/pipermail/llvmdev/2015-January/081507.html
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@235759 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e31b2bc..90e0e37 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -300,13 +300,14 @@ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${LIBCXXABI_C_FLAGS}") #=============================================================================== include_directories(include) +include_directories(../libunwind/include) # Add source code. This also contains all of the logic for deciding linker flags # soname, etc... add_subdirectory(src) if (LIBCXXABI_USE_LLVM_UNWINDER) - add_subdirectory(src/Unwind) + add_subdirectory(../libunwind/src "${CMAKE_CURRENT_BINARY_DIR}/libunwind") endif() if(NOT LIBCXXABI_ENABLE_SHARED) |