PandaSeq安装错误:需要ltld,安装libtool库

PandaSeq安装错误:需要ltld,安装libtool库

我正在尝试安装熊猫序列作为 Red Hat 服务器上的非管理员,但编译器返回以下错误:

...
checking ltdl.h usability... no
checking ltdl.h presence... no
checking for ltdl.h... no
configure: error: *** ltld required, install libtool library.

所以我验证了所有依赖项都已安装:

whereis libtool : /usr/bin/libtool /usr/share/libtool
whereis zlib : /usr/include/zlib.h /usr/local/zlib /usr/share/man/man3/zlib.3.gz
whereis libbz2 : /usr/lib64/libbz2.so
whereis bzip2 : /usr/bin/bzip2 /usr/local/bzip2 /usr/share/man/man1/bzip2.1.gz

我使用的编译器命令是:

git clone http://github.com/neufeld/pandaseq.git/
cd pandaseq
./autogen.sh
./configure --prefix=/my/dir

有什么想法如何让编译器看到吗libtool

谢谢!

答案1

最后,我们的服务器管理员安装了以下软件包,从而成功安装了 PANDAseq:

libtool-ltdl-2.2.6-15.5.el6.x86_64
libtool-2.2.6-15.5.el6.x86_64
libtool-ltdl-devel-2.2.6-15.5.el6.x86_64

熊猫现在很高兴:)

相关内容