https://kotlinlang.org logo
Title
d

Daniel Hauschildt

03/24/2019, 5:24 PM
Hi everyone. I tinkered around with kotlin native and ios/swift. Got it working properly with even Metal running. However, the roundtrip time compiling koltin, then linking and then compiling Swift code with ios is a lot longer than pure Swift development.
Furthermore, also debugging is kind of hard.
Any tips on these issue? How do you debug when developing in kotlin native and iOS? Which Ide do you use? Can you set breakpoints in both swift and kotlin code? Any hints on compile time issues?
o

olonho

03/24/2019, 6:00 PM
Compilation time is being worked on, debugging is not much different, it ends up in same dwarf debug info, so lldb can set breakpoints easily
d

Daniel Hauschildt

03/24/2019, 7:46 PM
Thx for the feedback