From f6a7f43ece571c8a5d87e4553abc594d7793c3aa Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 7 Feb 2023 09:52:37 +0100 Subject: [PATCH] Fix the iOsMacABI target in the CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It seems that on last version of CIĀ envirronement, ios' clang doesnt recognize ios13.0. Moving to ios 14.0 --- kiwixbuild/platforms/ios.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kiwixbuild/platforms/ios.py b/kiwixbuild/platforms/ios.py index 993dca2..2ec65af 100644 --- a/kiwixbuild/platforms/ios.py +++ b/kiwixbuild/platforms/ios.py @@ -138,9 +138,9 @@ class iOSMacABI(ApplePlatformInfo): name = 'iOS_Mac_ABI' arch = cpu = 'x86_64' host = 'x86_64-apple-darwin' - target = 'x86_64-apple-ios13.0-macabi' + target = 'x86_64-apple-ios14.0-macabi' sdk_name = 'macosx' - min_iphoneos_version = '13.0' + min_iphoneos_version = '14.0' class macOSArm64(ApplePlatformInfo):