注意:版本根据自己需要,或者依赖要求进行更改,建议先在对应网站找到对应版本文件,在修改链接

gmp

wget "https://gmplib.org/download/gmp/gmp-6.2.1.tar.xz"
tar xvf gmp-6.2.1.tar.xz
cd gmp-6.2.1
./configure
make -j4 && sudo make install

mpfr

wget https://www.mpfr.org/mpfr-current/mpfr-4.2.0.tar.xz
tar xvf mpfr-4.2.0.tar.xz
cd mpfr-4.2.0
./configure
make -j4 && sudo make install

mpc

wget https://ftp.gnu.org/gnu/mpc/mpc-1.3.1.tar.gz
tar xvf mpc-1.3.1.tar.gz
cd mpc-1.3.1
./configure
make -j4 ; sudo make install

isl

wget https://gcc.gnu.org/pub/gcc/infrastructure/isl-0.24.tar.bz2
tar xvf isl-0.24.tar.bz2
cd isl-0.24
./configure; make -j4 ; sudo make install

gcc

wget https://ftp.gnu.org/gnu/gcc/gcc-13.1.0/gcc-13.1.0.tar.gz
tar xvf gcc-13.1.0.tar.gz
cd gcc-13.1.0
./configure --disable-multilib
make -j4 ; sudo make install

文章信息

创建时间
2025-03-26
作者
郭铭心
是否所有人可见
所有人可见
最后修改日期
2025-03-26
点击数
51