Use correct arch_full name.

This commit is contained in:
Matthieu Gautier 2020-02-20 11:28:11 +01:00
parent 36366b2dd3
commit e27ede80cc
1 changed files with 2 additions and 2 deletions

View File

@ -75,13 +75,13 @@ class iOSPlatformInfo(PlatformInfo):
class iOSArmv7(iOSPlatformInfo):
name = 'iOS_armv7'
arch = cpu = 'armv7'
arch_full = 'arm-apple-darwin'
arch_full = 'armv7-apple-darwin'
sdk_name = 'iphoneos'
class iOSArm64(iOSPlatformInfo):
name = 'iOS_arm64'
arch = cpu = 'arm64'
arch_full = 'aarch64-apple-darwin'
arch_full = 'arm-apple-darwin'
sdk_name = 'iphoneos'
class iOSi386(iOSPlatformInfo):