Hello folks,
I got a warning when I ./configure the WRF-Chem 4.5:
So, I tested in the tools directory with
Finally, I made the suggestion of the warning:
I don't know if the last one is correct to compile em_real. Do you have any idea?
I got a warning when I ./configure the WRF-Chem 4.5:
************************** W A R N I N G ************************************
The moving nest option is not available due to missing rpc/types.h file.
Copy landread.c.dist to landread.c in share directory to bypass compile error.
*****************************************************************************
*****************************************************************************
This build of WRF will use classic (non-compressed) NETCDF format
*****************************************************************************
So, I tested in the tools directory with
make rpc_test > rpc_test.log 2>&1
. The script didn't find the types.h (located in /usr/include/tirpc/rpc). So, I linked with ln -sf /usr/include/tirpc .
inside the WRF/tools directory. So, the script rcp_test.c found the types.h, but when it wanted to use the netconfig.h, it couldn't find. The netconfig.h is located in /usr/include/tirpc
, but the types.h doesn't consider it.Finally, I made the suggestion of the warning:
cp share/landread.c.dist share/landread.c
I don't know if the last one is correct to compile em_real. Do you have any idea?