linux 错误:Libtool库已使用,但未定义“LIBTOOL”

k75qkfdt  于 2022-11-22  发布在  Linux
关注(0)|答案(7)|浏览(255)

我正在尝试automake OrientDb C++库,但遇到一些错误。

Makefile.am:10: error: Libtool library used but 'LIBTOOL' is undefined
Makefile.am:10:   The usual way to define 'LIBTOOL' is to add 'LT_INIT'
Makefile.am:10:   to 'configure.ac' and run 'aclocal' and 'autoconf' again.
Makefile.am:10:   If 'LT_INIT' is in 'configure.ac', make sure
Makefile.am:10:   its definition is in aclocal's search path.

https://github.com/tglman/orientdb-c
https://github.com/tglman/orientdb-c/wiki/Install
我已经定义了configure.ac和Makefile.am。
我运行以下自动工具

  • 本地的
  • 自动标头
  • 自动制造:
    libtool(GNU libtool)2.4.2版

configure.ac

# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.69])
AC_INIT([orientdb-c],[0.9])
AC_CONFIG_SRCDIR([src/o_query_internal.h])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE()

# Checks for programs.
AC_PROG_CXX
AC_PROG_AWK
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET

LT_INIT

# Checks for libraries.

# Checks for header files.
AC_CHECK_HEADERS([malloc.h memory.h netdb.h netinet/in.h stdlib.h string.h sys/ioctl.h sys/socket.h     sys/time.h unistd.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_SIZE_T

# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_REALLOC
AC_CHECK_FUNCS([gethostbyname memset socket strchr strcspn strdup strerror])

AC_CONFIG_FILES([Makefile])
AC_OUTPUT

我已经尝试过的事情:

  • 自动重新配置
  • /usr/共享/libtool/用户名和密码
  • 本地的-I .
biswetbf

biswetbf1#

对我来说,安装libtool是一个很好的答案:

sudo apt-get install libtool
weylhg0b

weylhg0b2#

我需要在目录中运行libtoolize,然后重新运行:

  • 本地的
  • 自动标头
uz75evzq

uz75evzq3#

在我的案例中,我在macOS上解决了这个问题:

brew link libtool
u2nhd7ah

u2nhd7ah4#

对于使用CYGWIN的用户,请在cygwin中安装以下软件包并重新运行:

  • cygwin 32-库工具
  • 库工具
  • 库工具调试信息
huwehgph

huwehgph5#

对于mac来说很简单:

brew install libtool
ccrfmcuu

ccrfmcuu6#

对于使用Tiny Core Linux的用户,您还需要安装libtool-dev,因为它具有libtoolize所需的 *.m4文件。

3yhwsihp

3yhwsihp7#

对于Mac用户来说,他们可能对brew有不好的体验,不可预测的下载行为,无尽的依赖关系,下载时间,以及它消耗的大量空间,我提供了下面的替代方法。也许我是错误的,但它不会伤害意识到另一种方法(除了MacPorts,端口安装libtool,或xcode,xcode-select -install)。

https://ftp.gnu.org/gnu/libtool/

下载tar.gz文件,然后将其解压缩

tar -xzf libtool-2.4.tar.gz

然后

configure
make
sudo make install

相关问题