安装NETCDF-FORTRAN

操作步骤

  1. 获取NETCDF-FORTRAN源码包。

    下载地址:https://github.com/Unidata/netcdf-fortran/archive/refs/tags/v4.5.2.tar.gz

  2. 将源码包上传至服务器NETCDF-FORTRAN源码包安装目录,如“/path/to/download/netcdf-fortran”。
  3. 执行以下命令进入源码包安装目录。

    cd /path/to/download/netcdf-fortran

  4. 执行以下命令解压软件包。

    tar -zxvf netcdf-fortran-4.5.2.tar.gz

  5. 执行以下命令进入configure脚本所在目录。

    cd netcdf-fortran-4.5.2

  6. 执行以下命令进行NETCDF-FORTRAN源码包安装。

    ./configure --prefix=/path/to/install/NETCDF --build=aarch64-unknown-linux-gnu --enable-shared --with-pic --disable-doxygen --enable-largefile --enable-static CC=mpicc CXX=mpicxx FC=mpifort F77=mpifort CPPFLAGS=" -fPIC  -I/path/to/install/HDF5/include -I/path/to/install/NETCDF/include" LDFLAGS="-L/path/to/install/HDF5/lib -L/path/to/install/NETCDF/lib -Wl,-rpath=/path/to/install/HDF5/lib -Wl,-rpath=/path/to/install/NETCDF/lib" CFLAGS=" -fPIC -L/path/to/install/HDF5/lib -L/path/to/install/NETCDF/lib -I/path/to/install/HDF5/include -I/path/to/install/NETCDF/include" CXXFLAGS=" -fPIC -L/path/to/install/HDF5/lib -L/path/to/install/NETCDF/lib -I/path/to/install/HDF5/include -I/path/to/install/NETCDF/include" FCFLAGS=" -fPIC -L/path/to/install/HDF5/lib -L/path/to/install/NETCDF/lib -I/path/to/install/HDF5/include -I/path/to/install/NETCDF/include"

  7. 执行以下命令修改当前目录下libtool文件。

    vi libtool

    第11787行 wl="" 修改为 wl="-Wl,"

    第11939行 wl="" 修改为 wl="-Wl,"

    各版本NETCDF-FORTRAN所在行可能不同,可以查找wl=””进行修改。

  8. 执行以下命令编译安装

    make
    make install