鍍金池/ 教程/ Java/ Fortran語言環(huán)境設(shè)置
Fortran還原功能
Fortran關(guān)系運算符
Fortran運算符優(yōu)先級
Fortran基本語法
Fortran文件輸入輸出
Fortran嵌套select case結(jié)構(gòu)
Fortran變量
Fortran Cycle語句
Fortran語言環(huán)境設(shè)置
Fortran數(shù)據(jù)類型
Fortran數(shù)組
Fortran字符
Fortran if...else if...else 語句
Fortran調(diào)試程序
Fortran編程風格
Fortran if...then語句結(jié)構(gòu)
Fortran嵌套循環(huán)
Fortran常量
Fortran循環(huán)
Fortran導出數(shù)據(jù)類型
Fortran字符串
Fortran操作函數(shù)
Fortran do...while循環(huán)結(jié)構(gòu)
Fortran內(nèi)部函數(shù)
Fortran數(shù)字精度
Fortran選擇決策
Fortran重塑函數(shù)
Fortran運算符
Fortran構(gòu)造函數(shù)
Fortran模塊
Fortran位置函數(shù)
Fortran數(shù)字
Fortran指針
Fortran算術(shù)運算符
Fortran exit語句
Fortran動態(tài)數(shù)組
Fortran嵌套if結(jié)構(gòu)
Fortran select case結(jié)構(gòu)
Fortran向量和矩陣乘法函數(shù)
Fortran邏輯運算符
Fortran if...then...else 結(jié)構(gòu)
Fortran教程
Fortran過程
Fortran Stop語句
Fortran基本輸入輸出
Fortran do循環(huán)結(jié)構(gòu)
Fortran查詢函數(shù)

Fortran語言環(huán)境設(shè)置

在Windows上設(shè)置Fortran語言環(huán)境

G95是GNU Fortran語言多架構(gòu)的編譯器,用于建立Fortran語言在Windows中。 Windows版本的模擬使用MingW平臺下的Windows UNIX環(huán)境。安裝完成這個功能,并自動添加G95到Windows PATH變量。

可以從G95的穩(wěn)定版這里得到:

installer setupmini installer setup

如何使用G95

在安裝過程中,G95會自動添加到PATH變量中,如果選擇“RECOMMENDED”選項。這意味著,可以簡單地打開一個新的命令提示符窗口,輸入“G95”,彈出的編譯器。找到一些基本的命令,我們現(xiàn)在就開始吧。

命令 描述
g95 –c hello.f90 編譯hello.f 90到目標文件命名為hello.o
g95 hello.f90 編譯hello.f 90并鏈接到生成可執(zhí)行的a.out 文件
g95 -c h1.f90 h2.f90 h3.f90 編譯多個源文件。如果一切順利的話,目標文件h1.o,h2.o和h3.o創(chuàng)建
g95 -o hello h1.f90 h2.f90 h3.f90 編譯多個源文件并將它們鏈接在一起,命名為'hello'的可執(zhí)行文件

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" and ".F03".“。對于”結(jié)尾表示多個源文件可以被指定。目標文件可以被指定為良好,將被鏈接以形成一個可執(zhí)行文件。