Fortran 简明教程

Fortran - Environment Setup

Setting up Fortran in Windows

G95 是用于在 Windows 中设置 Fortran 的 GNU Fortran 多架构编译器。Windows 版本使用 MinGW 模拟 Windows 上的 Unix 环境。安装程序处理此问题并自动将 g95 添加到 Windows PATH 变量。

您可以从 here 获取 G95 的稳定版本

installer setup
mini installer setup

How to use G95

在安装过程中,如果你选择“推荐”选项, g95 将自动添加到你的 PATH 变量。这意味着你可以直接打开一个新的命令提示符窗口并输入“g95”来启动编译器。以下是一些基本命令,助你入门。

Sr.No

Command & Description

1

g95 –c hello.f90 将 hello.f90 编译到名为 hello.o 的目标文件

2

g95 hello.f90 编译 hello.f90 并将其链接到可执行文件 a.out

3

g95 -c h1.f90 h2.f90 h3.f90 编译多个源文件。如果进行顺利,将创建 h1.o、h2.o 和 h3.o 对象文件

4

g95 -o hello h1.f90 h2.f90 h3.f90 编译多个源文件,并将其链接到一起,形成名为“hello”的可执行文件

Command line options for G95

-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”结尾的名称指示。可指定多个源文件。也可指定对象文件,并将其链接起来形成可执行文件。