aboutsummaryrefslogtreecommitdiff
path: root/cc/tink_cc_deps.bzl
diff options
context:
space:
mode:
authorambrosin <ambrosin@google.com>2022-10-28 02:43:30 -0700
committerCopybara-Service <copybara-worker@google.com>2022-10-28 02:44:13 -0700
commite5f21adbb02618b69d38af89b71cd8e2b0e31f4b (patch)
treec6bf049192f87076cd962d08fac8bc65eeb1cdce /cc/tink_cc_deps.bzl
parent10cde5d339722667b48361598272a24d2a433710 (diff)
downloadtink-e5f21adbb02618b69d38af89b71cd8e2b0e31f4b.tar.gz
Upgrade BoringSSL and switch to C++14 as the minimum supported version
Many of the dependencies we use in Tink are moving to support only C++14. BoringSSL is an example (see https://github.com/google/boringssl/commit/493d5cbedda8690d17a323d3532acfb1fb1845ad#diff-bad5d9040d9fca0b5e67ed87fde70b1d1effd7110bcb4d6ed0c8f6e16be23be1). This change: - Sets c++14 as the default version used by all the workspaces that use tink-cc and Bazel's default toolchain via `.bazerlrc` files. Tink users can override this by passing `--cxxopt='-std=c++<verison>'` or editing its toolchain. - Upgrades BoringSSL to 2022-09-14's commit. PiperOrigin-RevId: 484479474
Diffstat (limited to 'cc/tink_cc_deps.bzl')
-rw-r--r--cc/tink_cc_deps.bzl8
1 files changed, 4 insertions, 4 deletions
diff --git a/cc/tink_cc_deps.bzl b/cc/tink_cc_deps.bzl
index 9a24734f0..933f70b5f 100644
--- a/cc/tink_cc_deps.bzl
+++ b/cc/tink_cc_deps.bzl
@@ -66,12 +66,12 @@ def tink_cc_deps():
# BoringSSL.
# -------------------------------------------------------------------------
if not native.existing_rule("boringssl"):
- # Commit from 2022-02-25.
+ # Commit from 2022-09-14.
http_archive(
name = "boringssl",
- strip_prefix = "boringssl-88cdf7dd2dbce1ecb9057c183095103d83373abe",
- url = "https://github.com/google/boringssl/archive/88cdf7dd2dbce1ecb9057c183095103d83373abe.zip",
- sha256 = "24092815136f956069fcfa5172166ad4e025166ce6fe500420c9e3e3c4f3da38",
+ strip_prefix = "boringssl-d345d68d5c4b5471290ebe13f090f1fd5b7e8f58",
+ url = "https://github.com/google/boringssl/archive/d345d68d5c4b5471290ebe13f090f1fd5b7e8f58.zip",
+ sha256 = "482796f369c8655dbda3be801ae98c47916ecd3bff223d007a723fd5f5ecba22",
)
# -------------------------------------------------------------------------