I'm having trouble installing both mingw32 and mingw64 on Linux or MacOS. I've tried many different package repositories and multiple versions of Linux. I'm happy to use anything.

Thanks.

link|improve this question

1  
Why do you want to do this? Typically the mingw tools are ports of unix utilities, including gcc, that let you run them on windows. It's not intended to run on Linux because the tools already exist on that platform, since thats the originating platform. – sashang Jul 9 '11 at 3:17
@sashang There are also croscompilers to compile windows executables from other platforms. – VestniK Jul 9 '11 at 3:59
I want to do this because I want to compile on Linux for Windows. It's a standard way that the tools are run. – vy32 Jul 9 '11 at 10:55
feedback

3 Answers

up vote 2 down vote accepted

On Ubuntu, you can get going in many cases with "apt-get install gcc-mingw32"

If you need to install both the 64-bit and 32-bit mingw compilers, try this:

For 64-bit build systems:

apt-get install libmpfr1ldbl
wget http://ppa.launchpad.net/mingw-packages/ppa/ubuntu/pool/main/w/w64-toolchain/x86-64-w64-mingw32-toolchain_1.0b+201011211643-0w2273g93970b22426p16~karmic1_amd64.deb
dpkg -i x86-64-w64-mingw32-toolchain_1.0b+201011211643-0w2273g93970b22426p16~karmic1_amd64.deb

For 32-bit build systems:

wget http://ppa.launchpad.net/mingw-packages/ppa/ubuntu/pool/main/w/w64-toolchain/i686-w64-mingw32-toolchain_1.0b+201011211643-0w2273g93970b22426p16~karmic1_amd64.deb
dpkg -i i686-w64-mingw32-toolchain_1.0b+201011211643-0w2273g93970b22426p16~karmic1_amd64.deb

Source for this tip: http://ubuntuforums.org/showthread.php?t=1705566

On Fedora, you can install mingw32 using standard yum. To install mingw64, follow the instructions at:

Best bet for cross-compiling seems to be Fedora, which gives you both mingw32 and mingw64:

I haven't been able to find a 64-bit cross-compiler for Mac.

link|improve this answer
feedback

I take it you want to cross-compile to both win32 and win64. Current Debian testing can help you there with the gcc-mingw-w64 package. Drawback is that shared gcc libraries (=> cross-DLL exception support etc.) is currently disabled.

link|improve this answer
Thanks. Can you tell me where the gcc-mingw-w64 compiler is to be found? My 'apt-cache search gcc-mingw' only turns up mingw-w64 -- Minimalist GNU w64 (cross) runtime, not the GCC compiler itself. – vy32 Jul 16 '11 at 15:14
feedback

Fedora has a very nice mingw32 cross compiler framework with lots of pre-compiled libraries. The packages are all included in the official package repository and it's just the matter of running 'yum install mingw32-gcc' to set the compiler up. See the Fedora MinGW project page for more information.

However, the official packages currently only support the 32 bit Windows target. To lift that restriction, there is work underway and a temporary repository set up with mingw32, mingw64, and OS X cross compilers. See https://fedoraproject.org/wiki/MinGW/CrossCompilerFramework for more info.

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.