Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
公告
FPGA community forums and blogs have moved to the Altera Community. Existing Intel Community members can sign in with their current credentials.
29310 討論

command "make" not found on Mac OS X Lion

Brian_A_
新手
791 檢視
I have upgraded to OS X Lion 10.7. When I try to compile, I get -bash: make command not found.
The ifort command works just fine.
0 積分
1 解決方案
Ron_Green
主席
791 檢視
I should add that besides gnumake/make, it looks like they moved all the developer utilities like nm, ld, yacc, otool, etc. over to /Developer/usr/bin. Probably they want to seperate the developer tools from the core OS things in /usr/bin

because of this, I'd have to recommend just adding /Developer/usr/bin to your PATH

ron

在原始文章中檢視解決方案

2 回應
Ron_Green
主席
791 檢視
yes, looks like they moved it around a bit.

First, you will need to get Xcode 4.1 from the App Store and get it installed.

Next, on Snow Leopard /usr/bin/make was a link to /usr/bin/gnumake.

On Lion, they moved it: gnumake and make are in /Developer/usr/bin. And like before, make is a link to gnumake.

Either add /Developer/usr/bin to your path OR symbolic link /usr/bin/make to /Developer/usr/bin/make

ron
Ron_Green
主席
792 檢視
I should add that besides gnumake/make, it looks like they moved all the developer utilities like nm, ld, yacc, otool, etc. over to /Developer/usr/bin. Probably they want to seperate the developer tools from the core OS things in /usr/bin

because of this, I'd have to recommend just adding /Developer/usr/bin to your PATH

ron
回覆