Nico Buescher
07/31/2020, 10:00 PMe: Could not find "posix" in [/Users/[user]/Developer/IdeaProjects/kgl/kgl-glfw, /Users/[user]/.konan/klib, /Users/[user]/.konan/kotlin-native-prebuilt-macos-1.4-rc1-40/klib/common, /Users/[user]/.konan/kotlin-native-prebuilt-macos-1.4-rc1-40/klib/platform/macos_x64].
I checked in the klib directory, and in 1.3.72 there is a “posix” folder inside ~/.konan/kotlin-native-macos-1.3.72/klib/platform
, and in 1.4.0-RC, that folder is called “org.jetbrains.kotlin.native.platform.posix”. Anyone know what’s going on there? I’m working with the new hierarchical mpp setup if that makes a differencesvyatoslav.scherbina
08/05/2020, 10:43 AMNico Buescher
08/05/2020, 3:27 PMdepends = posix
in the cinterop def. Removing the depends
fixes the issuesvyatoslav.scherbina
08/06/2020, 9:11 AMThe issue was actually aUsingin the cinterop defdepends = posix
depends =
in .def
files is neither required nor recommended.Nico Buescher
08/06/2020, 3:00 PM