MSYS and UNIX-like build systems apart; why does Mingw exist? What I mean is, why isn't win32/64 just another target available in "vanilla GCC"? Are there technical reasons for this or are they "political"? It would seem to me that there isn't really anything special about the Windows platform that would make a GCC port to it "incompatible" with the original GCC.
|
|
|||
|
|
|
Mingw isn't just the compilers - it's also the libraries and headers (and whatever other support files you might need). GCC is just a compiler. Mingw is a full environment. |
||||||||||
|
|
|
well, while you can use cross compiler to produce win32/64 binary codes from GCC, someone has to port all the C runtime libraries across though. Both Mingw and Cygwin are created for this purpose. |
||
|
|
|
|
MingW is intended to allow easy porting of Posix apps to windows. It's simply a "thinner" layer than CygWin, so not everything might work where windows too different. CygWin allows provides enough insulation that even the scripting tools to build and generate code run. |
||
|
|
|
|
From MinGW's main site
|
||
|
|
