至少从2010 年12 月起,Cygwin 就可以使用 MinGW-w64 。但是我很难用它来编译几乎任何东西。我已经设置了替代品的符号链接
p=x86_64-w64-mingw32
alternatives \
--install /usr/bin/gcc.exe gcc /usr/bin/$p-gcc.exe 0 \
--slave /usr/bin/ar.exe ar /usr/bin/$p-ar.exe
例如,如果我尝试编译wget
./configure --without-ssl
make
错误(为简洁而编辑)
connect.o:connect.c:(.text+0x3f): undefined reference to `__imp_htons'
connect.o:connect.c:(.text+0xbe7): undefined reference to `__imp_ntohs'
connect.o:connect.c:(.text+0xd96): undefined reference to `run_with_timeout'
如果我使用
- 带有 MinGW gcc 的 MinGW shell
- Cygwin shell 与 Cygwin gcc (
gcc4-core
)
然后 Wget 将编译。
基于 ak2 的答案,这似乎有效
./configure --host=x86_64-w64-mingw32 --disable-ipv6 --without-ssl
make