Hey loving kotlin native. I was wondering if there was any workaround to the problems with C++ interop. I read earlier this morning that back in march of 2018 on the kotlin forums, contributer msink had stated "Kotlin/Native does not support C++ libraries, only C and Objective-C.
It’s possible in theory, but hard to implement, and currently no plans for this."
I was wondering what the plans are now. My static library has simple c++ use but I can easily change it to C since I'm using flex/bison to generate some C++ code for lexer and parser code, it seems to work better with C. I only have it generating C++ code because I would like to utilize C++ classes for what I would think is better interop from kotlin to C++. Is there any way I can have a C++ lib in a kotlin native project or do I need to pretty much convert my currently minimal C++ library. However the generated code is C++ but flex/bison can always regen in C.