Bump hermetic_cc_toolchain to v2.1.2 (#58132)

This bumps the version of hermetic_cc_toolchain to v2.1.2 to fix a build issue I ran into when running sg start otel after upgrading to Sonoma.
This commit is contained in:
Camden Cheek 2023-11-06 15:26:22 -06:00 committed by GitHub
parent 1fe96cf934
commit a465ffc088
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -121,7 +121,7 @@ http_archive(
)
# hermetic_cc_toolchain setup ================================
HERMETIC_CC_TOOLCHAIN_VERSION = "v2.0.0"
HERMETIC_CC_TOOLCHAIN_VERSION = "v2.1.2"
# Please note that we only use hermetic-cc for local development purpose and Nix, at it eases the path to cross-compile
# so we can produce container images locally on Mac laptops.
@ -137,7 +137,7 @@ http_archive(
patches = [
"//third_party/hermetic_cc:disable_ubsan.patch",
],
sha256 = "57f03a6c29793e8add7bd64186fc8066d23b5ffd06fe9cc6b0b8c499914d3a65",
sha256 = "28fc71b9b3191c312ee83faa1dc65b38eb70c3a57740368f7e7c7a49bedf3106",
urls = [
"https://mirror.bazel.build/github.com/uber/hermetic_cc_toolchain/releases/download/{0}/hermetic_cc_toolchain-{0}.tar.gz".format(HERMETIC_CC_TOOLCHAIN_VERSION),
"https://github.com/uber/hermetic_cc_toolchain/releases/download/{0}/hermetic_cc_toolchain-{0}.tar.gz".format(HERMETIC_CC_TOOLCHAIN_VERSION),