diff --git a/tools/platforms/MacPlatform.hx b/tools/platforms/MacPlatform.hx index 3ba9ab7c8..594a104b0 100644 --- a/tools/platforms/MacPlatform.hx +++ b/tools/platforms/MacPlatform.hx @@ -600,6 +600,11 @@ class MacPlatform extends PlatformTarget private inline function get_dirSuffix():String { + if (targetFlags.exists("hl")) + { + // hashlink doesn't support arm64 macs yet + return "64"; + } return targetArchitecture == X64 ? "64" : targetArchitecture == ARM64 ? "Arm64" : ""; }