美文网首页
Linux下报错make: *** No targets spe

Linux下报错make: *** No targets spe

作者: 小伙有点菜 | 来源:发表于2020-08-24 14:32 被阅读0次

    昨天在给客户解决网站问题时,排查问题出现报错如下:

    make: *** No targets specified and no makefile found. Stop

    这个是因为客户的服务器在编译安装nginx的时候,并没有执行./configure就直接make了,才导致这个报错,问题很简单。

    解决办法:

    按顺序执行以下命令安装ncurses

    wget http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.6.tar.gz

    tar zxvf ncurses-5.6.tar.gz

    cd ncurses-5.6

     ./configure -prefix=/usr/local -with-shared -without-debug

    make

    make install

    PS:执行之前要确保gcc是已经安装的,直接yum就可以的。还要确保最新版系统软件用update来搞定!本文来自:IT运维空间,原地址:www.94ip.comhttps://www.94ip.com/post/793.html

    相关文章

      网友评论

          本文标题:Linux下报错make: *** No targets spe

          本文链接:https://www.haomeiwen.com/subject/kcdnjktx.html