Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Work around BoringSSL bitcode linker warning (#470)
* Work around BoringSSL bitcode linker warning When linking envoy-mobile to an iOS app that ships with bitcode, you get these warnings from the linker: ``` ld: warning: Linker asked to preserve internal global: 'sk_CRYPTO_BUFFER_call_free_func' ld: warning: Linker asked to preserve internal global: 'sk_X509_call_free_func' ld: warning: Linker asked to preserve internal global: 'sk_X509_call_free_func' ld: warning: Linker asked to preserve internal global: 'sk_X509_call_free_func' ld: warning: Linker asked to preserve internal global: 'sk_X509_call_free_func' ``` I have submitted an upstream patch to fix this https://boringssl-review.googlesource.com/c/boringssl/+/37804 in the meantime I've applied that patch here. Signed-off-by: Keith Smiley <[email protected]> Signed-off-by: JP Simard <[email protected]>
- Loading branch information