error: se utilizó la biblioteca Libtool pero 'LIBTOOL' no está definido


117

Estoy intentando automakeacceder a la biblioteca OrientDb C ++, pero obtengo algunos errores.

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

Ya tengo configure.ac y Makefile.am definidos.

Ejecuto las siguientes herramientas automáticas

  • local

  • autoencabezado

  • 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

Cosas que ya probé:

  • autoreconf

  • aclocal -I / usr / share / libtool

  • aclocal -I.


19
Para cualquiera de tropiezo más en este error la solución para mí fue: sudo apt-get install libtool.
Casper

3
Gracias @Casper, me ahorraste mucho tiempo. Para la gente de centOs lo es yum install libtool.
Achal

Respuestas:


141

Una buena respuesta para mí fue instalar libtool:

sudo apt-get install libtool

86

Arreglado. Necesitaba ejecutar libtoolizeen el directorio, luego volver a ejecutar:

  • local

  • autoencabezado


89
En mi caso, solo necesito instalar libtool. sudo apt-get install libtool
Agosto

10
@Aust mismo, brew install libtool para OS X usando homebrew
Ron E

2

En mi caso en MacOs lo resolví con:

brew link libtool

Sé que es una vieja pregunta pero me encontré con esto, tal vez ayude a alguien más.


1

Para las personas que terminaron aquí y están usando CYGWIN, instale los siguientes paquetes en cygwin y vuelva a ejecutar:

  • cygwin32-libtool
  • libtool
  • libtool-debuginfo

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.