我在这里有一个关于如何为 Fortran 设置 Eclipse 的简短问题。
我已经下载了“Photran”(Eclipse 的 Fortran 工具)并安装了它。我遇到的问题是,每次我尝试运行一个程序时,我都会收到一条消息,上面写着"Launch failed. Binary not found."
然后,我发现你必须先“构建”文件,所以当我尝试这样做时,我收到一条消息显示以下内容的控制台:
**** Build of configuration Debug for project Fortran2 ****
make all
/bin/sh: gfortran: command not found
Building file: ../Src/helloworld.f90
make: *** [Src/helloworld.o] Error 127
Invoking: GNU Fortran Compiler
gfortran -funderscoring -I/usr/locl/bin -O0 -g -Wall -c -fmessage-length=0 -o "Src/helloworld.o" "../Src/helloworld.f90"
**** Build Finished ****
有人对如何使它工作有任何指示吗?