如何使用 G95
在安装过程中,g95如果您选择“推荐”选项,它会自动添加到您的 PATH 变量中。这意味着您可以简单地打开一个新的命令提示符窗口并键入“g95”来调出编译器。在下面找到一些基本命令以帮助您入门。
序号 |
命令和说明 |
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”的可执行文件
|
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”。可以指定多个源文件。也可以指定目标文件并将其链接以形成可执行文件。