Would also love pointers for dynamically linking t...
# kotlin-native
m
Would also love pointers for dynamically linking the stdlib if possible. Thanks in advance
n
The Kotlin Native Standard library isn't designed to be dynamically linked. By default the library is statically linked (applies to programs and libraries), but can be excluded.
m
Understood. I assume that would be
-nostdlib
? Thank you
👌 1