fix: drop deprecated macosX64 target, keep only macosArm64

macosX64 (Intel) has been removed from Kotlin's native target tiers.
Only macosArm64 (Apple Silicon) is supported.

https://claude.ai/code/session_01WSNE6QKiYM2ZutQD2UihCW
This commit is contained in:
Claude
2026-04-09 23:29:47 +00:00
parent 09001bbe98
commit ce199f42df
3 changed files with 1 additions and 14 deletions
+1 -4
View File
@@ -90,10 +90,7 @@ case "$OS_NAME" in
KN_TARGET="linuxX64Test"
;;
Darwin)
case "$ARCH" in
arm64) KN_TARGET="macosArm64Test" ;;
*) KN_TARGET="macosX64Test" ;;
esac
KN_TARGET="macosArm64Test"
;;
esac