What kotlin apis can be compiled with kotlin nativ...
# kotlin-native
a
What kotlin apis can be compiled with kotlin native? do Kotlin-stdlib and kotlin-reflect on the list?
l
No reflection on Kotlin Native (may never be). For the stdlib, I think seeing the official docs may help you, but I expect most of it to be there, along with posix and other native stuff
a
Wow, thanks for the info. Any ideas on where to find the doc for the
platform.posix.*
? Even a directory is fine.
l
I don't know, you should ask back in the channel
o
Stdlib is supported, regarding posix, whatever is available in POSIX headers of the platform shall be here. Please use
klib contents
to see what is in the library
a
@olonho Thanks! And where to find the libs that I can run against
klib contents
, I check the
dist/klib
, no luck there
s
When metaprogramming comes out for kotlin, that will ease some of the need for reflection. I wonder when that will be.
o
@albertgao smth like
./bin/klib contents klib/platform/macbook/posix
would do
👍 1