Installing NetCDF
Procedure
- Use PuTTY to log in to the server as the root user.
- Run the following command to decompress the NetCDF installation package:
tar -xvf netcdf-4.4.1.1.tar.gz
- Run the following command to switch to the directory containing the decompressed files:
cd netcdf-4.4.1.1
- Run the following command perform configuration:
./configure --prefix=/path/to/NETCDF --build=aarch64-unknown-linux-gnu --enable-shared --enable-netcdf-4 --enable-dap --with-pic --disable-doxygen --enable-static --enable-largefile CPPFLAGS="-I/path/to/HDF5/include " LDFLAGS="-L/path/to/HDF5/lib -Wl,-rpath=/path/to/HDF5/lib " CFLAGS="-L/path/to/HDF5/lib -I/path/to/HDF5/include "
- Run the following commands to perform compilation and installation:
make -j 20 make install
Parent topic: Configuring the Compilation Environment