I built in VS2019 the MPIR and MPFR libs from the provided .sln
in the source.
Basic samples are built and run fine. However, the following:
cout << __gmp_bits_per_limb << endl;
cout << gmp_version << endl;
reports missing link symbols.
The first one is important to me for CGAL::Gmpfr
.
My current remedy is to define
const int __gmp_bits_per_limb = 64;
But I didn't bother to read what this number means, and what's the default(?).