ValV
11/17/2018, 2:30 AMValV
11/17/2018, 2:36 AMllvm-lto
or java
, that causes problemkpgalligan
11/17/2018, 3:25 AMValV
11/17/2018, 8:00 AMpackage sample
fun hello(): String = "Hello, Kotlin/Native!"
fun main(args: Array<String>) {
println(hello())
}
I'm just trying to launch sample created by IDEA, upon a new project creationValV
11/17/2018, 8:04 AM/home
, then I moved ~/.konan
to the /another/disk/konan
and linked: ln -s /another/disk/konan ~/.konan
. After that re-ran the project, but it did not startolonho
11/17/2018, 8:05 AMValV
11/17/2018, 8:09 AMlibtinfo.so.5
, and the error code is the same (127), perhaps, I need those libraries in PATH
, but I wonder, why IDEA did not set it automaticallyValV
11/17/2018, 8:12 AMlibtinfo
at allolonho
11/17/2018, 8:14 AMolonho
11/17/2018, 8:14 AMyum install ncurses-compat-libs
ValV
11/17/2018, 8:21 AMpacman -Ss ncurses
, so I've decided, that I already have those libraries in the system (turns out, not)ValV
11/17/2018, 8:23 AMValV
11/17/2018, 8:24 AMlibtinfo.so.6
and libtinfo.so
as the link to the first oneValV
11/17/2018, 8:24 AMValV
11/17/2018, 8:30 AM*.so.5
to *.so.6
. It works. Thanksmsink
11/17/2018, 9:27 AMpacman -S ncurses5-compat-libs