Where is and how to install i686-pc-mingw32-c++?

1

I have a fresh installation of Ubuntu. I try to install i686-pc-mingw32-c++ required by a third-party Makfile by: sudo apt-get install mingw32, sudo apt-get install mingw32-runtime and sudo apt-get install mingw32-binutils.

However, I only see /usr/bin/i586-mingw32msvc-g++. Where is the compiler I'm looking for?

HelloWorld

Posted 2011-09-08T07:54:08.340

Reputation: 133

1Are you sure you're looking for MinGW? That's targetting Windows, not Linux. – MSalters – 2011-09-08T08:08:11.773

Answers

4

The problem is that gcc cross-compilers can be names differently. It depends on how it is built in the first place. The programs you are referring to (i686-pc-mingw32-g++ and i586-mingw32msvc-g++) are two of the many possibilities when naming the MinGW binaries. But they should behave more or less similarly.

If the third-party Makefile uses this name unconditionally, I'd suggest to change it for your correct one. If you cannot change it, just add a script in your bin directoy that chains to the other compiler, and it'll work transparently.

But if the third-party Makefile uses autoconf (or similar), then you are configuring it wrong.

rodrigo

Posted 2011-09-08T07:54:08.340

Reputation: 150