Skip to content

Commit

Permalink
Bump abseil-cpp version to 20220623.1
Browse files Browse the repository at this point in the history
Closes bazelbuild#18167.

abseil is missing stdint.h include, that broke recent compiler versions.
This problem was fixed in this commit upstream:

abseil/abseil-cpp@36a4b07

Note, that we cannot update to the latst abseil-cpp version, because
this breaking change: "Abseil now requires at least C++14" starting
from LTS release 20230125 and Bazel is passing per default -std=c++0x
option, see:

bazelbuild#18181
  • Loading branch information
davido committed Apr 23, 2023
1 parent 166ef61 commit 2c95395
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions distdir_deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -246,17 +246,16 @@ DIST_DEPS = {
],
},
"com_google_absl": {
"archive": "20211102.0.tar.gz",
"sha256": "dcf71b9cba8dc0ca9940c4b316a0c796be8fab42b070bb6b7cab62b48f0e66c4",
"archive": "20220623.1.tar.gz",
"sha256": "91ac87d30cc6d79f9ab974c51874a704de9c2647c40f6932597329a282217ba8",
"urls": [
"https://mirror.bazel.build/github.com/abseil/abseil-cpp/archive/refs/tags/20211102.0.tar.gz",
"https://github.com/abseil/abseil-cpp/archive/refs/tags/20211102.0.tar.gz",
"https://github.com/abseil/abseil-cpp/archive/refs/tags/20220623.1.tar.gz",
],
"used_in": [
"additional_distfiles",
"test_WORKSPACE_files",
],
"strip_prefix": "abseil-cpp-20211102.0",
"strip_prefix": "abseil-cpp-20220623.1",
"license_kinds": [
"@rules_license//licenses/generic:notice",
],
Expand Down

0 comments on commit 2c95395

Please sign in to comment.