10.10.2. Contents of MPFR
Installed libraries:
libmpfr.[a,so]
Installed directory:
/usr/share/doc/mpfr
The MPFR library is a C library for multiple-precision floating-point computations with correct rounding.
Prepare MPFR for compilation:
CC="gcc -isystem /usr/include" \ LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib" \ ./configure --prefix=/usr --enable-shared \ --with-gmp=/usr
Compile the package:
make
The test suite for MPFR is considered critical. Do not skip it under any circumstance.
Test the results:
make check
Install the package:
make install