2013-09-24 103 views
67

Tôi đang cố gắng để automake thư viện OrientDb C++, nhưng nhận được một số lỗi.lỗi: Libtool thư viện được sử dụng nhưng 'LIBTOOL' là không xác định

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

Tôi có configure.ac và Makefile.am đã được xác định.

Tôi chạy autotools sau

  • 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 

Những điều tôi đã cố gắng:

  • autoreconf

  • aclocal -I/usr/share/libtool

  • aclocal -I.

+3

Vì vậy, điều này khá nhiều tổng lên mỗi 'autogen.sh' hoặc' initgen.sh'. –

+7

Đối với bất cứ ai khác tình cờ gặp lỗi này, sửa chữa cho tôi là: 'sudo apt-get install libtool'. – Casper

Trả lời

61

Sửa lỗi. Tôi cần thiết để chạy libtoolize trong thư mục, sau đó chạy lại:

  • aclocal

  • autoheader

+79

Trong trường hợp của tôi, tôi chỉ cần cài đặt libtool. 'sudo apt-get install libtool' – Aust

+7

@ Tương tự, pha cài đặt libtool cho OS X sử dụng homebrew –

59

Nhờ @Casper và @Aust một câu trả lời tốt đối với tôi là để cài đặt libtool:

sudo apt-get install libtool