Skip to content

Commit 0e07ec5

Browse files
authored
Remove unsupported linkstatic attribute after protovalidate migration
1 parent aaef919 commit 0e07ec5

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

api/bazel/api_build_system.bzl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ def api_cc_py_proto_library(
6767
visibility = ["//visibility:private"],
6868
srcs = [],
6969
deps = [],
70-
linkstatic = 0,
7170
has_services = 0,
7271
java = True):
7372
relative_name = ":" + name
@@ -91,7 +90,6 @@ def api_cc_py_proto_library(
9190
cc_proto_library_name = name + _CC_PROTO_SUFFIX
9291
cc_proto_library(
9392
name = cc_proto_library_name,
94-
linkstatic = linkstatic,
9593
deps = [relative_name],
9694
visibility = ["//visibility:public"],
9795
)

bazel/envoy_library.bzl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,6 @@ def envoy_cc_win32_library(name, srcs = [], hdrs = [], **kargs):
217217
def envoy_proto_library(name, visibility = ["//visibility:public"], **kwargs):
218218
api_cc_py_proto_library(
219219
name,
220-
# Avoid generating .so, we don't need it, can interfere with builds
221-
# such as OSS-Fuzz.
222-
linkstatic = 1,
223220
visibility = visibility,
224221
**kwargs
225222
)

0 commit comments

Comments
 (0)