and I would like to inspect the code with breakpoints.
Does someone knows how can I debug my konan build in IntelliJ? Where I’m using something like
./gradlew build
for now and all of my build scripts are
.gradle.kts
ones
g
gildor
03/09/2019, 3:19 AM
idea supports gradle debug, not perfectly but supports, try to run this task in idea with debug (you can select it on task run from IDE)
gildor
03/09/2019, 3:20 AM
if it will not work you can use standard remote Java debugger (see run configrations in Idea), for this you should run Gradle in debug mode and than attach debugger to it
o
olonho
03/09/2019, 10:03 AM
another option is create self-contained reproducer and create an issue
g
GarouDan
03/09/2019, 12:43 PM
Thanks guys, trying directly on the gradle sidebar and using the debug option I was able to stop on a breakpoint.
But I was not able to debug the
But I don’t know which library or jar should I include in order to be able to debug there. (And if I know the correct jar, should I include it as a global library on IntelliJ?)
Is it something inside of here