thevery
09/30/2018, 11:34 AMcompilations.test.outputKinds('EXECUTABLE')
doesn't work in new mpp plugin - there is no way to build test binary for iosX64 (only klib). @ilya.matveev/@olonho could you please check/verify?alex009
10/01/2018, 5:59 AMJaroslav
10/01/2018, 7:06 AMCould not resolve all artifacts for configuration ':greeting:classpath'.
> Could not find org.jetbrains.kotlin:kotlin-native-gradle-plugin:0.9.3.
Searched in the following locations:
- <https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-native-gradle-plugin/0.9.3/kotlin-native-gradle-plugin-0.9.3.module>
- <https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-native-gradle-plugin/0.9.3/kotlin-native-gradle-plugin-0.9.3.pom>
- <https://dl.bintray.com/jetbrains/kotlin-native-dependencies/org/jetbrains/kotlin/kotlin-native-gradle-plugin/0.9.3/kotlin-native-gradle-plugin-0.9.3.module>
- <https://dl.bintray.com/jetbrains/kotlin-native-dependencies/org/jetbrains/kotlin/kotlin-native-gradle-plugin/0.9.3/kotlin-native-gradle-plugin-0.9.3.pom>
- <http://dl.bintray.com/kotlin/kotlin-eap/org/jetbrains/kotlin/kotlin-native-gradle-plugin/0.9.3/kotlin-native-gradle-plugin-0.9.3.module>
- <http://dl.bintray.com/kotlin/kotlin-eap/org/jetbrains/kotlin/kotlin-native-gradle-plugin/0.9.3/kotlin-native-gradle-plugin-0.9.3.pom>
Required by:
project :greeting
buildscript {
ext.kotlin_version = '1.2.61'
repositories {
jcenter()
maven { url "<https://dl.bintray.com/jetbrains/kotlin-native-dependencies>" }
maven { url "<http://dl.bintray.com/kotlin/kotlin-eap>" }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-native-gradle-plugin:0.9.3"
}
}
Leonid Popescu
10/01/2018, 12:15 PMDominaezzz
10/01/2018, 5:54 PMKonstantin Petrukhnov
10/02/2018, 9:06 AMKonstantin Petrukhnov
10/02/2018, 2:24 PMDominaezzz
10/03/2018, 11:29 AMthevery
10/04/2018, 9:02 AMyusuf3000
10/04/2018, 9:39 AMkotlin-platform-native
plugin?spierce7
10/04/2018, 1:32 PMkenkyee
10/04/2018, 2:15 PMthevery
10/04/2018, 2:30 PMDominaezzz
10/06/2018, 11:44 AMArray<Buffer>
object. The Buffer
class has a COpaquePointer
property and I wanna pass a temp array of these pointers to a C function. There are 2 ways to do this, cValuesOf(...)
and memScope { allocArray(...) { ... } }
, which should I prefer and when?bootstraponline
10/07/2018, 4:31 AMhmole
10/07/2018, 12:13 PMcinterop
with Apple Foundation libs?spierce7
10/07/2018, 3:27 PMspierce7
10/07/2018, 4:32 PMbootstraponline
10/07/2018, 4:38 PMCoroutineScope
still kotlinx.coroutines.experimental
? I can't use it from kotlin native as a result.
is it not possible to use runBlocking in jvmMain
when using kotlin native?bootstraponline
10/07/2018, 5:14 PMAlexander Stark
10/08/2018, 6:39 AMmiha-x64
10/08/2018, 4:39 PMsdeleuze
10/08/2018, 6:14 PMAnaR
10/08/2018, 9:47 PMAlexander Stark
10/09/2018, 7:25 AMyusuf3000
10/09/2018, 11:05 AMkotlin-platform-native
plugin? The closest thing I could find was this issue: https://github.com/JetBrains/kotlin-native/issues/1764 but it’s using konan
yusuf3000
10/09/2018, 11:06 AMdrofwarcs
10/10/2018, 4:38 AMsalomonbrys
10/10/2018, 2:48 PMspierce7
10/10/2018, 3:23 PM@kotlin.native.internal.VolatileLambda
annotation internal?spierce7
10/10/2018, 3:23 PM@kotlin.native.internal.VolatileLambda
annotation internal?olonho
10/10/2018, 4:42 PMspierce7
10/10/2018, 5:11 PMolonho
10/10/2018, 6:11 PMWorker.execute
with code, which passes lambda to execute like in https://github.com/JetBrains/kotlin-native/blob/master/samples/objc/src/main/kotlin/Window.kt