Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

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.
 
Top