From 5c56ef8d87ded100d46f60d5c23522c5f33f54cc Mon Sep 17 00:00:00 2001 From: DreamPiggy Date: Tue, 13 Feb 2024 14:09:49 +0800 Subject: [PATCH] Bump the min deployment target on macOS to 10.11 This avoid the libarclite.a issue during linking --- README.md | 2 +- libwebp.podspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 47f777c..7745acc 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ This also contains the Swift Package Manager support ## Requirements + iOS 8 -+ macOS 10.10 ++ macOS 10.11 + tvOS 9.0 + watchOS 2.0 diff --git a/libwebp.podspec b/libwebp.podspec index aa54c4d..412d65d 100644 --- a/libwebp.podspec +++ b/libwebp.podspec @@ -10,7 +10,7 @@ Pod::Spec.new do |s| s.compiler_flags = '-D_THREAD_SAFE' s.requires_arc = false - s.osx.deployment_target = '10.10' + s.osx.deployment_target = '10.11' s.ios.deployment_target = '9.0' s.tvos.deployment_target = '9.0' s.watchos.deployment_target = '2.0'