error: tic: undefined symbol: _nc_check_termtype2 ? tic could not build /usr/share/terminfo

** Building terminfo database, please wait...

Running tic to install /usr/share/terminfo ...

You may see messages regarding extended capabilities, e.g., AX.

These are extended terminal capabilities which are compiled

using

tic -x

If you have ncurses 4.2 applications, you should read the INSTALL

document, and install the terminfo without the -x option.

tic: symbol lookup error: tic: undefined symbol: _nc_check_termtype2

? tic could not build /usr/share/terminfo

make[1]: *** [install.data] Error 1

make[1]: Leaving directory `/usr/local/src/ncurses-5.6/misc‘

make: *** [install] Error 2

[[email protected] ncurses-5.6]#

解决办法:安装ncurses-5.9.tar.gz

下载地址:

http://pan.baidu.com/s/1jGwtDg6

时间: 2024-08-27 15:30:01

error: tic: undefined symbol: _nc_check_termtype2 ? tic could not build /usr/share/terminfo的相关文章

ssh升级以及ssh: symbol lookup error: ssh: undefined symbol: EVP_aes_128_ctr错误处理

1.解压安装openssl包:(不能卸载openssl,否则会影响系统的ssl加密库文件,除非你可以做两个软连接libcryto和libssl) # tar -zxvf openssl-1.0.1.tar.gz # cd openssl-1.0.1 #./config -fPIC threads shared # make # make test # make install # mv /usr/bin/openssl /usr/bin/openssl.OFF # mv /usr/include

系统搭建遇到问题1:awk: symbol lookup error: awk: undefined symbol: mpfr_z_sub

在配置xilinx的交叉编译工具以及source settings64.sh时,出现如下错误提示: awk: symbol lookup error: awk: undefined symbol: mpfr_z_sub 解决过程: 通过strace awk source settings64.sh发现会open一些不存在的目录. 参考https://www.xilinx.com/support/answers/66998.html 在sh文件中注释掉LD_LIBRARY_PATH相关代码.

Error: L6218E: Undefined symbol TIM_ARRPreloadConfig (referred from pwm_output.o).

出错原因:模板FWLIB中没有添加stm32f10x_tim.c文件.添加即可 一般利用库开发,将ppp.c(ppp.c又调用了库stm32f10x_xx.h)写好之后的调用步骤: 1 将ppp.c和ppp.h拷贝到项目下的USE用户代码下,并在项目工程中加载ppp.c文件. 2在main.c的头文件包含区中包含ppp.h,并在main.c中调用相关子函数 3因为ppp.c又包含了标准库文件所以还要两步 3.1在FWLIB中添加stm32f10x_xx.h文件 3.2在stm32f10x_con

.\ethercat.axf: Error: L6218E: Undefined symbol appState (referred from stm32appl.o).

原因是我使用了这个数据定义:extern .修改方法是将前面的extern去掉就行了. extern可以置于变量或者函数前,以标示变量或者函数的定义在别的文件中,提示编译器遇到此变量和函数时在其他模块中寻找其定义. 因为在程序的其它文件中并没有对变量dwDat进行定义,只是在当前文件定义并使用的,所以并不需要在前面加extern关键字.

ngrep undefined symbol: pcap_restart 错误处理

[@bx_10_70 /opt/linuxshare/]# ngrep port 80 -W byline interface: eth0 (10.16.10.0/255.255.255.0) ngrep: symbol lookup error: ngrep: undefined symbol: pcap_restart [@bx_10_70 /opt/linuxshare/]# ldd /usr/sbin/ngrep linux-vdso.so.1 =>  (0x00007ffe918640

look up error: undefined symbol:......解决过程

今天遇到个很郁闷的问题,运行程序时报错:look up error: undefined symbol:... 首先运行时报错找不到,一般就是动态库里没有这个符号.所以我用 nm命令 并用管道结合grep命令(nm .so | grep 'pattern') 查找了下那个未定义符号.结果发现,动态库里有这个符号,这里T表示是在代码段. 然后我怀疑可能加载的不是这个库,可能是老版本的库,于是我又用 ldd 命令执行可执行文件,查看运行时程序加载了哪些库,(这里也可以用管道+grep),结果发现加载

symbol lookup error *** , undefined symbol 错误

在重装samba过程后遇到一些问题,使用 gdb 时产生报错: gdb: symbol lookup error: gdb: undefined symbol: PyUnicodeUCS2_FromEncodedObject 原因是 gdb 依赖了python的一些包,而那些包版本太旧,使用时就会发生一些未定义的错误. 使用 nm 命令和 ldd 命令可辅助解决这问题. nm 命令用于找到文件中的symbol对象,ldd用于打印 命令 的依赖库. 步骤如下: 1.运行 which gdb 找到g

mysql: symbol lookup error: /usr/local/lib/libreadline.so.6: undefined symbol: UP

Error Symptom: when you run $mysql -u root -p command in the linux you get an error message ” mysql: symbol lookup error: /usr/local/lib/libreadline.so.6: undefined symbol: UP” Solution: Step 1: Login as root Step 2: Go to folder path #cd/usr/local/l

[速记]python: symbol lookup error: /usr/lib/x86_64-linux-gnu/libatk-1.0.so.0: undefined symbol: g_log_structured_standard问题解决

python: symbol lookup error: /usr/lib/x86_64-linux-gnu/libatk-1.0.so.0: undefined symbol: g_log_structured_standard https://packages.debian.org/sid/amd64/libatk1.0-0/download sudo dpkg -i *.deb Done! 原文地址:https://www.cnblogs.com/DataNerd/p/9094972.ht