WRF | make -- time No such file or directory
Issue
After moving to new cluster, a error appear when I reinstalled WRF. It is
make[3]: time: No such file or directory
Or,
make[3]: time: No such file or directory make[3]: [makefile:42: module_io_int_idx.o] Error 127 (ignored)
On WRFv450, v440, v433, v430
Workaround
'time' is a simple linux command that is typically included with your operating system. I believe, ultimately, the issue is that you're using a very old version of GNU to compile a newer version of WRF. GNU is free software, so can you try to install the latest version of GNU to see if that makes any difference in your compile? If you aren't sure how to do this, seek the help of a systems administrator (IT) at your institution. Once you install the new GNU version, you'll need to rebuild NetCDF and your MPI installation with the updated GNU, as well.
If you do that, and still run into the above error regarding the 'time' command, you can try a couple things: 1) Ask a systems admin for assistance in getting this command installed on your system. 'time' is a very simple linux command and typically comes readily available with the OS. 2) You can try modifying the configure.wrf file. After issuing 1
2./clean -a
./configure1
FC = time $(DM_FC)
1
FC = $(DM_FC)
1
./compile -j 8 em_real 2>&1 | tee compile.log
or
1 |
|