歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> 關於Linux >> LIBTOOL is undefined問題的解決方法

LIBTOOL is undefined問題的解決方法

日期:2017/3/1 15:21:13   编辑:關於Linux
LIBTOOL is undefined問題的解決方法 [plain] configure.ac:10: error: possibly undefined macro: AC_PROG_LIBTOOL If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. + automake --foreign --copy --add-missing -Woverride src/common/compress/Makefile.am:9: Libtool library used but `LIBTOOL' is undefined src/common/compress/Makefile.am:9: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL' src/common/compress/Makefile.am:9: to `configure.ac' and run `aclocal' and `autoconf' again. src/common/compress/Makefile.am:9: If `AC_PROG_LIBTOOL' is in `configure.ac', make sure src/common/compress/Makefile.am:9: its definition is in aclocal's search path. 這個問題我也找了好久,最後看到兩篇文章,記錄下來: 觀點一: 原因分析 aclocal是個掃描程序, 負責掃描configure.ac中所有的宏定義並展開, 上面產生的原因就是找不到LIBTOOL宏的定義之處造成的. 原因就是aclocal與libtool沒有安裝在一個相同目錄下面 aclocal是去默認 安裝目錄 /usr/share/aclocal下面搜索所有的.m4文件找所定義的宏, 但是由於安裝了多個aclocal,可能aclocal目錄不存在,實際目錄為/usr/share/aclocal1.10等, 這就造成了aclocal找不到m4文件的情況, 解決辦法就是將文件夾aclocal1.10重命名為aclocal. 或者顯示指定路徑 aclocal -I /usr/share/aclocal1.10 -I /usr/share/libtool/m4 --install 或者把/usr/share/libtool/m4下面的文件都copy至/usr/share/aclocal1.10中. 觀點二: 出現這個問題的原因主要有兩個: 1.沒有安裝aclocal 解決方法:安裝libtool 2.沒有配置正確aclocal的庫LIBTOOL.m4的路徑 解決方法: —-查看aclocal的路徑 aclocal --print-ac-dir —-如果相應的*.m4文件不在這個目錄下,則重新配置路徑,或是將相應的*.m4文件復制到這個路徑下 (aclocal -I DIR)
Copyright © Linux教程網 All Rights Reserved