Does Konan require ncurses 5? The current version ...
# kotlin-native
d
Does Konan require ncurses 5? The current version is 6, which I have installed. And yet I get the error:
/home/draget/.konan/dependencies/clang-llvm-8.0.0-linux-x86-64/bin/clang++: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory
(I have libtinfo.so.6)
j
you might get lucky with ln -s libtinfo.so.6 libtinfo.so.5
d
Thank you for the suggestion, really. But to be honest… this cannot be the solution here. ncurses 5 had its last release 2011(!), I really doubt that this is an intended behavior. Not messting with my system libs to workaround what is probably an issue at some other point.
j
if this was libc or libm i would be in agreement, but the relevance of "getting lucky" with up-version ncurses dll's on clang is feasable, and about as risky as the number of terminal output calls used.
you could stick it in your kotlinc bin/libpath to keep your system safe from issues as well
s