hello. is there any way to add c code and compile ...
# kotlin-native
m
hello. is there any way to add c code and compile together with Kotlin Native? I have some code written in Kotlin + JNI and want to convert it to Kotlin Native
o
Not sure if Kotlin/Native would be the best fit to replace your JNI code in general case. Otherwise, compile C code to library (.a) and pass library with
-linkerOpts
flag
m
Thanks.