Hello everyone! ๐ Happy to be here and to (hopefully) help push Kotlin/Native forward a little more!
Right with my first post, i need to ask for some help with the CInterop tooling. I already
opened a ticket for this but maybe some of you on here already know a thing or two that i don't.
I'm having trouble using my own Kotlin lib which in turn uses a static C library on macOS. However, this static C library depends on some mac frameworks. This requires the frameworks to be specified
before the actual C library on the linker CLI, however after checking the CInterop implementation, additional linker args from the buildscript are always inserted
after the linker opts and libs specified by the .def file.
Any help or guesses are appreciated at this point ๐
EDIT: I found the issue. For some reason, using a backslash to escape newlines in the .def file works fine within the same project, but not when the library is consumed.. I am baffled.