This error is prompted when configuring the MPC:
CONFIGURE:ERROR:LIBMPFR not found or uses a different ABI (including static vs shared).
MPC Download:
wget ftp://gnu.mirror.iweb.com/mpc/mpc-1.0.1.tar.gz
cause of the problem:
Lack of MPFR,
Http://www.mpfr.org/mpfr-current/mpfr-3.1.2.tar.xz
Http://www.mpfr.org/mpfr-current/mpfr-3.1.2.tar.gz
Note the file extension, compression ratio, decompression method is also different,. TAR.XZ compression ratio is higher.
The corresponding decompression method:
TAR-ZXVF mpfr-3.1.2.tar.gz
. Tar.xz method of Decompression:
Xz-d MPFR-3.1.2.TAR.XZ
Generates a Mpfr-3.1.2.tar file and then executes
TAR-XVF Mpfr-3.1.2.tar
Installation:
After the decompression is complete, go to the directory configuration installation:
# cd ./mpfr-3.1.2# ./configure # make && make install
Dependencies:
wget ftp://gnu.mirror.iweb.com/gmp/gmp-4.3.2.tar.gz
CONFIGURE:ERROR:LIBMPFR not found or uses a different ABI (including static vs shared).