How to resolve configure guessing build type failure?

后端 未结 5 740
你的背包
你的背包 2020-12-13 09:17

When I configure (under cygwin environment), an error occurred, Message are following:

$ ./configure
.................
checking build system type... /bin/sh:         


        
5条回答
  •  再見小時候
    2020-12-13 09:58

    search for /usr/share/automake*/config.guess

    check the latest version of automake

    $ which automake
    $ automake --version
    

    find the appropriate automake folder in /usr/share/automake.1.11.1/config.guess

    replace config.guess from your build tree with /usr/share/automake.1.11.1/config.guess

    (The same may/is usually needed for config.sub.)

提交回复
热议问题