aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Muxi Yan <muxi@users.noreply.github.com>2018-12-20 13:32:03 -0800
committerGravatar GitHub <noreply@github.com>2018-12-20 13:32:03 -0800
commit0bf3dfc209671ec170c6395a4aaf793c9d816952 (patch)
treeec8d0f5f6bc2f401969eb35d319d3fdd73c39f34 /src
parent97453a3d81185c76cc870e732af3c72438e620f0 (diff)
parente8d6d4785410154a64554651898807063ce41e20 (diff)
Merge pull request #17491 from grpc/readme-16821
Update README for #16821
Diffstat (limited to 'src')
-rw-r--r--src/objective-c/README.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/objective-c/README.md b/src/objective-c/README.md
index 32e3956a1e..83775f86e1 100644
--- a/src/objective-c/README.md
+++ b/src/objective-c/README.md
@@ -242,3 +242,12 @@ pod `gRPC-Core`, :podspec => "." # assuming gRPC-Core.podspec is in the same dir
These steps should allow gRPC to use OpenSSL and drop BoringSSL dependency. If you see any issue,
file an issue to us.
+
+## Upgrade issue with BoringSSL
+If you were using an old version of gRPC (<= v1.14) which depended on pod `BoringSSL` rather than
+`BoringSSL-GRPC` and meet issue with the library like:
+```
+ld: framework not found openssl
+```
+updating `-framework openssl` in Other Linker Flags to `-framework openssl_grpc` in your project
+may resolve this issue (see [#16821](https://github.com/grpc/grpc/issues/16821)).