主题:为什么ifort编译通过,gfortran提示数组构造语法错误?
1、一个Fortran程序,ifort编译通过,但gfortran提示
temp5=(/1:5/)
“Syntax error in array constructor at (1)"
为什么,难道gfortran编译,不支持数组构造器?
2、另外我的程序需要用几十G的内存,在ifort编译时需添加 -heap-arrays 选项才能运行,否则提示 “Stack overflow“,请问gfortran是否有类似功能的编译参数?