gcc

gcc インストール

estis2016/10/10 (月) 07:24 に投稿

wget http://ftp.tsukuba.wide.ad.jp/software/gcc/infrastructure/gmp-6.1.0.tar.bz2
tar xvf gmp-6.1.0.tar.bz2
cd gmp-6.1.0/
./configure --prefix=/home/myaccount/
make
make check(しないと、怒られる)
make install

wget http://ftp.tsukuba.wide.ad.jp/software/gcc/infrastructure/mpfr-3.1.4.tar.bz2
tar xvf mpfr-3.1.4.tar.bz2
cd mpfr-3.1.4/
./configure --prefix=/home/myaccount/ --with-gmp=/home/myaccount/
make
make install

wget http://ftp.tsukuba.wide.ad.jp/software/gcc/infrastructure/mpc-1.0.3.tar.gz
tar xvf mpc-1.0.3.tar.gz
cd mpc-1.0.3/