hdf5 ビルドログ @ vizfront

  • 作業日 2018/08/12
  • 作業者 高橋芳幸

準備

必要なファイルの取得

必要なファイル

  • HDF5
$ wget https://support.hdfgroup.org/ftp/HDF5/current18/src/hdf5-1.8.20.tar

ビルド

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

展開

$ tar xvf hdf5-1.8.20.tar

環境変数の設定, configure, make

$ export CC=gcc
$ export CFLAGS=
$ export CPP=cpp

$ cd hdf5-1.8.20

$ ./configure \
--prefix=/home/G15023/yot/local/hdf5-1.8.20-gnu \
--with-zlib=/home/G15023/yot/local/zlib-1.2.11-gnu/include,/home/G15023/yot/local/zlib-1.2.11-gnu/lib

$ make |& tee make.log
$ make check
$ make install |& tee install.log
$ make check-install