Stefan Oltmann
02/24/2023, 4:03 PMkotlin {
mingwX64("native") {
binaries {
executable()
}
}
}
That results in ModuleVersionNotFoundException: Could not find :kotlin-native-prebuilt-windows-aarch64:1.6.10.
I am currently using the ARM version of Windows 11, which has the ability to run x64 code. I would like to know how I can modify my Gradle configuration to prioritize the use of the x64 version instead of searching for the aarch64 version.Landry Norris
02/24/2023, 4:13 PMStefan Oltmann
02/24/2023, 4:16 PMephemient
02/24/2023, 4:18 PMStefan Oltmann
02/24/2023, 4:19 PMJoakim Forslund
02/24/2023, 4:26 PMephemient
02/24/2023, 4:39 PM./gradlew -Porg.jetbrains.kotlin.native.home=...
Stefan Oltmann
02/24/2023, 5:01 PM17.0.5+1-b653.25 amd64
Gradle is still trying to get non-existing windows-aarch64
.
In a bad case there is just a hardcoded kotlin-native-prebuilt-windows-$arch
somehwere with no option to override.corneil
02/26/2023, 7:06 PM