未定义的引用`tgetflag'

问题描述 投票:0回答:2

这里我正在编译Sun Grid Engine源代码,在执行最后一步./aimk -no-java -no-jni -no-secure -spool-classic -no-dump -no-qmon时,发生了以下堆栈跟踪错误

    gcc -o tcsh          -DSGE_ARCH_STRING=\"linux-x64\" -O3 -Wall -Wstrict-prototypes -DUSE_POLL -DLINUX -DLINUX_NATIVE -DLINUXX64 -DLINUXX64 -D_GNU_SOURCE -DGETHOSTBYNAME_R6 -DGETHOSTBYADDR_R8 -DHAS_VSNPRINTF  -DHAS_IN_PORT_T -I/build/berkeleydb/include/ -DTARGET_64BIT  -DSPOOLING_classic  -DNO_JNI -DCOMPILE_DC -D__SGE_COMPILE_WITH_GETTEXT__  -D__SGE_NO_USERMAPPING__ -DTHREADBINDING -DHWLOC -Wno-error -DPROG_NAME='"qtcsh"' -DLINUXX64      -I. -I.. sh.o sh.dir.o sh.dol.o sh.err.o sh.exec.o sh.char.o sh.exp.o sh.func.o sh.glob.o sh.hist.o sh.init.o sh.lex.o sh.misc.o sh.parse.o sh.print.o sh.proc.o sh.sem.o sh.set.o sh.time.o glob.o mi.termios.o ma.setp.o vms.termcap.o tw.help.o tw.init.o tw.parse.o tw.spell.o tw.comp.o tw.color.o ed.chared.o ed.refresh.o ed.screen.o ed.init.o ed.inputl.o ed.defns.o ed.xmap.o ed.term.o tc.alloc.o tc.bind.o tc.const.o tc.defs.o tc.disc.o tc.func.o tc.os.o tc.printf.o tc.prompt.o tc.sched.o tc.sig.o tc.str.o tc.vers.o tc.who.o  -lcrypt                  -L../../../LINUXX64 -L/build/berkeleydb/lib/ -L. -Wl,-rpath,\$ORIGIN/../../lib/linux-x64  -lsge -lpthread    -ldl
ed.screen.o: In function `EchoTC':
ed.screen.c:(.text+0x119a): undefined reference to `tgetflag'
ed.screen.c:(.text+0x137e): undefined reference to `tgoto'
ed.screen.c:(.text+0x138e): undefined reference to `tputs'
ed.screen.c:(.text+0x13c5): undefined reference to `tgetstr'
ed.screen.c:(.text+0x14ab): undefined reference to `tgoto'
ed.screen.c:(.text+0x14bd): undefined reference to `tputs'
ed.screen.c:(.text+0x151e): undefined reference to `tputs'
ed.screen.o: In function `SetAttributes':
ed.screen.c:(.text+0x1ab4): undefined reference to `tputs'
ed.screen.c:(.text+0x1b9c): undefined reference to `tputs'
ed.screen.c:(.text+0x1bd4): undefined reference to `tputs'
ed.screen.o:ed.screen.c:(.text+0x1c35): more undefined references to `tputs' follow
ed.screen.o: In function `MoveToChar':

我已经用Google搜索了tgetflag功能,这就是它tgetflag(3) - Linux man page。所以我想也许我失去了ncurses库,more info can see this link,安装ncurses相关包并重新编译这样的源后仍然会发生这样的错误,这真的很奇怪,这是我的ncurses包列表:

    [root@localhost source]# rpm -qa | grep "ncurses*"
ncurses-devel-5.9-14.20130511.el7_4.x86_64
ncurses-libs-5.9-14.20130511.el7_4.x86_64
ncurses-5.9-14.20130511.el7_4.x86_64
ncurses-base-5.9-14.20130511.el7_4.noarch
centos7 dynamic-linking sungridengine
2个回答
1
投票

在安装ncurses相关的包并重新编译这样的源之后仍然会发生这样的错误

您的链接线缺少-lncurses,因此链接仍然失败并不奇怪 - 安装库是必要的,但不足以解决您的问题。

你必须以某种方式将-lncurses添加到链接行。我不知道确切的步骤;我猜你可能需要重新配置tcsh来实现这一点。


0
投票

希望这个答案可以带走某人,这是我的步骤:

  1. 删除此类项目并提取原始tar.gz文件
  2. 确认已经下载并安装了ncurses相关库
  3. export LD_LIBRARY_PATH=/usr/lib64/:/usr/lib/:/usr/local/lib,这一步告诉gcc直接获得所需的正确包
  4. ./aimk -no-java -no-jni -no-secure -spool-classic -no-dump -only-depend
  5. ./scripts/zerodepend
  6. ./aimk -no-java -no-jni -no-secure -spool-classic -no-dump depend
© www.soinside.com 2019 - 2024. All rights reserved.