【发布时间】:2011-08-29 02:26:35
【问题描述】:
我正在尝试使用 pgf90 预处理 Fortran 模块 (pmu.F90)。模块如下:
module pmu
module variables
contains
include 'file.F90'
end module
file.F90 是一个包含以下行的子程序:
#ifdef PART
startm1 = xstart - 1
startm2 = xstart - 2
endp1 = xend + 1
endp2 = xend + 2
#else
startm1 = xstart - 1
startm2 = xstart - 1
endp1 = xend + 1
endp2 = xend + 1
#endif
如果我编译:
pgf90 -DPART -Mfree -Mbounds -Msave -Mdclchk -r8 -Mpreprocess -I/data/users/mrosso/fftw3/include -c pmu.F90
我明白了
PGF90-S-0021-Label field of continuation line is not blank.
【问题讨论】:
标签: preprocessor fortran