gcc最新版じゃないとコンパイルできないもの(MCTとかnetcdf)があったりしたので、インストール。結構面倒だった。
gmp, mpfr, mpc という3つのパッケージをこの順で事前に入れる必要がある。
gmp-4.3.2.tar.bz2 >confugure >make >make install mpfr-2.4.2.tar.bz2 >configure -with-gmp-include=/usr/local/include --with-gmp-lib=/usr/local/lib >make >make install mpc-0.8.1.tar.gz >configure --with-mpfr-include=/usr/local/include --with-mpfr-lib=/usrlocal/lib \ --with-gmp-include=/usr/local/include --with-gmp-lib=/usr/local/lib >make >make install gcc-4.8.2.tar.gz >configure --with-mpfr-include=/usr/local/include --with-mpfr-lib=/usrlocal/lib \ --with-gmp-include=/usr/local/include --with-gmp-lib=/usr/local/lib \ --with-mpc-include=/usr/local/include --with-mpc-lib=/usr/local/lib >(cshだと)setenv LD_LIBRARY_PATH /usr/lical/lib >make >make install
/usr/bin のgccとgfortranはgcc-oldとかgfortran-oldとかにリネームする。
f95はgfortranにln -s されてるんでリンクしなおす。