remove platform info
This commit is contained in:
parent
edc606aed0
commit
23a682c52d
|
@ -78,24 +78,12 @@ class iOSPlatformInfo(PlatformInfo):
|
||||||
def configure_option(self):
|
def configure_option(self):
|
||||||
return '--host={}'.format(self.arch_full)
|
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):
|
class iOSArm64(iOSPlatformInfo):
|
||||||
name = 'iOS_arm64'
|
name = 'iOS_arm64'
|
||||||
arch = cpu = 'arm64'
|
arch = cpu = 'arm64'
|
||||||
arch_full = 'arm-apple-darwin'
|
arch_full = 'arm-apple-darwin'
|
||||||
sdk_name = 'iphoneos'
|
sdk_name = 'iphoneos'
|
||||||
|
|
||||||
class iOSi386(iOSPlatformInfo):
|
|
||||||
name = 'iOS_i386'
|
|
||||||
arch = cpu = 'i386'
|
|
||||||
arch_full = 'i386-apple-darwin'
|
|
||||||
sdk_name = 'iphonesimulator'
|
|
||||||
|
|
||||||
class iOSx64(iOSPlatformInfo):
|
class iOSx64(iOSPlatformInfo):
|
||||||
name = 'iOS_x86_64'
|
name = 'iOS_x86_64'
|
||||||
arch = cpu = 'x86_64'
|
arch = cpu = 'x86_64'
|
||||||
|
|
Loading…
Reference in New Issue