使用2个编译器编译fortran程序

时间:2012-09-14 07:27:26

标签: compiler-construction fortran

我正在尝试运行一个在fortran编写的程序,其中子程序已经用gfortran编译,主程序已经用ifort编译:

这里是源代码:

子程序:

subroutine testsub
    implicit none
    integer icarte
    read(10,*) icarte
    write(*,*)icarte 
    return 
    end`

主要代码:

program test
    implicit none
    integer i
    open (unit=10, file="file_test")
    do i=1,6
       read(10,*)
    enddo
    call testsub
    close(10)
    end

,读取的文件为:

1
2
3
4
5
6
7 5 6 8
23

然后我就这样编译:

gfortran -c testsub.f

ar rcs libtest.a testsub.o

ifort -o testexe test.f -L./ -ltest -L/.../gcc/4.7.1/lib64 -lgfortran

我获得了:

At line 4 of file testsub.f (unit = 10, file = 'fort.10')
Fortran runtime error: End of file

看起来逻辑单元没有给出子程序。 我应该在某处添加一个编译选项...但我不知道在哪里和哪里...... 并回答问题"如果我使用相同的编译器编译这两个文件会发生什么?" :程序运行完美:)

所以如果有人有任何想法......

1 个答案:

答案 0 :(得分:5)

这不起作用。当您在主程序中打开文件时,在ifort库的内部某处将打开文件并存储与其关联的某些状态。 GFortran对ifort运行时库的内部状态一无所知,并尝试在自己的运行时库状态中查找单元,这显然会失败。