File: link-libuv-dynamic.patch

package info (click to toggle)
gloo 0.0~git20250912.d97133a-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,232 kB
  • sloc: cpp: 23,087; python: 8,175; makefile: 68; sh: 68
file content (16 lines) | stat: -rw-r--r-- 561 bytes parent folder | download
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)