0

我正在尝试启动并运行 Netbeans,以便启动一个 Fortran 项目。据我所知,我已经下载了二进制文件并安装了插件。当我尝试编译我的 hello world 时,出现此错误:

"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
"/usr/bin/make"  -f nbproject/Makefile-Debug.mk dist/Debug/GNU-MacOSX/convection
mkdir -p build/Debug/GNU-MacOSX
gfortran   -c -g -o build/Debug/GNU-MacOSX/main.o main.f
gfortran: error trying to exec 'f951': execvp: No such file or directory
make[2]: *** [build/Debug/GNU-MacOSX/main.o] Error 1
make[1]: *** [.build-conf] Error 2
make: *** [.build-impl] Error 2


BUILD FAILED (exit value 2, total time: 111ms)

有什么想法吗?

编辑:我正在使用 Mac OSX 10.8.5

编辑2:我已经搞砸了一段时间,现在错误略有不同:

"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
"/usr/bin/make"  -f nbproject/Makefile-Debug.mk dist/Debug/GNU-MacOSX/convection
mkdir -p build/Debug/GNU-MacOSX
gfortran   -c -g -o build/Debug/GNU-MacOSX/main.o main.f
make[2]: gfortran: No such file or directory
make[2]: *** [build/Debug/GNU-MacOSX/main.o] Error 1
make[1]: *** [.build-conf] Error 2
make: *** [.build-impl] Error 2


BUILD FAILED (exit value 2, total time: 127ms)

编辑 3:只是为了好玩,这是我在 Ubuntu 中成功构建的输出:

"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[1]: Entering directory `/home/hannah/NetBeansProjects/test'
"/usr/bin/make"  -f nbproject/Makefile-Debug.mk dist/Debug/GNU-Linux-x86/test
make[2]: Entering directory `/home/hannah/NetBeansProjects/test'
make[2]: `dist/Debug/GNU-Linux-x86/test' is up to date.
make[2]: Leaving directory `/home/hannah/NetBeansProjects/test'
make[1]: Leaving directory `/home/hannah/NetBeansProjects/test' 

BUILD SUCCESSFUL (total time: 92ms)
4

3 回答 3

1

我在 10.9 上遇到了同样的问题。我需要在我的 /usr/bin (基本目录)中创建一个新的 gfortran 链接。之后它工作得很好。如果我将它放在 usr/local/bin 中,..或任何其他路径都不起作用。

在此处输入图像描述

于 2015-03-06T13:50:30.863 回答
0

这是其他人解决此问题的方法的链接。gfortran 无法找到 f951。

http://ubuntuforums.org/showthread.php?t=1164394

于 2013-10-05T23:06:56.483 回答
0

我想我在这里找到了解决方案:http: //eftrunk.blogspot.com/2011/11/how-to-fix-error-trying-to-exec-f951.html

会报告它是否有效。

于 2013-10-05T23:25:13.657 回答