我有一个FORTRAN代码,需要以下编译命令
gfortran -c interp.f -ffixed-format -ffix-line-length-none
我使用python
中的f2py模块编译了相同的内容from numpy import f2py
f2py.compile(open('interp.f').read(),modulename='interp',extra_flags='-ffixed-format -ffix-line-length-none',verbose=0)
无法编译模块。它给出了一个错误,指出无效的文件格式''at'ffized-format'
请帮忙
答案 0 :(得分:1)
-ffixed-format
和-ffix-line-length-none
似乎都不是有效的gfortran选项。请考虑改为使用-ffixed-form
和-ffixed-line-length-none
。