ubuntu編譯fortran代碼的方法:
1.將編譯器intel fortran安裝好。
2.寫一個fortran測試程序,例如:“hello.f90”,代碼如下。
program main
write(*,*) "hello"
stop
end
3.使用以下命令進行編譯。
ifort -c hello hello.f90
注:編譯后生成可執行文件hello 如果直接用ifort hello.f90,則默認生成文件是a.out
4.執行可執行文件,在當前目錄下輸入以下命令查看結果。
./hello
#或者
./a.out