3

我正在尝试在 github shell 中使用这个 github 代码,但是消息

./configure 未被识别为 cmdlet 的名称

$ git clone git@github.com:jedisct1/libsodium.git
    $ ( cd libsodium && \
    ./configure --prefix="/usr/local" --disable-ssp --disable-pie \
                    --disable-silent-rules && \
    make && make check && sudo make install && make clean )

如何解决这个问题?

4

2 回答 2

2

检查你是否安装了 [autogen]、[autoconf] 和 [libtool] 软件包。

于 2016-08-22T17:44:51.383 回答
1

I had same error while I was trying to figure out how to compile htmlcxx on Windows using MinGW and running

autoreconf -i`

before "./configure" helped me with this issue.

于 2020-10-26T15:36:32.003 回答