We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73243b3 commit 0ab4cf0Copy full SHA for 0ab4cf0
tools/hxcpp/BuildTool.hx
@@ -134,7 +134,8 @@ class BuildTool
134
m64 = mDefines.exists("HXCPP_M64");
135
m32 = mDefines.exists("HXCPP_M32");
136
arm64 = mDefines.exists("HXCPP_ARM64");
137
- if (m64==m32 && !arm64)
+ var otherArmArchitecture = mDefines.exists("HXCPP_ARMV6") || mDefines.exists("HXCPP_ARMV7") || mDefines.exists("HXCPP_ARMV7S");
138
+ if (m64==m32 && !arm64 && !otherArmArchitecture)
139
{
140
var arch = getArch();
141
0 commit comments