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

2019-04-19 02:49发布

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

2条回答
何必那么认真
2楼-- · 2019-04-19 02:54

As mentioned by lucasg

sudo apt-get install libtinfo-dev 

solved the same problem for me.

查看更多
我命由我不由天
3楼-- · 2019-04-19 03:05

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

查看更多
登录 后发表回答