diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index c10348b9549..5ba22018d76 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -85,8 +85,13 @@ Notice that property delegation (including lazy properties) *does* work. ### Debugging ### _Kotlin/Native_ supports preliminary source-level debugging on produced executables with `lldb` debugger. - Produce your binary with debugging information by specifying `-g` _Kotlin/Native_ compiler switch or - using `-Pbuild_flags=-g` option for Gradle build. Start your application with + Produce your binary with debugging information by specifying `-g` _Kotlin/Native_ compiler switch. + Konan plugin accepts `enableDebug` project's property, allowing two options for producing binaries with debug + information: + - gradle DSL. + - argument `-PenableDebug=true` in gradle command line. + + Start your application with lldb my_program.kexe