Bump the min deployment target on macOS to 10.11

This avoid the libarclite.a issue during linking
This commit is contained in:
DreamPiggy 2024-02-13 14:09:49 +08:00
parent febc9b59ef
commit 5c56ef8d87
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ This also contains the Swift Package Manager support
## Requirements ## Requirements
+ iOS 8 + iOS 8
+ macOS 10.10 + macOS 10.11
+ tvOS 9.0 + tvOS 9.0
+ watchOS 2.0 + watchOS 2.0

View File

@ -10,7 +10,7 @@ Pod::Spec.new do |s|
s.compiler_flags = '-D_THREAD_SAFE' s.compiler_flags = '-D_THREAD_SAFE'
s.requires_arc = false s.requires_arc = false
s.osx.deployment_target = '10.10' s.osx.deployment_target = '10.11'
s.ios.deployment_target = '9.0' s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0' s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0' s.watchos.deployment_target = '2.0'