fix: revert macosArm64 target (blocked by negentropy-kmp), add K/N toolchain to session hook

macosArm64 target cannot be enabled until negentropy-kmp publishes a
macosArm64 artifact — commented out with explanation. Reverted run_all.sh
back to Linux-only for K/Native benchmark.

Added Kotlin/Native toolchain dependencies (GCC sysroot, LLDB, LLVM,
libffi) to session-start.sh so K/N compilation works in Claude Code
remote environments where Gradle's own downloader fails through the
proxy.

https://claude.ai/code/session_01WSNE6QKiYM2ZutQD2UihCW
This commit is contained in:
Claude
2026-04-10 01:57:24 +00:00
parent bfe0555589
commit 731e32eb61
3 changed files with 55 additions and 34 deletions
+3 -18
View File
@@ -87,7 +87,7 @@ kotlin {
linuxX64()
macosArm64()
// macosArm64() — blocked until negentropy-kmp publishes a macosArm64 artifact
// This makes sure that the resource file directory is visible for iOS tests.
val rootDir = "${rootProject.rootDir.path}/quartz/src/commonTest/resources"
@@ -299,23 +299,8 @@ kotlin {
dependsOn(iosTest.get())
}
val macosMain =
create("macosMain") {
dependsOn(appleMain)
}
val macosTest =
create("macosTest") {
dependsOn(appleTest)
}
val macosArm64Main by getting {
dependsOn(macosMain)
}
val macosArm64Test by getting {
dependsOn(macosTest)
}
// macosMain/macosTest source sets exist but are not wired until
// negentropy-kmp publishes a macosArm64 artifact.
val linuxMain =
create("linuxMain") {