代码之家  ›  专栏  ›  技术社区  ›  batuman

autoreconf:需要“configure.ac”或“configure.in”

  •  0
  • batuman  · 技术社区  · 6 年前

    我按照说明安装 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.
    

    可能有什么问题?

    1 回复  |  直到 6 年前
        1
  •  1
  •   Matthieu Brucher    6 年前

    folly 没有使用 autotols 再也没有了,但是,只有一个 CMakeLists.txt 文件,而不是 configure.* )

    请参见此处了解步骤: https://github.com/facebook/folly#dependencies

    推荐文章