mpich3のインストール(2)
前回のmpichはgfortranで導入したため,今回はintel compilerでの挑戦
export CC=icc export CXX=icpc export FC=ifort export F77=ifort export F90=ifort
これでconfigureすると以下のようなエラーがでる
configure: error: F90 and F90FLAGS are replaced by FC and FCFLAGS respectively in this configure, please unset F90/F90FLAGS and set FC/FCFLAGS instead and rerun configure again.
どうやらF90は指定してはよくないらしい
気を取り直して
#./configure –prefix=/opt/mpich3-intel 2>&1 | tee c.txt
#make 2>&1 | tee m.txt
#make install 2>&1 | tee mi.txt
で無事に完了した.
最後に
PATH=/opt/mpich3-intel/bin:$PATH ; export PATH
と書き記して終了
以下のサイトを参考にした.
http://www.hysk.sakura.ne.jp/meteorol/WRF_setup