remove these, don't just comment out

This commit is contained in:
Kjell Wooding 2019-01-13 21:02:26 -05:00
parent b35556b379
commit 405af9f828

View file

@ -225,15 +225,6 @@ class Arch(object):
return env
#class ArchSimulator(Arch):
# sdk = "iphonesimulator"
# arch = "i386"
# triple = "i386-apple-darwin11"
# version_min = "-miphoneos-version-min=6.0.0"
# sysroot = sh.xcrun("--sdk", "iphonesimulator", "--show-sdk-path").strip()
class Arch64Simulator(Arch):
sdk = "iphonesimulator"
arch = "x86_64"
@ -242,14 +233,6 @@ class Arch64Simulator(Arch):
sysroot = sh.xcrun("--sdk", "iphonesimulator", "--show-sdk-path").strip()
#class ArchIOS(Arch):
# sdk = "iphoneos"
# arch = "armv7"
# triple = "arm-apple-darwin11"
# version_min = "-miphoneos-version-min=6.0.0"
# sysroot = sh.xcrun("--sdk", "iphoneos", "--show-sdk-path").strip()
class Arch64IOS(Arch):
sdk = "iphoneos"
arch = "arm64"
@ -357,9 +340,7 @@ class Context(object):
self.install_dir = "{}/dist/root".format(self.root_dir)
self.include_dir = "{}/dist/include".format(self.root_dir)
self.archs = (
# ArchSimulator(self),
Arch64Simulator(self),
# ArchIOS(self),
Arch64IOS(self))
# path to some tools