在Linux下搭建Fortran开发环境
Fortran是最早的计算机高级语言之一,至今已经有40年左右的历史了,其中经历了Fortran 66、Fortran 77、Fortran 90和Fortran 95。Fortran 200x目前还在草案过程中。在科学计算领域,Fortran具有十分强大的生命力,例如在大型科学计算中还有HPF(High Performance Fortran)等。
主流的Fortran 90/95编译器有PGI Fortran、HP Fortran Compiler(由Fortran PowerStation进化过来的)和Intel Fortran Compiler等。
本文主要介绍其中的两款软件在Linux下的安装,即Intel Fortran Compiler 8.0和F Compiler。选取它们的原因是,前者是一个Intel提供的免费的Non-Commercial版本;后者则是Fortran 90/95的一个子集的实现,学习起来非常容易。
Intel Fortran Compiler 8.0
Intel Fortran Compiler这个编译器性能极佳。它的发行版有Windows和Linux两种。这两种都分别提供Non-Commercial版免费下载,但不提供技术支持。下面介绍整个的安装过程。
1.下载Non-commercial版Fortran编译器,有两种方式。一是登录http://www.intel.com/software/products/global/eval.htm,选择 Intel(r) Fortran Compiler for Linux*下的第二项Non-Commercial Unsupported Version,点击进入。二是直接登陆http://www.intel.com/software/products/compilers/flin/noncom.htm。整个下载过程需要好几步。首先单击“Continue”按钮进入下一页;第二页有个调查表,填好之后进入下一页;第三页是软件协议页面,看过之后单击“Accept”按钮进入下一页;第四页是注册页面,其中E-mail栏一定要填好,填完后单击“Submit”按钮进入下一页;这是最后一页,说明已经注册成功,Intel会给用户发一封电子邮件,其中包含一个协议附件。
剩下的工作是收取邮件,然后根据邮件中提供的地址下载软件。这里下载的软件是l_fc_p_8.0.034.tar.gz,大约84MB。另外用户需要把邮件中的附件另存在刚才下载的软件的同一目录下,这里的文件名是l_for_70909049.lic。每个人的文件名可能不同,它是一个协议文件。
接下来以root用户进行以下的安装工作,假设前面的两个文件存放在/usr/src/intel目录下,这也是笔者的工作目录。
2.解压安装文件,命令如下:
#tar xzvf l_fc_p_8.0.034.tar.gz
3.安装并指定协议。编译器是安装在/opt/intel_fc_80目录下,协议则在该目录下的licenses文件夹中。最后还要指定licenses的位置。具体命令如下:
#mkdir -p /opt/intel_fc_80/licenses
#cp /usr/src/intel/*.lic /opt/intel_fc_80/licenses
# export INTEL_LICENSE_FILE=opt/intel_fc_80/licenses
4.安装程序,命令如下:
#cd /usr/src/intel/l_fc_p_8.0.034
#./install.sh
如果正确就会看到下面的提示:
The following Intel(R) products and related products are installed.
Intel(R) Fortran Compiler for 32-bit applications, Version 8.0
Linux Application Debugger for 32-bit applications, Version 7.3.1
Which of the following would you like to install?
1. Intel(R) Fortran Compiler for 32-bit applications, Version 8.0
2. Linux Application Debugger for 32-bit applications, Version 7.3.1
x.
Exit
先选择“1”,安装Intel Fortran Compiler,默认安装即可,默认目录就是/opt/intel_fc_80。
安装编译器完成之后,继续可以安装Linux Application Debugger for 32-bit applications, Version 7.3.1,选择“2”即可,它默认安装在/opt/intel_idb_73下。最后选择“x”退出安装程序。
主流的Fortran 90/95编译器有PGI Fortran、HP Fortran Compiler(由Fortran PowerStation进化过来的)和Intel Fortran Compiler等。
本文主要介绍其中的两款软件在Linux下的安装,即Intel Fortran Compiler 8.0和F Compiler。选取它们的原因是,前者是一个Intel提供的免费的Non-Commercial版本;后者则是Fortran 90/95的一个子集的实现,学习起来非常容易。
Intel Fortran Compiler 8.0
Intel Fortran Compiler这个编译器性能极佳。它的发行版有Windows和Linux两种。这两种都分别提供Non-Commercial版免费下载,但不提供技术支持。下面介绍整个的安装过程。
1.下载Non-commercial版Fortran编译器,有两种方式。一是登录http://www.intel.com/software/products/global/eval.htm,选择 Intel(r) Fortran Compiler for Linux*下的第二项Non-Commercial Unsupported Version,点击进入。二是直接登陆http://www.intel.com/software/products/compilers/flin/noncom.htm。整个下载过程需要好几步。首先单击“Continue”按钮进入下一页;第二页有个调查表,填好之后进入下一页;第三页是软件协议页面,看过之后单击“Accept”按钮进入下一页;第四页是注册页面,其中E-mail栏一定要填好,填完后单击“Submit”按钮进入下一页;这是最后一页,说明已经注册成功,Intel会给用户发一封电子邮件,其中包含一个协议附件。
剩下的工作是收取邮件,然后根据邮件中提供的地址下载软件。这里下载的软件是l_fc_p_8.0.034.tar.gz,大约84MB。另外用户需要把邮件中的附件另存在刚才下载的软件的同一目录下,这里的文件名是l_for_70909049.lic。每个人的文件名可能不同,它是一个协议文件。
接下来以root用户进行以下的安装工作,假设前面的两个文件存放在/usr/src/intel目录下,这也是笔者的工作目录。
2.解压安装文件,命令如下:
#tar xzvf l_fc_p_8.0.034.tar.gz
3.安装并指定协议。编译器是安装在/opt/intel_fc_80目录下,协议则在该目录下的licenses文件夹中。最后还要指定licenses的位置。具体命令如下:
#mkdir -p /opt/intel_fc_80/licenses
#cp /usr/src/intel/*.lic /opt/intel_fc_80/licenses
# export INTEL_LICENSE_FILE=opt/intel_fc_80/licenses
4.安装程序,命令如下:
#cd /usr/src/intel/l_fc_p_8.0.034
#./install.sh
如果正确就会看到下面的提示:
The following Intel(R) products and related products are installed.
Intel(R) Fortran Compiler for 32-bit applications, Version 8.0
Linux Application Debugger for 32-bit applications, Version 7.3.1
Which of the following would you like to install?
1. Intel(R) Fortran Compiler for 32-bit applications, Version 8.0
2. Linux Application Debugger for 32-bit applications, Version 7.3.1
x.
Exit
先选择“1”,安装Intel Fortran Compiler,默认安装即可,默认目录就是/opt/intel_fc_80。
安装编译器完成之后,继续可以安装Linux Application Debugger for 32-bit applications, Version 7.3.1,选择“2”即可,它默认安装在/opt/intel_idb_73下。最后选择“x”退出安装程序。
顶(0)
踩(0)
- 最新评论