libtool: Version mismatch error 解决

简介: libtool: Version mismatch error 解决

在编译一个软件的时候,在 ./configure 和 make  之后可能会出现如下错误:

 

libtool: Version mismatch error.  This is libtool 2.4.2 Debian-2.4.2-1ubuntu1, but the  
libtool: definition of this LT_INIT comes from libtool 2.4.  
libtool: You should recreate aclocal.m4 with macros from libtool 2.4.2 Debian-2.4.2-1ubuntu1  
libtool: and run autoconf again.  
make[5]: *** 1 Error 63

 

解决方法很简单:

运行 autoreconf -ivf 即可。

 

另:

make clean仅仅是清除之前编译的可执行文件及配置文件。

而make distclean要清除所有生成的文件。


Makefile

在符合GNU Makefiel惯例的Makefile中,包含了一些基本的预先定义的操作:


make

根据Makefile编译源代码,连接,生成目标文件,可执行文件。


make clean

清除上次的make命令所产生的object文件(后缀为“.o”的文件)及可执行文件。


make install

将编译成功的可执行文件安装到系统目录中,一般为/usr/local/bin目录。


make dist

产生发布软件包文件(即distribution package)。这个命令将会将可执行文件及相关文件打包成一个tar.gz压缩的文件用来作为发布软件的软件包。


它会在当前目录下生成一个名字类似“PACKAGE-VERSION.tar.gz”的文件。PACKAGE和VERSION,是我们在configure.in中定义的AM_INIT_AUTOMAKE(PACKAGE, VERSION)。


make distcheck

生成发布软件包并对其进行测试检查,以确定发布包的正确性。这个操作将自动把压缩包文件解开,然后执行configure命令,并且执行make,来确认编译不出现错误,最后提示你软件包已经准备好,可以发布了。


make distclean类似make clean,但同时也将configure生成的文件全部删除掉,包括Makefile。

目录
相关文章
|
3月前
|
Python
ERROR: Could not find a version that satisfies the requirement thop (from versions: none) ERROR: No
这篇文章介绍了在尝试安装`thop`包时遇到的"No matching distribution found"错误,并提供了通过直接从GitHub源码安装`thop`的解决方法。
ERROR: Could not find a version that satisfies the requirement thop (from versions: none) ERROR: No
|
Java Linux
error: Failed dependencies: libjvm.so()(64bit) is needed by (installed)
error: Failed dependencies: libjvm.so()(64bit) is needed by (installed)
error: Failed dependencies: libjvm.so()(64bit) is needed by (installed)
libtool: Version mismatch error
libtool: Version mismatch error
102 0
configure: error: libacl not found
configure: error: libacl not found
82 0
libtool: Version mismatch error. This is libtool 2.4.6, but the definition of this LT_INIT
libtool: Version mismatch error. This is libtool 2.4.6, but the definition of this LT_INIT
127 0
ERROR: libx264 not found
ERROR: libx264 not found
167 0
|
C语言
version GLIBC_2.28 not found
version GLIBC_2.28 not found
632 0
|
Perl
configure error Perl version 5 is required!
configure error Perl version 5 is required!
232 0
|
C语言