エラー: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/Install

configure.acとMakefile.amはすでに定義されています。

次のautotoolsを実行します

  • 近所の

  • 自動ヘッダー

  • automake:

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

私がすでに試したこと:

  • autoreconf

  • aclocal -I / usr / share / libtool

  • aclocal -I


19
このエラーに遭遇した他の人にとって、私にとっての修正は:sudo apt-get install libtoolでした。
キャスパー

3
@Casper、私の時間を大幅に節約してくれてありがとう。centOsの人々にとってはそうですyum install libtool
Achal

回答:


141

私にとっての良い答えは、libtoolをインストールすることでした:

sudo apt-get install libtool

86

修正しました。libtoolizeディレクトリで実行してから再実行する必要がありました:

  • 近所の

  • 自動ヘッダー


89
私の場合、libtoolをインストールするだけです。sudo apt-get install libtool
アウスト・

10
@まったく同じ、homebrewを使用してOS X用のlibtoolをbrew install
Ron E

2

私のMacOの場合、私はそれを次のように解決しました:

brew link libtool

私はそれが古い質問であることを知っていますが、これに遭遇しただけで、おそらく他の誰かを助けるでしょう。


1

ここで終了してを使用している人はCYGWIN、cygwinに次のパッケージをインストールして再実行してください。

  • cygwin32-libtool
  • libtool
  • libtool-debuginfo

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.