制作:ifort:找不到命令?

make: ifort: Command not found?

我正在尝试安装 sann 包。根据创建者的说明,我进入 src 文件夹并执行了 make 命令,但最终出现以下错误,

dinesh@dinesh7k:~/Documents/tools/MIonSite-master/standardalone_MIonSite/sann-master/src$ make
ifort -c -O3 -openmp -o params.o params.f90
make: ifort: Command not found
Makefile:32: recipe for target 'params.o' failed
make: *** [params.o] Error 127

我已经在我的电脑上安装了 gfortran(ubuntu 18.04 LTS 64 位版本)

dinesh@dinesh7k:~/Documents/tools/MIonSite-master/standardalone_MIonSite/sann-master/src$ dpkg -L gfortran
/.
/usr
/usr/bin
/usr/share
/usr/share/doc
/usr/share/man
/usr/share/man/man1
/usr/bin/gfortran
/usr/bin/x86_64-linux-gnu-gfortran
/usr/share/doc/gfortran
/usr/share/man/man1/gfortran.1.gz

但是,我无法解决这个问题,请帮我解决这个问题, 提前谢谢你。

基于 source code 看起来有两个 Makefile:

  • Makefile.intel 包含假定 ifort
  • 的 make 命令
  • Makefile.gfortran 包含假定 gfortran.
  • 的命令

主 Makefile 只是 link 到 Makefile.intel 的符号。通过将 link 更改为指向 Makefile.gfortran,您应该能够使用 gfortran 编译器。

所以运行:

rm Makefile
ln -s Makefile.gfortran Makefile

...并按照其余说明进行操作:

make
make install