Marcin Wisniowski
11/17/2021, 10:12 PM.so
library on my target, and copied it back to my development box. I can use library functions and the project compiles, but it fails at linking with: .[..]/.konan/dependencies/arm-unknown-linux-gnueabihf-gcc-8.3.0-glibc-2.19-kernel-4.9-2/arm-unknown-linux-gnueabihf/bin/ld.bfd: src/nativeInterop/cinterop/libpigpio.so: undefined reference to glob@GLIBC_2.27'
It looks like Kotlin/Native is trying to compile with a different version of glibc than I compiled the library with, and it doesn't work. But how do I choose the glibc version in my project?Marcin Wisniowski
11/18/2021, 3:55 PM