Skip to content

Commit 0740b7e

Browse files
committed
[libc++abi][NFC] Remove mentions of LIBCXXABI_SHARED_LIBRARIES
LIBCXXABI_SHARED_LIBRARIES doesn't exist anymore, so this always expanded to nothing at all.
1 parent 3dc2f26 commit 0740b7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libcxxabi/src/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ if (LIBCXXABI_USE_LLVM_UNWINDER)
168168
target_link_libraries(cxxabi_shared_objects PUBLIC unwind_shared)
169169
endif()
170170
endif()
171-
target_link_libraries(cxxabi_shared_objects PRIVATE cxx-headers ${LIBCXXABI_BUILTINS_LIBRARY} ${LIBCXXABI_SHARED_LIBRARIES} ${LIBCXXABI_LIBRARIES})
171+
target_link_libraries(cxxabi_shared_objects PRIVATE cxx-headers ${LIBCXXABI_BUILTINS_LIBRARY} ${LIBCXXABI_LIBRARIES})
172172
target_link_libraries(cxxabi_shared_objects PUBLIC cxxabi-headers)
173173
set_target_properties(cxxabi_shared_objects
174174
PROPERTIES
@@ -204,7 +204,7 @@ if (LIBCXXABI_ENABLE_SHARED)
204204

205205
target_link_libraries(cxxabi_shared
206206
PUBLIC cxxabi_shared_objects
207-
PRIVATE ${LIBCXXABI_SHARED_LIBRARIES} ${LIBCXXABI_LIBRARIES})
207+
PRIVATE ${LIBCXXABI_LIBRARIES})
208208

209209
list(APPEND LIBCXXABI_BUILD_TARGETS "cxxabi_shared")
210210
if (LIBCXXABI_INSTALL_SHARED_LIBRARY)

0 commit comments

Comments
 (0)