when i make a case,the error is:
PGF90-S-0034-Syntax error at or near : (analytical.f90: 323)
0 inform, 0 warnings, 1 severes, 0 fatal for ana_grid_tile
PGF90-S-0034-Syntax error at or near : (analytical.f90: 1101)
PGF90-S-0034-Syntax error at or near : (analytical.f90: 1114)
0 inform, 0 warnings, 2 severes, 0 fatal for ana_vmix_tile
make: *** [/Build/analytical.o] Error 2
how to do?
Thank you!
make error
- m.hadfield
- Posts: 521
- Joined: Tue Jul 01, 2003 4:12 am
- Location: NIWA
Re: make error
You might want to take a look at lines 323, 1101 and 1114 in analytical.f90. Your compiler thinks there are syntax errors at or near them. Perhaps it's right.
Re: make error
Make sure you are obeying the Fortran 90 free format rules for line continuation if you happen to have long statements. Here's one description. Note that Hernan is obeying both the old and new Fortran styles simultaneously, but since you are compiling a file with a .f90 extension, most compilers will assume free format (the new style).