From ecdba8e00ecdb45121c858d6f62a12b34ff09a34 Mon Sep 17 00:00:00 2001 From: Vasily Levchenko Date: Tue, 20 Jun 2017 12:08:03 +0300 Subject: [PATCH] [doc][release notes] kotlinc and kotlin/native gradle plugin options for producing debug information --- RELEASE_NOTES.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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