||
In the website of WRF, we can download the code proc_oml.f to couple the Ocean Mixed Layer (OML) with WRF. But the program doesn't provide the method to execute this program by gfortran, the command should execute as follow:
gfortran proc_oml.f -L/usr/lib -lnetcdf -I/usr/include -ffree-form -fconvert=big-endian -frecord-marker=4 -o proc_oml
We may met this problem: /tmp/ccd2QEN4.o: In function `MAIN__':
proc_oml.f:(.text+0x160): undefined reference to `iargc_'
Then, we should create a new progrom named gfortran_iargc.c:
extern int _gfortran_iargc(void);
int iargc_()
{
return _gfortran_iargc();
}
Submit the program by command:
1. gfortran -c gfortran_iargc.c
2. gfortran gfortran_iargc.o proc_oml.f -L/usr/lib -lnetcdf -I/usr/include -ffree-form -fconvert=big-endian -frecord-marker=4 -o proc_oml
Maybe meet the problem as following:
/tmp/ccx9pN2A.o: In function `MAIN__':
proc_oml.f:(.text+0x647): undefined reference to `nf_open_'
proc_oml.f:(.text+0x6a1): undefined reference to `nf_inq_'
proc_oml.f:(.text+0xc0d): undefined reference to `nf_inq_dim_'
proc_oml.f:(.text+0x1182): undefined reference to `nf_inq_var_'
proc_oml.f:(.text+0x11e1): undefined reference to `nf_def_var_'
proc_oml.f:(.text+0x12b7): undefined reference to `nf_inq_attname_'
proc_oml.f:(.text+0x12f6): undefined reference to `nf_copy_att_'
proc_oml.f:(.text+0x13e8): undefined reference to `nf_enddef_'
proc_oml.f:(.text+0x146c): undefined reference to `nf_inq_var_'
proc_oml.f:(.text+0x1862): undefined reference to `nf_get_var_text_'
proc_oml.f:(.text+0x1ad9): undefined reference to `nf_get_var_int_'
proc_oml.f:(.text+0x1e04): undefined reference to `nf_get_var_real_'
proc_oml.f:(.text+0x2283): undefined reference to `nf_get_var_real_'
proc_oml.f:(.text+0x2b00): undefined reference to `nf_get_var_real_'
proc_oml.f:(.text+0x3283): undefined reference to `nf_get_var_double_'
proc_oml.f:(.text+0x34cb): undefined reference to `nf_get_var_double_'
collect2: ld returned 1 exit status
Add a short command -lnetcdff, just as this:
gfortran gfortran_iargc.o proc_oml.f -L/usr/lib -lnetcdf -lnetcdff -I/usr/include -ffree-form -fconvert=big-endian -frecord-marker=4 -o proc_oml
OR:
gfortran gfortran_iargc.o oml.f -L/usr/lib -lnetcdf -lnetcdff -I/usr/include -ffree-form -o oml
So that, we can get the proc_oml with no error.
Archiver|手机版|科学网 ( 京ICP备07017567号-12 )
GMT+8, 2024-10-12 11:29
Powered by ScienceNet.cn
Copyright © 2007- 中国科学报社