[doc][release notes] kotlinc and kotlin/native gradle plugin options for producing debug information

This commit is contained in:
Vasily Levchenko
2017-06-20 12:08:03 +03:00
committed by vvlevchenko
parent a3568bc41c
commit ecdba8e00e
+7 -2
View File
@@ -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