(cygwin環境で)設定すると、エラーが発生しました。メッセージは次のとおりです。
$ ./configure
.................
checking build system type... /bin/sh: ./config.guess: No such file or directory
configure: error: cannot guess build type; you must specify one
解決方法ありがとう!!
/usr/share/automake*/config.guess
を検索
automakeの最新バージョンを確認してください
$ which automake
$ automake --version
/usr/share/automake.1.11.1/config.guess
で適切なautomakeフォルダーを見つけます
ビルドツリーのconfig.guess
を/usr/share/automake.1.11.1/config.guess
に置き換えます
(config.sub
にも同じ/通常必要です。)
エラーメッセージには、これに対処する方法に関する指示も含まれる場合があります。私の場合、私は見た
This script, last modified 2008-01-23, has failed to recognize
the operating system you are using. It is advised that you
download the most up to date version of the config scripts from
http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
and
http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD
ブラウザーでこれらのファイルにアクセスし、システムに保存し、ビルド中のパッケージ内のそれぞれの./config/config.guessおよび./config/config.subファイルを上書きすることができました。
感謝します。
config.guess
およびconfig.sub
ルーチンは更新され、github
に保持されます。スクリプトを実行すると、Webポインターが取得されます。
./config.guess
Mingw
システムでは、config.sub
または.guess
はshare/../automake-1.11/
ツリー、私は(古いスクリプトを置き換えたときに)動作する更新されたスクリプトをダウンロードする必要がありました。