Scheduled Downtime
On Friday 21 April 2023 @ 5pm MT, this website will be down for maintenance and expected to return online the morning of 24 April 2023 at the latest

./real.exe: /lib64/libgfortran.so.3: version `GFORTRAN_1.6' not found (required by ./real.exe)

Dear all,
I was trying to run ./real.exe but I have this issue to be resolved "./real.exe: /lib64/libgfortran.so.3: version `GFORTRAN_1.6' not found (required by ./real.exe)"

kindly help me out

with regards
Julius A. Akinyoola
 
Usually this is due to forgetting the exports for the libraries to make the WRF run.

Code:
export NETCDF=$DIR/netcdf
export LD_LIBRARY_PATH=$NETCDF/lib:$DIR/grib2/lib
export PATH=$NETCDF/bin:$DIR/mpich/bin:${PATH}
export JASPERLIB=$DIR/grib2/lib
export JASPERINC=$DIR/grib2/include
 
Top