Related questions
How to install MinGW-w64 and MSYS2?
I am trying to build some open source library. I need package management system to easily download the dependencies. At first I am using MinGW+MSYS. But the included packages are limited. Someone told me to use MinGW-w64 + MSYS2.
I …
MSYS vs. MinGW: internal environment variables
MSYS2 default shell (bash) can be started choosing among three launchers, which also set the environment variable MSYSTEM. Specifically:
msys2_shell.bat sets it to MSYS
mingw64_shell.bat sets it to MINGW64 and
mingw32_shell.bat sets it to …
Sockets in MinGW
I was just trying to build netcat in MSYS using MinGW and realized that MinGW never really ported all of the BSD socket stuff to Windows (eg sys/socket.h). I know you can use Windows Sockets in MinGW, but …