When attempting to build WRF with the following:
./compile em_real -j 1 >& log.compile
I am encountering an error that seems to suggest the compilation process can't find my installed C compiler:
(excerpt from log)
If I check where my cc is installed (i.e., running "which cc") I get /usr/bin/cc, and I definitely have GCC installed:
I get the feeling there is some environment variable I need to set, any clues?
./compile em_real -j 1 >& log.compile
I am encountering an error that seems to suggest the compilation process can't find my installed C compiler:
(excerpt from log)
Code:
The following indicate the compilers selected to build the WRF system
Serial Fortran compiler (mostly for tool generation):
which SFC
/usr/bin/gfortran
Serial C compiler (mostly for tool generation):
which SCC
/usr/bin/gcc
Fortran compiler for the model source code:
which FC
Will use 'time' to report timing information
C compiler for the model source code:
which CC
make: *** [Makefile:68: configcheck] Error 1
If I check where my cc is installed (i.e., running "which cc") I get /usr/bin/cc, and I definitely have GCC installed:
Code:
cc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0
I get the feeling there is some environment variable I need to set, any clues?