bruceyoung01
Member
When I compiled wrf3.5 using gfortran 7.3.0, I got the following error
module_wrf_error.f90:131:26:
str_with_rc = TRIM(str
1
Error: Syntax error in argument list at (1)
0.01user 0.26system 0:00.30elapsed 91%CPU (0avgtext+0avgdata 7928maxresident)k
0inputs+16outputs (0major+14187minor)pagefaults 0swaps
make[2]: [module_wrf_error.o] Error 1 (ignored)
I searched the module_wrf_error.F in the frame directory and found the statement
str_with_rc = TRIM(str // rc_str)
However, after FORTRAN preprocessor processing, this statement became
str_with_rc = TRIM(str
" // rc_str)" was truncated. Do you have any ideas on this error? Thank you. I also attached my configure.wrf and compilation log file.
module_wrf_error.f90:131:26:
str_with_rc = TRIM(str
1
Error: Syntax error in argument list at (1)
0.01user 0.26system 0:00.30elapsed 91%CPU (0avgtext+0avgdata 7928maxresident)k
0inputs+16outputs (0major+14187minor)pagefaults 0swaps
make[2]: [module_wrf_error.o] Error 1 (ignored)
I searched the module_wrf_error.F in the frame directory and found the statement
str_with_rc = TRIM(str // rc_str)
However, after FORTRAN preprocessor processing, this statement became
str_with_rc = TRIM(str
" // rc_str)" was truncated. Do you have any ideas on this error? Thank you. I also attached my configure.wrf and compilation log file.