is there a prebuilt Kotlin/JVM compiler runnable o...
# embedded-kotlin
p
is there a prebuilt Kotlin/JVM compiler runnable on ARM (more specifically, I have Raspberry PI 3)? I'm looking around but all I see are questions about a Kotlin/Native compiler. I just want to avoid having to compile on my laptop and transfer to RPI 😄 but if it's the only sensible way...
✅ 1
ah, developing with SSH, once set, is not that bad...
wait, the Kotlin/JVM compiler should be a JVM app runnable wherever we have the JVM, right?
ok, I know what fooled me: the "assets" under a GitHub release https://github.com/JetBrains/kotlin/releases/tag/v2.2.10 but these are platform-specific Kotlin/Native artifacts đŸ€Šâ€â™‚ïž I got the JVM compiler working on my RPI, Gradle works well, too
d
@Piotr KrzemiƄski Curious - do you mean to imply that you can still use IntelliJ IDE locally, and have that use the tooling on the RPi over SSH?
...or are you working locally then, later on, doing recompiles of the already locally verified code on the target RPi?
Just curious as to the workflow you settled on there 🙂
As for pre-built - last time I used Raspberry Pi OS I believe it was simply an
apt-get install kotlin kotlinc
away? 🙂
p
It's not my final setup, but right now I iterate on my laptop, and once things compile fine, I SCP the project dir to RPi
💡 1
👍 1