[libcxxabi] r286164 - Fix typo in CMakeLists.txt: provide the path to libcxx checkout and not the include subdir
Mehdi Amini via cfe-commits
cfe-commits at lists.llvm.org
Mon Nov 7 14:16:27 PST 2016
Author: mehdi_amini
Date: Mon Nov 7 16:16:27 2016
New Revision: 286164
URL: http://llvm.org/viewvc/llvm-project?rev=286164&view=rev
Log:
Fix typo in CMakeLists.txt: provide the path to libcxx checkout and not the include subdir
Modified:
libcxxabi/trunk/CMakeLists.txt
Modified: libcxxabi/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/CMakeLists.txt?rev=286164&r1=286163&r2=286164&view=diff
==============================================================================
--- libcxxabi/trunk/CMakeLists.txt (original)
+++ libcxxabi/trunk/CMakeLists.txt Mon Nov 7 16:16:27 2016
@@ -140,7 +140,7 @@ endif()
if (LLVM_EXTERNAL_LIBCXX_SOURCE_DIR)
set(LIBCXXABI_LIBCXX_SRC_DIR ${LLVM_EXTERNAL_LIBCXX_SOURCE_DIR})
else()
- set(LIBCXXABI_LIBCXX_SRC_DIR ${LLVM_MAIN_SRC_DIR}/projects/libcxx/include)
+ set(LIBCXXABI_LIBCXX_SRC_DIR ${LLVM_MAIN_SRC_DIR}/projects/libcxx)
endif()
find_path(
More information about the cfe-commits
mailing list