gfortran开启preprocessor macros

对于下面的程序,直接用gfortran test.f90,会有warning,宏也不能生效:
test.f90

program main

    implicit none
#if 0
    write(*,*) "**********"
#endif
end program main

此时编译的时候添加参数-cpp即可:

gfortran -cpp test.f90

参考:https://gcc.gnu.org/onlinedocs/gfortran/Preprocessing-Options.html

上一篇:V5.1版本如何自定义皮肤,只需3步即可*实现


下一篇:.net core 字符串相似度比较算法:Jaro–Winkler similarity