笔者操作基本配置:
Xcode:Version 11.0 (11A420a)
Intel Fortran Compiler:ifort 2019.0.5.281 (2019 Update 5)
首先常规下载Xcode安装好,但是默认没有安装Command Line Tools,可通过终端命令安装:
xcode-select --install
再下载Intel Fortran Complier 安装好。
可以用两种方法配置Complier,其中一种是(a).命令行配置;(b).Xcode配置。我只用过命令行配置这种,这里只讲这种方法。
打开终端,键入:
source /<install-dir>/bin/compilervars.sh <arg>
其中,<install-dir>是你的安装路径,一般默认是:/opt/intel/ 请先自己确认好。 <arg> 是下列情况中的一个,是自己情况而定:
source /<install-dir>/bin/compilervars.sh <intel64>
这样你的Intel Fortran Compiler就算是安装、配置好了。接下来让我们来开始第一个Fortran程序。
DYLD_LIBRARY_PATH
Value中填入lib所在的文件夹地址,根据自己的具体情况来填,比如我的是:
/opt/intel/compilers_and_libraries_2019.5.281/mac/compiler/lib:/opt/intel/compilers_and_libraries_2019.5.281/mac/mkl/lib
最后就基本完成了,可以键入你的第一个hello_world.f90试试看。
13.如果编译失败不要慌,去File > Project Settings ,Build stystem下改成Legacy Build Stystem再编译就可以了。
*****如果看我的教程有问题可以自己去看官方提供的指导:
Intel® Fortran Compiler 19.0 Developer Guide and Referencesoftware.intel.com