When installing Cygwin, when selecting a C++ compiler I see the following options:
mingw-gcc-g++, gcc4-g++ and gcc-g++
Can anyone tell me the difference between these? And which would I would want to use?
Also what’s the point of the gcc-mingw-g++ headers?
What’s “Mingw32 support”?
MinGW vs. Cygwin: There are two layers for porting unix applications to windows:
In fact, Windows are POSIX compliant, so none of that should be actually needed. Windows Services For Unix from Microsoft should provide compatibility.
The
mingwcompiler builds binaries using the MinGW libraries, the other variants use thecygwin1library.gcc/gcc4 is just different versions.