Question about mkphbs.F90
Posted: Sun Oct 06, 2013 2:42 pm
Looks like this code is incorrect copypaste:
As a result, I have to compile ABINIT with both netcdf and etsf-io even if I don't need etsf-io support. Most likely correct code should be
Code: Select all
#ifdef HAVE_TRIO_ETSF_IO
use netcdf
! use etsf_io
#endif
As a result, I have to compile ABINIT with both netcdf and etsf-io even if I don't need etsf-io support. Most likely correct code should be
Code: Select all
#ifdef HAVE_TRIO_NETCDF
use netcdf
#endif