Skip to content

Commit 3f1f98c

Browse files
committed
fix: Bump Abseil to fix Linux build issues
Pick up this fix: abseil/abseil-cpp#1187 Bump past Envoy to pick up another fix found in fuzz tests: proxy-wasm#399 (comment) Signed-off-by: Martijn Stevenson <[email protected]>
1 parent 611d5d9 commit 3f1f98c

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

bazel/repositories.bzl

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,18 @@ def proxy_wasm_cpp_host_repositories():
8282
patch_args = ["-p1"],
8383
)
8484

85-
# Core.
85+
# Core deps. Try to keep up with Envoy versions:
86+
# https://github.com/envoyproxy/envoy/blob/main/bazel/repository_locations.bzl
87+
88+
# Note: latest LTS release, ahead of Envoy to pick up a bugfix found in local fuzzing:
89+
# https://github.com/abseil/abseil-cpp/commit/e7858c73279d81cbc005d9c76a385ab535520635
90+
maybe(
91+
http_archive,
92+
name = "com_google_absl",
93+
sha256 = "733726b8c3a6d39a4120d7e45ea8b41a434cdacde401cba500f14236c49b39dc",
94+
strip_prefix = "abseil-cpp-20240116.2",
95+
urls = ["https://github.com/abseil/abseil-cpp/archive/20240116.2.tar.gz"],
96+
)
8697

8798
maybe(
8899
http_archive,

0 commit comments

Comments
 (0)