What's the difference between the MinGW project and the 32-bit portion of the MinGW-w64 project? Does the 32-bit portion of MinGW-w64 have any relation to x64 at all?

It seems like their compilers do the exact same things...

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

One looks like it "cross compiles", from 64 bit to 32 bit, whereas the other looks native.

That was just a quick look though, so I could be a long long way off the mark here......

EDIT: This is only somewhat true. A better explanation is provided here

link|improve this answer
@Ben: That's what I thought (well, 32-bit to 64-bit), but in fact when you try to compile with -m32 in MinGW-w64, it says "sorry, 32-bit not compiled in". :( – Mehrdad Apr 11 '11 at 10:00
When you build mingw, it may need to be built with the 32-bit extensions. Of course, chances are you're not building MinGW, and thus getting the stock (i.e. 64 bit). They most likely recommend using MinGW for 32 bit builds, and thus don't add in extra options (like -m32) unless you do it yourself. – Ben Stott Apr 11 '11 at 10:02
@Ben: I'm confused... there's MinGW, MinGW-w32, and MinGW-w64. The last one can't cross-compile for 32-bit, and the first two can't cross-compile for 64-bit. I'm not sure I understand what you mean, but my question was whether there's a difference between the first two or not. – Mehrdad Apr 11 '11 at 10:08
Hmm, you know, seems like my answer was wrong - the FAQ suggests that it does the exact same thing as MinGW32 – Ben Stott Apr 11 '11 at 10:13
@Ben: Hm... which part of the FAQ are you referring to specifically? – Mehrdad Apr 11 '11 at 10:20
show 2 more comments
feedback

There's a bit of insight into this in the Wikipedia talk page on the MinGW article. Basically, it appears that the MinGW-w64 project is a fork of the MinGW source base. I have found very little clear information on the details of why the fork happened (although this mailing-list post and this rebuttalimplies it was some form of the usual sort of open-source politics), or of the subsequent differences between the two projects.

To a first approximation, they're the same; the differences will come in in subsequent development.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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