我正在努力让Netbeans运行起来,这样我就可以启动Fortran项目了。我已经下载了二进制文件并根据我的知识安装了插件。当我尝试编译我的hello世界时,我收到了这个错误:
"/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)
答案 0 :(得分:1)
我在10.9上遇到了同样的问题。我需要在/ usr / bin(基本目录)中创建一个新的gfortran链接。之后它运作良好。如果我在usr / local / bin,..或任何其他路径中使用它,它就不起作用。
答案 1 :(得分:0)
以下是其他人解决此问题的链接。 gfortran无法找到f951。
答案 2 :(得分:0)
我想我在这里找到了解决方案:http://eftrunk.blogspot.com/2011/11/how-to-fix-error-trying-to-exec-f951.html
将报告是否有效。