Skip to content

Commit 35fb5da

Browse files
committed
Fix missing dependency on cxxabi_static
1 parent 9908809 commit 35fb5da

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

libcxx/cmake/Modules/HandleLibCXXABI.cmake

+1
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ function(setup_abi_library abi_target linked_into input)
172172
_merge_static_library(${abi_target}
173173
"$<TARGET_PROPERTY:cxxabi_static,LIBRARY_OUTPUT_DIRECTORY>/${CMAKE_STATIC_LIBRARY_PREFIX}$<TARGET_PROPERTY:cxxabi_static,OUTPUT_NAME>${CMAKE_STATIC_LIBRARY_SUFFIX}")
174174
target_link_libraries(${abi_target} INTERFACE cxxabi-headers)
175+
add_dependencies(${abi_target} cxxabi_static)
175176
else()
176177
string(TOLOWER "${search_type}" type)
177178
add_library(${abi_target} INTERFACE)

0 commit comments

Comments
 (0)