RayeW47
09/14/2019, 11:46 AMMalcolm Still
09/14/2019, 1:24 PMRayeW47
09/15/2019, 2:44 AMmsink
09/15/2019, 8:44 AMDmitry Kandalov
09/15/2019, 10:02 PMdefFile(project.file("def-file.def"))
which is not used by any examples in kotlin/native samples
folder.Dmitry Kandalov
09/15/2019, 10:34 PMheaders = ncurses.h
and used cinterop
command to check the kotlin code produced from the header (on OSX). It seems that from around K/N version 1.1.2 cinterop stopped generating code for ncurses
. I suspect this is some kind of optmisation probably because ncurses
on system path is already bundled with K/N on osx in platform.darwin
.Dmitry Kandalov
09/15/2019, 10:36 PM.def
file to have non-default path, e.g. headers = /usr/local/Cellar/ncurses/6.1/include/ncurses.h
kotlin code for ncurses is generated as expected.Dmitry Kandalov
09/15/2019, 10:37 PM-verbose
option cinterop
doesn’t say anything 😢