We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45ee673 commit 1e99809Copy full SHA for 1e99809
1 file changed
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