./configure不会被识别为cmdlet的名称

时间:2016-08-16 17:35:17

标签: xcode github github-for-windows libsodium

我试图在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 )

该怎么做才能解决这个问题?

2 个答案:

答案 0 :(得分:1)

检查一下你安装了[autogen],[autoconf]和[libtool]软件包。

答案 1 :(得分:0)

当我试图找出如何使用MinGW在Windows上编译htmlcxx时,我遇到了相同的错误 并运行

String s;
String h;
h = "HTTP/1.1 200 OK\r\nContent-Type: text/html\r\n";
s = "<!DOCTYPE HTML>\r\n<html>";
s += "<br>";
[...]
s += "<br></html>";
client.print(h + "Content-Length: " + s.bytelength() + s);

在“ ./configure”帮助我解决此问题之前。