Am I able to cross compile Kotlin/Native to arbitrary targets? For instance with Rust (uses LLVM so it's a decent parallel) allows me to specify custom targets, and the linker to use with that target
g
gildor
06/20/2019, 1:10 AM
Yes, it's possible, but not for all platform/target pairs
r
redrield
06/20/2019, 1:11 AM
I'd like to target arm-unknown-linux-gnueabi, and i have a GCC compiler toolchain for that target that can link the object files together, how would I set up the project to cross compile?