Hi all, can someone point me in the right directio...
# kotlin-native
t
Hi all, can someone point me in the right direction for compiling for Raspberry Pi from other Linux Distributions? Thank you. Edit: I am hoping to do it via the gradle multiplatform kotlin native build architecture
g
What exactly is not clear?
You can build any linux target from Linix, Win and MacOS
use raspberrypi or linuxArm32Hfp target, just use preset in MPP plugin as for any other target
t
sorry for the misunderstanding, I was a bit unclear. If I understand correctly, do you mean that I should specify a raspberry pi target like this?
Copy code
raspberrypi("linux") {
    compilations.main { … }
}
g
yes, something like this, but depends on context, it should be in kotlin.targets
I’m not sure that
raspberrypi
alias available in DSL, if it doesn’t work try
linuxArm32Hfp
t
Ok
Linuxarm33hfp worked. Thank you :)