下载安装GMP 4.2+, MPFR 3.1.0+ and MPC 0.8.0+
时间: 2023-12-09 22:05:17 浏览: 243
gcc依赖文件gmp4.3.2+mpfr2.4.2+mpc0.8.1
5星 · 资源好评率100%
以下是安装 GMP、MPFR 和 MPC 的步骤:
1. 下载 GMP、MPFR 和 MPC 的源代码,并解压到任意目录中。
2. 安装 GMP:
```
cd gmp-<version>
./configure
make
sudo make install
```
其中 `<version>` 是您下载的 GMP 版本号,例如 `gmp-6.2.1`。
3. 安装 MPFR:
```
cd mpfr-<version>
./configure --with-gmp-include=<gmp_path>/include --with-gmp-lib=<gmp_path>/lib
make
sudo make install
```
其中 `<version>` 是您下载的 MPFR 版本号,例如 `mpfr-4.1.0`;`<gmp_path>` 是您安装 GMP 的路径,例如 `/usr/local`。
4. 安装 MPC:
```
cd mpc-<version>
./configure --with-gmp-include=<gmp_path>/include --with-gmp-lib=<gmp_path>/lib --with-mpfr-include=<mpfr_path>/include --with-mpfr-lib=<mpfr_path>/lib
make
sudo make install
```
其中 `<version>` 是您下载的 MPC 版本号,例如 `mpc-1.2.1`;`<gmp_path>` 和 `<mpfr_path>` 是您安装 GMP 和 MPFR 的路径,例如 `/usr/local`。
完成以上步骤后,您应该已经成功安装了 GMP、MPFR 和 MPC。请注意,您需要在编译和安装 GCC 时使用这些库,因此请确保在编译时正确指定它们的路径。
阅读全文