0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

2019-10-15 NetCDF > configure オプション 「--disable-netcdf-4」> NetCDF-4 APIの有無

Last updated at Posted at 2019-10-15
動作環境
Xeon E5-2620 v4 (8コア) x 2
32GB RAM
GeForce GT 730 1GB GDDR5
CentOS Linux release 7.7.1908 (Core)

概要

NetCDFのインストール時のconfigureにてNetCDF-4 API対応の有無について調べた。
ビルドしようとしているソフトがNetCDF-4 APIを使う設定になっており、NetCDFのインストールを間違ったことで、そのソフトがビルドできなかったことがきっかけとなり調べた。

w/o NetCDF-4 API

./configure --prefix=/usr/local/netcdf-4.4.1.1/gcc485 --disable-netcdf-4 --disable-dap
...

# Features
--------
NetCDF-2 API:           yes
HDF4 Support:           no
NetCDF-4 API:           no
NC-4 Parallel Support:  no
PNetCDF Support:        no
DAP Support:            no
Diskless Support:       yes
MMap Support:           no
JNA Support:            no

NetCDF-4 APIがnoとなっている。

w/ NetCDF-4 API

./configure --prefix=/usr/local/netcdf-4.4.1.1/gcc485 --disable-dap


# Features
--------
NetCDF-2 API:           yes
HDF4 Support:           no
NetCDF-4 API:           yes
NC-4 Parallel Support:  no
PNetCDF Support:        no
DAP Support:            no
Diskless Support:       yes
MMap Support:           no
JNA Support:            no

NetCDF-4 APIがyesとなっている。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?