如何解决 Linux 上 LT_INIT command not found

问题:

你在 Linux 上运行 configure 脚本。它以这样的消息退出:

configure_error_output.txt
./configure: line 3638: LT_INIT: command not found

解决方案

你缺少 GNU libtool。使用你的发行版包管理器安装它,例如在 Ubuntu 上使用

install_libtool.sh
sudo apt-get install libtool

错误消息中的 LT_INIT 意味着 libtool init,但不幸的是 autoconfautomake 似乎在所有情况下都不能识别缺少的 libtool。


Check out similar posts by category: Linux