I followed the instruction from Rick Regan http://www.exploringbinary.com/how-to-install-and-run-gmp-on-windows-using-mpir/. Unfortunately, for some reasons, the static library only works with C. For C++, the compiler always complains about linker problems. There are several differences between the current version that I use (2.4.0) with the version of Rick Regan. On the other hand, I also followed the readme.txt inside build.vc10 folder, but I still couldn't figure out why it was broken. I'm running Windows 7 x64 and using Visual Studio 2010 - Ultimate.
To be more specific:
- Firstly, I download the source of MPIR version 2.4.0 from http://www.mpir.org/, i.e.
Source tarball bz2. - Next, I download
yasmfrom http://yasm.tortall.net/Download.html. I download bothWin64.exeandWin64 VS2010.zip, and put both of them into myVC\bindirectory. I also renamed theyasm-1.1.0-win64.exetoyasm.exe - I then open the
mpir.slninsidebuild.vc10folder, and build all thelibprojects underreleasemode since I just want to use static libraries.
After building those solutions, it generate a folder named Win32, and inside this folder there is another folder named Release in which there are four other library files:
- mpir.lib
- mpirrxx.lib
- mpir.pdb
- mpirxx.pdb

Besides, the lib folder inside build.vc10 also generates two other folders:
Win32
x64

Next, I copied all the library files from build.vc10\lib to my C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include as well as mpir.h and mpirxx.h to my C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include.
After finish all these steps, I create a Win32 Console Application project, and add two Additional Options under Project Properties\Linker\Command Line\. They are:
- mpir.lib
- mpirxx.lib
Then I built some examples with C and it worked as expected. However, when I tried this particular example:
#include <iostream>
using namespace std;
#pragma warning(disable: 4800)
#include <mpirxx.h>
#pragma warning(default: 4800)
int main (int argc, char *argv[])
{
mpz_class aBigPO2;
aBigPO2 = 1073741824; //2^30
aBigPO2*=aBigPO2; //2^60
aBigPO2*=aBigPO2; //2^120
aBigPO2*=aBigPO2; //2^240
aBigPO2*=aBigPO2; //2^480
aBigPO2*=aBigPO2; //2^960
aBigPO2*=aBigPO2; //2^1920
cout << aBigPO2 << endl;
}
It failed with many errors:
1>main.obj : error LNK2001: unresolved external symbol ___gmpz_set_si
1>main.obj : error LNK2001: unresolved external symbol ___gmpz_init
1>main.obj : error LNK2001: unresolved external symbol ___gmpz_mul
1>main.obj : error LNK2001: unresolved external symbol ___gmpz_clear
And I have no idea why this happened. I even tried to copy other alternatives from Win32 folder but it still produced the same errors. But I'm not sure how these files are different though. I'm running Windows 7 x64 but I don't think my Visual Studio is x64. I wonder mixing 32bit and 64bit could cause this issue. Any idea? Thank you.