File: grpc-absl_synchronization.patch

package info (click to toggle)
bazel-bootstrap 4.2.3%2Bds-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 85,704 kB
  • sloc: java: 721,717; sh: 55,859; cpp: 35,360; python: 12,139; xml: 295; objc: 269; makefile: 113; ansic: 106; ruby: 3
file content (19 lines) | stat: -rw-r--r-- 779 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: Modified patch from Ubuntu to fix grpc-related FTBFS
 Thanks to Gianfranco Costamagna for the original patch:
 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1027112#23
 Patch slimmed down by Olek to only add the one missing linker flag.
Author: Gianfranco Costamagna <locutusofborg@debian.org>
Author: Olek Wojnar <olek@debian.org>
Forwarded: not-needed
Last-Update: 2023-01-05

--- a/tools/distributions/debian/debian_cc.BUILD
+++ b/tools/distributions/debian/debian_cc.BUILD
@@ -39,6 +39,6 @@
 # libgrpc++-dev
 cc_library(
     name = "grpc++_unsecure",
-    linkopts = ["-lgrpc++_unsecure", "-lgrpc_unsecure", "-lgpr"],
+    linkopts = ["-lgrpc++_unsecure", "-lgrpc_unsecure", "-lgpr", "-labsl_synchronization"],
     visibility = ["//visibility:public"],
 )