Link error: “Cannot find -ltinfo” on Ubuntu 12.04

2019-04-19 02:16发布

问题:

I get the following link error when I'm compiling a small function using ncurses for an Ubuntu 12.04 running on arm. The error is

arm-linux-gnueabihf/bin/ld: cannot find -ltinfo

A lot of hints are floating around on what to install, but I can't seem to find any packages that does the trick for my arm box.

I have done

sudo apt-get install libncurses5-dev

And this does not contain the tinfo library. Other suggestions usually result in the library is "not available but referred by another package" or "has no installation candidate".

All help is appreciated

/Henrik

回答1:

As mentioned by lucasg

sudo apt-get install libtinfo-dev 

solved the same problem for me.



回答2:

When you cross compile the nurses library, configure this option --with-termlib. It shall install libtinfo into your target location.