【发布时间】:2018-11-26 14:13:31
【问题描述】:
我按照说明安装了FB Machine Learning tools.
其中一个库安装说明是
cd ~/libraries
git clone https://github.com/facebook/folly.git
cd folly/folly/
autoreconf -ivf
./configure
cp -R ~/libraries/gtest-1.7/* ./test/gtest-1.7/
make
make check
sudo make install
sudo ldconfig # reload the lib paths after freshly installed folly. fbthrift needs it.
我在autoreconf -ivf有问题,错误是
autoreconf: 'configure.ac' or 'configure.in' is required
但是当我安装 autoreconf 时,我拥有的是最新版本。
autoconf is already the newest version (2.69-9).
0 upgraded, 0 newly installed, 0 to remove and 26 not upgraded.
可能出了什么问题?
【问题讨论】:
-
这与 autoreconf 版本无关,而与您需要原始 configure.ac/in 文件之一有关。他们在场吗?
-
@MatthieuBrucher 所以你的意思是文件
configure.ac或configure.in应该在folly/folly 文件夹中。但我在文件夹中找不到这样的文件。
标签: configure autoreconf