ข้อผิดพลาด: ใช้ไลบรารี Libtool แต่ไม่ได้กำหนด 'LIBTOOL'


117

ฉันพยายาม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

ฉันได้กำหนดค่า config.ac และ Makefile.am แล้ว

ฉันเรียกใช้เครื่องมืออัตโนมัติต่อไปนี้

  • aclocal

  • autoheader

  • 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สำหรับคนอื่นสะดุดในข้อผิดพลาดนี้แก้ไขสำหรับฉันคือ:
Casper

3
ขอบคุณ @Casper คุณช่วยฉันได้มาก สำหรับ folks CentOS yum install libtoolมันเป็น
Achal

คำตอบ:



87

ซ่อมมัน. ฉันต้องการเรียกใช้libtoolizeในไดเร็กทอรีจากนั้นรันใหม่:

  • aclocal

  • autoheader


89
ในกรณีของฉันฉันต้องติดตั้ง libtool sudo apt-get install libtool
ออสเตรีย

10
@ เช่นเดียวกันชงติดตั้ง libtool สำหรับ OS X โดยใช้ homebrew
Ron E

2

ในกรณีของฉันใน MacOs ฉันแก้ไขด้วย:

brew link libtool

ฉันรู้ว่ามันเป็นคำถามเก่า แต่เพิ่งเจอคำถามนี้บางทีมันอาจจะช่วยคนอื่นได้


1

สำหรับผู้ที่ลงเอยที่นี่และใช้งานอยู่CYGWINให้ติดตั้งแพ็คเกจต่อไปนี้ใน cygwin แล้วรันใหม่:

  • cygwin32-libtool
  • libtool
  • libtool-debuginfo

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.