From 560ad5a6ba768c5646d7d4ce2551bcd31e088ff4 Mon Sep 17 00:00:00 2001 From: player-03 Date: Mon, 29 Jan 2024 20:30:06 -0500 Subject: [PATCH] Don't force an architecture when building HL on Mac. Originally, we forced compilation on x86, presumably because at the time HashLink lacked good 64-bit support. When this support improved, the line was changed to force x64 compilation rather than being removed, which may have been a mistake. Now that there are even more valid architectures, it just doesn't make sense to force one. --- tools/platforms/MacPlatform.hx | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/platforms/MacPlatform.hx b/tools/platforms/MacPlatform.hx index 1dc2b959f..bb6b93add 100644 --- a/tools/platforms/MacPlatform.hx +++ b/tools/platforms/MacPlatform.hx @@ -127,7 +127,6 @@ class MacPlatform extends PlatformTarget else if (project.targetFlags.exists("hl")) { targetType = "hl"; - targetArchitecture = X64; } else if (project.targetFlags.exists("java")) {