IOSPlatform: be explicit about armv6, just in case the default architecture used by hxcpp changes in the future

The default changed recently for the x86 simulator, so best to be safe
This commit is contained in:
Josh Tynjala
2023-04-10 15:03:45 -07:00
parent 1e6d883baf
commit 72db242720

View File

@@ -487,7 +487,7 @@ class IOSPlatform extends PlatformTarget
var commands = [];
if (armv6) commands.push(["-Dios", "-DHXCPP_CPP11"]);
if (armv6) commands.push(["-Dios", "-DHXCPP_CPP11", "-DHXCPP_ARMV6"]);
if (armv7) commands.push(["-Dios", "-DHXCPP_CPP11", "-DHXCPP_ARMV7"]);
if (armv7s) commands.push(["-Dios", "-DHXCPP_CPP11", "-DHXCPP_ARMV7S"]);
if (arm64) commands.push(["-Dios", "-DHXCPP_CPP11", "-DHXCPP_ARM64"]);