Error while porting using a generic machine

I am following this tutorial and trying to port cesm 1.0 to my local machine (x86_64 linux box). I set up all the dependencies (netcdf 4.2.1.1, hdf5 1.8.10, mpich 3.0.4) and compiled them using mpicc and mpif90 of mpich. I have gfortran, gcc 4.8.The module pio doesn't compile. The error that shows is
Code:
</div><div class="de1">Error: 'filet' at (1) is not a member of the 'io_desc2_t' structure</div><div class="de2">iompi_mod.F90.in:333.132:</div><div class="de2">
 The full output of build log is here. Any help is highly appreciated.
 

mai

Member
gfortran has a default maximum line length of 132 characters. You can get around this limitation by including the -ffree-line-length-0 compile option.
 

mai

Member
gfortran has a default maximum line length of 132 characters. You can get around this limitation by including the -ffree-line-length-0 compile option.
 
Back
Top