caffeine
04/20/2019, 1:38 PMimport platform.zlib.*
.....
internal val native = malloc(sizeOf<z_stream_s>().convert())!!.reinterpret<z_stream_s>()
.....
When I build it to linux64 target it build normally. But when build to linuxArm32 I have errors:
Unresolved reference: zlib
Unresolved reference: z_stream_s
I use multiplatform kotlin 1.3.30. Host: Windows 10
What the problem? Doesn't Kotlin-native for linuxArm32 have zlib? How fix it?Dominaezzz
04/20/2019, 1:53 PMDominaezzz
04/20/2019, 1:54 PMcaffeine
04/20/2019, 2:11 PMolonho
04/20/2019, 5:50 PM