Does anyone have experience of debugging why incre...
# compiler
m
Does anyone have experience of debugging why incremental compilation decided to rebuild a particular file? I don't have a problem, it's working, but it's recompiling and writing new classes that don't seem to have actually changed and I'm curious why.
b
cc @Andrey Uskov [JB] @Eugene
a
Sorry for late reply, I was unavailable. You should set debug options to Kotlin Compiler Daemon, it could be done by setting Gradle Daemon JVM option:
Copy code
-Dkotlin.daemon.jvm.options=-agentlib:jdwp=transport=dt_socket\\,server=y\\,suspend=n\\,address=5007 --max-workers=1
m
Hmm, thanks, I'll try that.