vote up 8 vote down star

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.

flag

57% accept rate
What a very existicial question. Perhaps that's why all those dining philosophers are always milling about. – NoMoreZealots Aug 19 at 10:47

4 Answers

vote up 4 vote down check

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.

link|flag
GCC is a collection of compilers. – Petros Aug 17 at 10:33
1  
True, but the point still remains. – Matthew Iselin Aug 17 at 10:35
Does that mean that I could download the GCC source, compile a compiler targeting win32/64 and compile code with it (except there are no libraries and headers)? – vonolsson Aug 17 at 10:36
You can build a compiler that will create PE files, so all you're really missing then is the libraries and headers to be able to do anything useful with that. You'd also be missing things like CRT0. – Matthew Iselin Aug 17 at 10:40
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

From MinGW's main site

Offered in easily installed binary package format, for native deployment on MS-Windows, or user-built from source, for cross-hosted use on Unix or GNU/Linux, the suite exploits Microsoft's standard system DLLs to provide the C-Runtime and Windows API.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.