NetCDF「binary-netcdf-4.0.1_gfortran_gfortran_c++.tar」をインストールしました。しかし、使用した gfortran コンパイラについてはよくわかりません。使用したコンパイラを見つけるにはどうすればよいですか?
質問する
6735 次
2 に答える
2
実行gfortran -v
して、使用しているバージョンを確認します。
于 2010-02-11T10:26:23.037 に答える
2
pkg-configを使用する netcdf 4.1 以降では、これを実行できます。
$ nc-config --all
これにより、次のような結果が得られます。
This netCDF 4.1.1 has been built with the following features: --libs -> -L/opt/local/lib -lnetcdf --fc -> openmpif77 --fflags -> -O2 -m32 -I/opt/local/include --flibs -> -L/opt/local/lib -lnetcdff -lnetcdf --has-f77 -> yes --has-f90 -> yes
于 2011-06-05T18:38:25.043 に答える