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'