MinGW gcc & # 8594; libmpc-3.dll is missing from the 64-bit version of Windows 7

I use MinGW under 64-bit Windows 7. To compile my simple application, I use a call:

gcc -o main.exe main.c

Then I get an error when my libmpc-3.dll . I already set my PATH variable to the bin directory of MinGW (there is only libmpc-2.dll and libmpc-10.dll .)

Can anyone help?

+4
source share
1 answer

It seems that the right way to solve this problem is to force MinGW to install the correct version of the library using the mingw-get tool, calling it as mingw-get install mpc .

If someone else lacks libmpc-3.dll for non-MinGW situations, it seems that Cygwin has a package with libmpc-3 ( http://www-uxsup.csx.cam.ac.uk/pub/ windows / cygwin / x86_64 / release / cygwin32-libmpc / ).

+4
source

All Articles