2013-10-05 36 views
0

我试图让Netbeans启动并运行,因此我可以启动一个Fortran项目。我已经下载了二进制文件,并根据我的知识安装了插件。当我尝试编译我的世界你好我得到这个错误:Netbeans fortran在Mac OS 10.8上编译失败,无法看到gfortran文件

"/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

[复制](http://stackoverflow.com/questions/17885369/how-to-use-gfortran-with-netbeans-on-os-x-mountain-lion) –

+0

你能编译'main.f'通过终端? –

+0

好点。是的,我可以通过终端进行编译和运行。 – whatsherface

回答

0

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

enter image description here

相关问题