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.
This commit is contained in:
player-03
2024-01-29 20:30:06 -05:00
committed by GitHub
parent 3ee35b05c0
commit 560ad5a6ba

View File

@@ -127,7 +127,6 @@ class MacPlatform extends PlatformTarget
else if (project.targetFlags.exists("hl")) else if (project.targetFlags.exists("hl"))
{ {
targetType = "hl"; targetType = "hl";
targetArchitecture = X64;
} }
else if (project.targetFlags.exists("java")) else if (project.targetFlags.exists("java"))
{ {