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


117

我正在尝试automakeOrientDb 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/安装

我已经定义了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

我已经尝试过的事情:

  • 自动重新配置

  • aclocal -I / usr / share / libtool

  • aclocal -I。


19
对于其他绊倒这个错误的人,我的解决方法是:sudo apt-get install libtool
卡斯珀

3
谢谢@Casper,您节省了我很多时间。对于centOs的人们来说是这样yum install libtool
阿沙尔

Answers:


141

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

sudo apt-get install libtool

86

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

  • 本地

  • 自动标题


89
就我而言,我只需要安装libtool。sudo apt-get install libtool
2015年

10
@同样,使用自制软件为OS X brew安装libtool
Ron E

2

就MacO而言,我通过以下方法解决了它:

brew link libtool

我知道这是一个古老的问题,但是遇到了这个问题,也许会对其他人有所帮助。


1

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

  • cygwin32-libtool
  • 的libtool
  • libtool-调试信息

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.