Update iOS default deployment to 8 (minimum supported by new Xcode 8)

This commit is contained in:
Joshua Granick
2016-09-15 13:05:22 -07:00
parent 05a7210e61
commit 5241f29f2c

View File

@@ -177,7 +177,7 @@ class IOSPlatform extends PlatformTarget {
if (project.config.getString ("ios.device", "universal") == "universal" || project.config.getString ("ios.device") == "iphone") { if (project.config.getString ("ios.device", "universal") == "universal" || project.config.getString ("ios.device") == "iphone") {
if (project.config.getFloat ("ios.deployment", 5.1) < 5) { if (project.config.getFloat ("ios.deployment", 8) < 5) {
ArrayHelper.addUnique (architectures, Architecture.ARMV6); ArrayHelper.addUnique (architectures, Architecture.ARMV6);
@@ -220,7 +220,7 @@ class IOSPlatform extends PlatformTarget {
context.ARMV7S = armv7s; context.ARMV7S = armv7s;
context.ARM64 = arm64; context.ARM64 = arm64;
context.TARGET_DEVICES = switch (project.config.getString ("ios.device", "universal")) { case "iphone": "1"; case "ipad": "2"; default: "1,2"; } context.TARGET_DEVICES = switch (project.config.getString ("ios.device", "universal")) { case "iphone": "1"; case "ipad": "2"; default: "1,2"; }
context.DEPLOYMENT = project.config.getString ("ios.deployment", "5.1.1"); context.DEPLOYMENT = project.config.getString ("ios.deployment", "8.0");
if (project.config.getString ("ios.compiler") == "llvm" || project.config.getString ("ios.compiler", "clang") == "clang") { if (project.config.getString ("ios.compiler") == "llvm" || project.config.getString ("ios.compiler", "clang") == "clang") {
@@ -228,7 +228,7 @@ class IOSPlatform extends PlatformTarget {
} }
//context.ENABLE_BITCODE = (project.config.getFloat ("ios.deployment", 5.1) >= 6); //context.ENABLE_BITCODE = (project.config.getFloat ("ios.deployment", 8) >= 6);
context.ENABLE_BITCODE = project.config.getBool ("ios.enable-bitcode", false); context.ENABLE_BITCODE = project.config.getBool ("ios.enable-bitcode", false);
context.IOS_COMPILER = project.config.getString ("ios.compiler", "clang"); context.IOS_COMPILER = project.config.getString ("ios.compiler", "clang");
context.CPP_BUILD_LIBRARY = project.config.getString ("cpp.buildLibrary", "hxcpp"); context.CPP_BUILD_LIBRARY = project.config.getString ("cpp.buildLibrary", "hxcpp");