Skip to content

Commit

Permalink
fixed mixed instructions about target system version
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaudin authored and mgautierfr committed Nov 8, 2023
1 parent d07e992 commit 2ac2073
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kiwixbuild/platforms/ios.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
Expand All @@ -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'
Expand Down

0 comments on commit 2ac2073

Please sign in to comment.