Skip to content

Commit b013a0d

Browse files
authored
fix: Bump Abseil to fix Linux build issues (#400)
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: #399 (comment) Signed-off-by: Martijn Stevenson <[email protected]>
1 parent 611d5d9 commit b013a0d

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

bazel/repositories.bzl

+15-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,21 @@ def proxy_wasm_cpp_host_repositories():
8282
patch_args = ["-p1"],
8383
)
8484

85-
# Core.
85+
# Core deps. Keep them updated.
86+
87+
# Note: we depend on Abseil via rules_fuzzing. Remove this pin when we update that.
88+
#
89+
# This is the latest LTS release, which picks up:
90+
# - Build fix: https://github.com/abseil/abseil-cpp/pull/1187
91+
# - A bugfix found in local fuzzing:
92+
# https://github.com/abseil/abseil-cpp/commit/e7858c73279d81cbc005d9c76a385ab535520635
93+
maybe(
94+
http_archive,
95+
name = "com_google_absl",
96+
sha256 = "733726b8c3a6d39a4120d7e45ea8b41a434cdacde401cba500f14236c49b39dc",
97+
strip_prefix = "abseil-cpp-20240116.2",
98+
urls = ["https://github.com/abseil/abseil-cpp/archive/20240116.2.tar.gz"],
99+
)
86100

87101
maybe(
88102
http_archive,

0 commit comments

Comments
 (0)