1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Link libuv dynamically instead of statically
Author: Mo Zhou <lumin@debian.org>
Forwarded: not-needed
Index: gloo/gloo/CMakeLists.txt
===================================================================
--- gloo.orig/gloo/CMakeLists.txt
+++ gloo/gloo/CMakeLists.txt
@@ -157,7 +157,7 @@ if(USE_ROCM)
target_link_libraries(gloo_hip gloo)
endif()
if(USE_LIBUV)
- target_link_libraries(gloo PRIVATE uv_a)
+ target_link_libraries(gloo PRIVATE uv)
endif()
if(USE_TCP_OPENSSL_LINK)
target_compile_definitions(gloo PRIVATE USE_TCP_OPENSSL_LINK)
|