📅  最后修改于: 2020-11-04 06:11:53             🧑  作者: Mango
G95是GNU Fortran多体系结构编译器,用于在Windows中设置Fortran。 Windows版本使用Windows下的MingW模拟Unix环境。安装程序会处理此问题,并自动将g95添加到Windows PATH变量。
您可以从这里获得G95的稳定版本
在安装过程中,如果选择“推荐”选项,则会将g95自动添加到PATH变量中。这意味着您可以简单地打开一个新的命令提示符窗口,然后键入“ g95”以启动编译器。在下面找到一些基本命令以开始使用。
Sr.No | Command & Description |
---|---|
1 |
g95 –c hello.f90 Compiles hello.f90 to an object file named hello.o |
2 |
g95 hello.f90 Compiles hello.f90 and links it to produce an executable a.out |
3 |
g95 -c h1.f90 h2.f90 h3.f90 Compiles multiple source files. If all goes well, object files h1.o, h2.o and h3.o are created |
4 |
g95 -o hello h1.f90 h2.f90 h3.f90 Compiles multiple source files and links them together to an executable file named ‘hello’ |
-c Compile only, do not run the linker.
-o Specify the name of the output file, either an object file or the executable.
可以一次指定多个源文件和目标文件。 Fortran文件以“ .f”,“。F”,“。for”,“。FOR”,“。f90”,“。F90”,“。f95”,“。F95”,“。”结尾的名称表示。 f03”和“ .F03”。可以指定多个源文件。还可以指定目标文件,并将其链接以形成可执行文件。