remove platform info

This commit is contained in:
Chris Li 2020-05-09 09:11:20 -04:00
parent edc606aed0
commit 23a682c52d
1 changed files with 0 additions and 12 deletions

View File

@ -78,24 +78,12 @@ class iOSPlatformInfo(PlatformInfo):
def configure_option(self):
return '--host={}'.format(self.arch_full)
class iOSArmv7(iOSPlatformInfo):
name = 'iOS_armv7'
arch = cpu = 'armv7'
arch_full = 'armv7-apple-darwin'
sdk_name = 'iphoneos'
class iOSArm64(iOSPlatformInfo):
name = 'iOS_arm64'
arch = cpu = 'arm64'
arch_full = 'arm-apple-darwin'
sdk_name = 'iphoneos'
class iOSi386(iOSPlatformInfo):
name = 'iOS_i386'
arch = cpu = 'i386'
arch_full = 'i386-apple-darwin'
sdk_name = 'iphonesimulator'
class iOSx64(iOSPlatformInfo):
name = 'iOS_x86_64'
arch = cpu = 'x86_64'