diff options
| author | Eric Fiselier <eric@efcs.ca> | 2015-10-14 21:20:28 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2015-10-14 21:20:28 +0000 |
| commit | 27dec3999661a34dad9d8786610504610cee0c0c (patch) | |
| tree | 414bce47ec3c8ab4064dc480e05601f0a8f0b884 | |
| parent | 80edbbbdf8d9ab48531cd032e5a82ccd9b4b3e6b (diff) | |
| download | bcm5719-llvm-27dec3999661a34dad9d8786610504610cee0c0c.tar.gz bcm5719-llvm-27dec3999661a34dad9d8786610504610cee0c0c.zip | |
Use correct CMake variable for the libname
llvm-svn: 250329
| -rw-r--r-- | libcxx/lib/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/lib/CMakeLists.txt b/libcxx/lib/CMakeLists.txt index a3b50a7c409..d02b8c5f41e 100644 --- a/libcxx/lib/CMakeLists.txt +++ b/libcxx/lib/CMakeLists.txt @@ -138,7 +138,7 @@ set_target_properties(cxx if (LIBCXX_ENABLE_ABI_LINKER_SCRIPT) # Get the name of the ABI library and handle the case where CXXABI_LIBNAME # is a target name and not a library. Ex cxxabi_shared. - set(SCRIPT_ABI_LIBNAME "${CXXABI_LIBNAME}") + set(SCRIPT_ABI_LIBNAME "${LIBCXX_CXX_ABI_LIBRARY}") if (SCRIPT_ABI_LIBNAME STREQUAL "cxxabi_shared") set("${SCRIPT_ABI_LIBNAME}" "c++abi") endif() |

