Are there any supported profilers for Kotlin/Nativ...
# kotlin-native
m
Are there any supported profilers for Kotlin/Native on Windows? I tried http://www.codersnotes.com/sleepy/ but I cannot see the function names - only addresses.
m
Same as on Linux -
gprof
from msys2-mingw64 should work (but I really didn't try)
o
profilers supporting mingw shall work with Kotlin/Native
m
So just add
-fprofile-instr-generate
to
compilerOpts
and
linkerOpts
is enough? http://cmdlinelinux.blogspot.com/2018/04/profiling-c-code-with-clang-using.html