Cygwin下编译安装NetHack 3.4.3

Cygwin识别问题

原来的autoconf下的config.guess不能识别cygwin,需patch成这个

$ which automake
$ automake --version
/usr/share/automake.1.11.1/config.guess

实在没找到还可以在这里下载到

http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD

包依赖

如果你只要生成Cygwin模拟环境下使用的build用以下命令就可以 ,Username用win32下的用户名

./configure --with-owner=Username --with-group=Administrator --prefix=/opt/nethack --without-compression --enable-tty-graphics
make
make install

如果你要生成脱离Cygwin可以直接在Win32下运行的Build用以下命令

./configure --with-owner=Username --with-group=Administrator --prefix=/opt/nethack --without-compression --enable-tty-graphics --build=mingw32
make
make install

你可能感兴趣的:(Cygwin下编译安装NetHack 3.4.3)