Zoff
12/29/2024, 10:24 AMChrimaeon
12/29/2024, 10:32 AMval isMac = System.getProperty("os.name") == "Mac OS X"
val isArm64 = System.getProperty("os.arch") == "aarch64"
if (isMac && isArm64) { ... }
Chrimaeon
12/29/2024, 10:41 AMjvmArgs
? I guess you are mixing up the target platforms with compiler platforms.