我在fortran程式中想寫一些讀取nc檔的程式
簡易程式碼如下
program
use netcdf
implicit none
integer :: year=2007,doy=349,hh=2
integer :: ios
integer :: ncid,state
character(len=128) :: filename = 'flist_storm'
state = nf90_open(trim(file_pwd),nf90_nowrite, ncid)
end program
以上只是開啟的程式 但compile一直沒過 猜測是use netcdf這行
要把netcdf這個 moduleu一起compile
在網路上找了下面這個指令
ifort -c -I/home/mydir/netcdf/include yyyyy.f90 -o yyyyy.x
雖然有跑出執行檔 但是執行時出現
-bash: ./podTec_GlobalMap.x: cannot execute binary file
有確認都是在64位元
想問問大家 fortran compilenetcdf的方法還有其他的嗎
或者我用法哪裡錯誤
謝謝