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

error in ./real.exe

RSB

New member
I just recently finished compiling WRF and WPS with the new and latest Intel compilers and I want to test if my compilation was successful. Everything went fine in WPS but in WRF, when trying to run ./real.exe, I get this error:
./real.exe: error while loading shared libraries: libhdf5hl_fortran.so.310: cannot open shared object file: No such file or directory
I am pretty sure that I installed all my libraries properly and I don't know how to resolve this.
 
The Unix operating system usually looks at the environment variable LD_LIBRARY_PATH to search the directories in the path for the library. Try issuing these commands:

echo $LD_LIBRARY_PATH

If the path for libhdf5hl_fortran.so.310 is not included, then (in ksh, for example) please type:

export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:'path to libhdf5hl_fortran.so.310"

Then try again.
 
Top