Installing NetCDF-Fortran
Procedure
- Use PuTTY to log in to the server as the root user.
- Run the following command to decompress the NetCDF-Fortran installation package:
tar -xvf netcdf-fortran-4.4.1.tar.gz
- Run the following command to switch to the directory generated after the package is decompressed:
cd netcdf-fortran-4.4.1
- Run the following command to perform configuration:
export MPICC=`which mpicc` export MPICXX=`which mpicxx` export MPIFC=`which mpifort` export CPPFLAGS="-I/path/to/HDF5/include -I/path/to/NETCDF/include" export LDFLAGS="-L/path/to/HDF5/lib -L/path/to/NETCDF/lib -Wl,-rpath=/path/to/HDF5/lib -Wl,-rpath=/path/to/NETCDF/lib " export CFLAGS="-L/path/to/HDF5/lib -L/path/to/NETCDF/lib -I/path/to/HDF5/include -I/path/to/NETCDF/include" export CXXFLAGS="-L/path/to/HDF5/lib -L/path/to/NETCDF/lib -I/path/to/HDF5/include -I/path/to/NETCDF/include" export FCFLAGS="-L/path/to/HDF5/ib -L/path/to/NETCDF/lib -I/path/to/HDF5/include -I/path/to/NETCDF/include" ./configure --prefix=/path/to/NETCDF --build=aarch64-unknown-linux-gnu --enable-shared --with-pic --disable-doxygen --enable-largefile --enable-static CC=$MPICC CXX=$MPICXX FC=$MPIFC F77=$MPIFC
- Run the following commands to perform compilation and installation:
make -j 16 make install
- Run the following commands to load environment variables:
export PATH=/path/to/NETCDF/bin:$PATH export LD_LIBRARY_PATH=/path/to/NETCDF/lib:$LD_LIBRARY_PATH
Parent topic: Configuring the Compilation Environment