Hi everyone, how to debug .dll generated by kotlin...
# kotlin-native
m
Hi everyone, how to debug .dll generated by kotlin/native for windows? are the .pdb files generated?
r
Kotlin/Native building process is based on MinGW for Windows platforms, so it has its own debug symbols format. You can either debug using
gdb
instead of MSVC tooling or search for software capable to convert debug symbols.
👍 1