Thomas
06/22/2019, 10:48 AM-Xobjc-generics
in my project. If I disable that then the issue is gone. Looks like this is a bug with the new generics.Dominaezzz
06/22/2019, 11:01 AMTODO()
somewhere and hasn't removed it.Jurriaan Mous
06/22/2019, 11:22 AMThomas
06/22/2019, 12:34 PMJurriaan Mous
06/22/2019, 12:38 PMThomas
06/22/2019, 4:20 PMrun
block to the end of a suspend lambda.svyatoslav.scherbina
06/24/2019, 7:52 AMI am trying to run it but my arguments are too long for IntelliJ. (it throws an error, argument list too long).You can use “Remote” Run/Debug configuration in IntelliJ IDEA. Its configuration provides “Command line arguments for remove JVM” to be passed to Kotlin/Native compiler. This can be achieved using
JAVA_OPTS
environment variable, e.g.
JAVA_OPTS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005" ~/.konan/kotlin-native-macos-1.3/bin/kotlinc-native <your args here>
Then you can attach to the process with IDEA debugger by running the “Remote” configuration.Thomas
06/24/2019, 2:49 PM