From 2ac20739e488031b36c341f9fb124e570d6187d3 Mon Sep 17 00:00:00 2001 From: renaud gaudin Date: Tue, 7 Nov 2023 15:55:38 +0000 Subject: [PATCH] fixed mixed instructions about target system version --- kiwixbuild/platforms/ios.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kiwixbuild/platforms/ios.py b/kiwixbuild/platforms/ios.py index 4018ba65..065a62cf 100644 --- a/kiwixbuild/platforms/ios.py +++ b/kiwixbuild/platforms/ios.py @@ -141,7 +141,7 @@ class macOSArm64(ApplePlatformInfo): name = 'macOS_arm64_static' arch = cpu = 'arm64' host = 'aarch64-apple-darwin' - target = 'arm64-apple-macos11' + target = 'arm64-apple-macos' sdk_name = 'macosx' min_iphoneos_version = None min_macos_version = '12.0' @@ -151,7 +151,7 @@ class macOSArm64Mixed(MixedMixin('macOS_arm64_static'), ApplePlatformInfo): name = 'macOS_arm64_mixed' arch = cpu = 'arm64' host = 'aarch64-apple-darwin' - target = 'arm64-apple-macos11' + target = 'arm64-apple-macos' sdk_name = 'macosx' min_iphoneos_version = None min_macos_version = '12.0' @@ -161,7 +161,7 @@ class macOSx64(ApplePlatformInfo): name = 'macOS_x86_64' arch = cpu = 'x86_64' host = 'x86_64-apple-darwin' - target = 'x86_64-apple-macos10.12' + target = 'x86_64-apple-macos' sdk_name = 'macosx' min_iphoneos_version = None min_macos_version = '12.0'