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

WRF configuration errors: "moving nest option is not available..." & "NETCDF4 IO features are requested..."

C:
#include <stdio.h>

#ifdef USE_TIRPC
#include <tirpc/rpc/types.h>
#else
#include <rpc/types.h>
#endif

@William.Hatheway
This is the include section of rpc_test.c file in tools directory. It checks for the availability of types.h but it fails to include the available
/usr/include/tirpc/rpc/types.h header file. So its a try to compile run_test.c using added path -I/usr/include/tirpc with header search path.
For that i edited in Makefile which i mentioned earlier as
Bash:
@cd tools ; /bin/rm -f rpc_test.exe ; $(SCC) -DUSE_TIRPC -I/usr/include/tirpc rpc_test.c -ltirpc -o rpc_test.exe ; cd ..

So that it creates executable rpc_test.exe and finds the existing types.h file.
Finally it clears the warning in configure result.

As i am interested in simulating vortex following nest, i am confused with these warning.

What's the importance of landuse (type.h related to landuse read from forumn) updatation in vortex following nest.
 
Last edited:
C:
#include <stdio.h>

#ifdef USE_TIRPC
#include <tirpc/rpc/types.h>
#else
#include <rpc/types.h>
#endif

@William.Hatheway
This is the include section of rpc_test.c file in tools directory. It checks for the availability of types.h but it fails to include the available
/usr/include/tirpc/rpc/types.h header file. So its a try to compile run_test.c using added path -I/usr/include/tirpc with header search path.
For that i edited in Makefile which i mentioned earlier as
Bash:
@cd tools ; /bin/rm -f rpc_test.exe ; $(SCC) -DUSE_TIRPC -I/usr/include/tirpc rpc_test.c -ltirpc -o rpc_test.exe ; cd ..

So that it creates executable rpc_test.exe and finds the existing types.h file.
Finally it clears the warning in configure result.

As i am interested in simulating vortex following nest, i am confused with these warning.

What's the importance of landuse (type.h related to landuse read from forumn) updatation in vortex following nest.
though idont know the answer of your question , but really thank you a lot, it successfully configured after i copy your code in my Makefile.
 
Hi i am uploading edited Makefile @Ming Chen
I have edited line number 1114 as mentioned earlier. It is from WRF v 4.7.1 downloaded from Github recent release where you can find actual Makefile.


Thanks
 

Attachments

  • Makefile_edited.txt
    57.5 KB · Views: 2
C:
#include <stdio.h>

#ifdef USE_TIRPC
#include <tirpc/rpc/types.h>
#else
#include <rpc/types.h>
#endif

@William.Hatheway
This is the include section of rpc_test.c file in tools directory. It checks for the availability of types.h but it fails to include the available
/usr/include/tirpc/rpc/types.h header file. So its a try to compile run_test.c using added path -I/usr/include/tirpc with header search path.
For that i edited in Makefile which i mentioned earlier as
Bash:
@cd tools ; /bin/rm -f rpc_test.exe ; $(SCC) -DUSE_TIRPC -I/usr/include/tirpc rpc_test.c -ltirpc -o rpc_test.exe ; cd ..

So that it creates executable rpc_test.exe and finds the existing types.h file.
Finally it clears the warning in configure result.

As i am interested in simulating vortex following nest, i am confused with these warning.

What's the importance of landuse (type.h related to landuse read from forumn) updatation in vortex following nest.
thank you for the explanation, can you bold the section of the code that is modified?
 
@cd tools ; /bin/rm -f rpc_test.exe ; $(SCC) -DUSE_TIRPC -I/usr/include/tirpc rpc_test.c -ltirpc -o rpc_test.exe ; cd ..

I have added include search path along with existing path.
 
Top