在Arch linux上安装全局时出错

时间:2017-10-24 17:36:58

标签: archlinux

我试图从源代码安装全局。我跑

./configure --with-exuberant-ctags=/usr/bin/ctags

它运行正常。但是,当我跑

make

它给出错误

/bin/sh ../libtool  --tag=CC   --mode=link gcc  -g -O2   -o gtags-cscope gtags-cscope.o alloc.o basename.o 
build.o command.o display.o edit.o exec.o find.o help.o history.o input.o logdir.o mouse.o mygetenv.o mypop
en.o ../libparser/libgloparser.a ../libutil/libgloutil.a ../libdb/libglodb.a ../libglibc/libgloglibc.a -llt
dl -lncurses                                                                                              
libtool: link: gcc -g -O2 -o gtags-cscope gtags-cscope.o alloc.o basename.o build.o command.o display.o edi
t.o exec.o find.o help.o history.o input.o logdir.o mouse.o mygetenv.o mypopen.o  ../libparser/libgloparser
.a ../libutil/libgloutil.a ../libdb/libglodb.a ../libglibc/libgloglibc.a -lltdl -lncurses                 
/usr/bin/ld: input.o: undefined reference to symbol 'erasechar'
/usr/lib/libtinfo.so.6: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
make[2]: *** [Makefile:461: gtags-cscope] Error 1
make[2]: Leaving directory '/home/pspencil/tmp/global-6.5.7/gtags-cscope'
make[1]: *** [Makefile:517: all-recursive] Error 1
make[1]: Leaving directory '/home/pspencil/tmp/global-6.5.7'
make: *** [Makefile:424: all] Error 2

我已经安装了包ncurses,显然应该提供erase char符号。我在谷歌上找不到任何有用的东西。

1 个答案:

答案 0 :(得分:1)

明确链接tinfo库。 NCurses使用tinfo,从我读过的内容中,ncurses应该在其自己的库中包含tinfo功能,最近可能已经改变了。