File: link-libuv-dynamic.patch

package info (click to toggle)
gloo-cuda 0.0~git20231202.5354032-5
  • links: PTS, VCS
  • area: contrib
  • in suites: sid
  • size: 2,156 kB
  • sloc: cpp: 21,546; python: 8,179; makefile: 70; sh: 68
file content (14 lines) | stat: -rw-r--r-- 504 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Description: Link libuv dynamically instead of statically
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)