netcdf ビルドログ @ hamachi-epa with pgi compiler

  • 作業日 2015/09/25
  • 作業者 高橋芳幸

準備

必要なファイルの取得

必要なファイル

  • netcdf
http://www.unidata.ucar.edu/downloads/netcdf/ftp/netcdf-3.6.3.tar.gz

ビルド

netcdf

ビルドは ~/tmp/netcdf で行う.

展開

% gzip -cd netcdf-3.6.3.tar.gz | tar -xvf -
% cd netcdf-3.6.3

環境変数の設定, configure, make

% setenv CC gcc
% setenv CFLAGS    '-O2'
% setenv CXX
% setenv CPPFLAGS  '-DNDEBUG -DpgiFortran'
% setenv CXXFLAGS
% setenv FC pgf90
% setenv F77 pgf90
% setenv F90 pgf90
% setenv FFLAGS    '-O2 -w -V'

% ./configure --prefix=/home/yot/local/netcdf-3.6.3-pgf-gnu |& tee zzz-config.log

% make | & tee zzz-make.log
% make check | & tee zzz-make_check.log
% make install | & tee zzz-make_install.log