有腹肌的熊猫 · 图解Linux网络包接收过程 - 墨天轮· 1 年前 · |
聪明的茶叶 · ubuntu开发图形用户界面_ubuntu ...· 1 年前 · |
很酷的小熊猫 · npm更新依赖包到最新版本 - ...· 1 年前 · |
正直的椰子 · 如何使用nginx做正向代理访问外网? - 知乎· 1 年前 · |
当在Ubuntu 10.04上使用kdede3.5构建我的应用程序时,我得到了以下错误:
libtool: Version mismatch error. This is libtool 2.2.6 Debian-2.2.6a-4, but the
libtool: definition of this LT_INIT comes from libtool 2.2.6b.
libtool: You should recreate aclocal.m4 with macros from libtool 2.2.6 Debian-2.2.6a-4
libtool: and run autoconf again.
make[2]: *** [wktools4] Error 63
make[2]: Target `all' not remade because of errors.
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
*** Exited with status: 2 ***
我可以从哪里获得所需的libtool版本,或者如何重新创建aclocal.m4?
尝试运行aclocal
试一试
autoreconf -i
-i
选项很重要。
也许你已经安装了两个不同版本的libtools。尝试
apt-get remove all
(直到您在命令行中键入
which libtool
时什么也得不到为止),然后使用
apt-get install
命令。
上述方法都不起作用。
然后这就起作用了:
autoconf -f
./configure
make
上述方法都不起作用。在我停用conda环境后,它工作了:
source deactivate
如果您使用的是Anaconda,那么这可能是由于libtool和autoconf来自不同的来源。可以通过执行以下命令来检查这一点
which libtool
which autoconf
我的libtool来自conda,autoconf是一个系统包。卸载autoconf并使用conda重新安装
apt remove -y autoconf
(Ubuntu/Debian)
conda install -c anaconda autoconf
注意:你可能也需要安装automake。
conda install -c anaconda automake
我也遇到过这个问题。在我的例子中,在./autogen.sh的输出中,有:
libtoolize:您应该将以下文件的内容添加到“aclocal.m4”中: libtoolize:'/aclocal/libtool.m4‘libtoolize:'/aclocal/ltoptions.m4’libtoolize:'/aclocal/ltversion.m4‘libtoolize:考虑将'AC_CONFIG_MACRO_DIRS(m4)’添加到configure.ac,libtoolize:并重新运行libtoolize和aclocal。libtoolize:考虑将'-I m4‘添加到Makefile.am中的ACLOCAL_AMFLAGS。
我只需将/aclocal/下的三个*.m4文件的内容附加到aclocal.m4文件:
cat <a path>/aclocal/libtool.m4 <a path>/aclocal/ltoptions.m4 <a path>/aclocal/ltversion.m4 >> aclocal.m4
那就做。
下面是错误:
libtool: Version mismatch error. This is libtool 2.4.2 Debian-2.4.2-1.11, but the
libtool: definition of this LT_INIT comes from libtool 2.4.6.
libtool: You should recreate aclocal.m4 with macros from libtool 2.4.2 Debian-2.4.2-1.11
libtool: and run autoconf again.
上述方法都不起作用。
然后这就起作用了:
wget http://ftpmirror.gnu.org/libtool/libtool-2.4.6.tar.gz -O /root/libtool-2.4.6.tar.gz
tar xzvf /root/libtool-2.4.6.tar.gz -C /root