mirror of
https://github.com/php-win-ext/grpc.git
synced 2026-03-26 01:52:16 +01:00
Upgrade apple platform deployment_target versions to fix the cocoapods push of BoringSSL-GRPC about the following error: ``` ld: file not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_macosx.a clang: error: linker command failed with exit code 1 (use -v to see invocation) ``` ref: https://developer.apple.com/forums/thread/725300 This also aligns with the versions required by [protobuf](https://github.com/protocolbuffers/protobuf/pull/10652) ``` ios.deployment_target = '10.0' osx.deployment_target = '10.12' tvos.deployment_target = '12.0' watchos.deployment_target = '6.0' ```
9 lines
171 B
Ruby
9 lines
171 B
Ruby
source 'https://github.com/CocoaPods/Specs.git'
|
|
platform :ios, '10.0'
|
|
|
|
install! 'cocoapods', :deterministic_uuids => false
|
|
|
|
target 'HelloWorldCpp' do
|
|
pod 'gRPC-C++'
|
|
end
|