forked from envoyproxy/envoy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade boringssl version (envoyproxy#34737)
Also updated the instructions to stop using a tool that no longer exists. Note that it is no longer neccessary to use the `master-with-bazel` branch, as the main branch has bazel support. Signed-off-by: Greg Greenway <[email protected]> Signed-off-by: Neal Soni <[email protected]>
- Loading branch information
1 parent
5adfc7a
commit 83336b2
Showing
2 changed files
with
17 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
diff --git a/BUILD b/BUILD | ||
index 206786442..c0b3de699 100644 | ||
--- a/BUILD | ||
+++ b/BUILD | ||
@@ -140,6 +140,7 @@ cc_library( | ||
"@platforms//os:windows": ["-defaultlib:advapi32.lib"], | ||
diff --git a/BUILD.bazel b/BUILD.bazel | ||
index d3b66ee5f..b0791b0df 100644 | ||
--- a/BUILD.bazel | ||
+++ b/BUILD.bazel | ||
@@ -63,6 +63,7 @@ bssl_cc_library( | ||
], | ||
"//conditions:default": ["-pthread"], | ||
}), | ||
+ linkstatic = True, | ||
visibility = ["//visibility:public"], | ||
) | ||
|
||
@@ -149,6 +150,7 @@ cc_library( | ||
@@ -72,6 +73,7 @@ bssl_cc_library( | ||
hdrs = ssl_headers, | ||
copts = boringssl_copts_cxx, | ||
includes = ["src/include"], | ||
copts = ["-DBORINGSSL_IMPLEMENTATION"], | ||
internal_hdrs = ssl_internal_headers, | ||
+ linkstatic = True, | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
":crypto", | ||
deps = [":crypto_internal"], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters