[libcxx] r271070 - Fix PR27875. Parse LIBCXX_CXX_ABI_LIBRARY_PATH as a path not a string
Eric Fiselier via cfe-commits
cfe-commits at lists.llvm.org
Fri May 27 16:05:38 PDT 2016
Author: ericwf
Date: Fri May 27 18:05:37 2016
New Revision: 271070
URL: http://llvm.org/viewvc/llvm-project?rev=271070&view=rev
Log:
Fix PR27875. Parse LIBCXX_CXX_ABI_LIBRARY_PATH as a path not a string
Modified:
libcxx/trunk/cmake/Modules/HandleLibCXXABI.cmake
Modified: libcxx/trunk/cmake/Modules/HandleLibCXXABI.cmake
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/cmake/Modules/HandleLibCXXABI.cmake?rev=271070&r1=271069&r2=271070&view=diff
==============================================================================
--- libcxx/trunk/cmake/Modules/HandleLibCXXABI.cmake (original)
+++ libcxx/trunk/cmake/Modules/HandleLibCXXABI.cmake Fri May 27 18:05:37 2016
@@ -21,9 +21,11 @@ macro(setup_abi_lib abidefines abilib ab
CACHE PATH
"Paths to C++ ABI header directories separated by ';'." FORCE
)
-
+ set(LIBCXX_CXX_ABI_LIBRARY_PATH "${LIBCXX_CXX_ABI_LIBRARY_PATH}"
+ CACHE PATH
+ "Paths to C++ ABI library directory"
+ )
set(LIBCXX_CXX_ABI_LIBRARY ${abilib})
-
set(LIBCXX_ABILIB_FILES ${abifiles})
file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/include")
More information about the cfe-commits
mailing list