Just upgraded my computer to Mac OS X Lion and went to terminal and typed "make" but it says: -bash: make: command not found

Where "make" command is gone?

link|improve this question

3  
Did you install Xcode 4.1? – Edward Thomson Jul 20 '11 at 19:43
1  
Mysterious to me that this question is considered off-topic. – Grumdrig Jan 20 at 19:17
feedback

5 Answers

up vote 3 down vote accepted

Have you installed Xcode and the developer tools? I think make, along with gcc and friends, is installed with that and not before. Xcode 4.1 for Lion is free.

link|improve this answer
feedback

You need to install XCode from AppStore: http://itunes.apple.com/us/app/xcode/id448457090?mt=12

Then start XCode, go to XCode->Preferences->Downloads and install component named "Command Line Tools". After that all the relevant tools will be placed in /usr/bin folder and you will be able to use it just as it was in 10.6

link|improve this answer
23  
And don't forget to run "/Applications/Install Xcode.app". (This stumped me for a while). – njamesp Jul 22 '11 at 20:59
9  
I upgraded to Lion, reinstalled Xcode and make was still not in my path. I tracked it down in: /Developer/usr/bin/make – CJ. Jul 27 '11 at 15:15
4  
... which now seems to be (with the latest version): /Applications/Xcode.app/Contents/Developer/usr/bin/ – Paul Peelen Mar 5 at 17:53
2  
I didn't have to run "/Applications/Install Xcode.app". Using 4.3.2, drag'n'dropped Xcode to the Applications folder, then just went to Preferences->Downloads and installed from there. Now 'make' works from the command line. – Helgi Hrafn Gunnarsson May 4 at 14:46
feedback

Xcode 4.3.2 didn't install "Command Line Tools" by default. I had to open Xcode Preferences / Downloads / Components Tab. It had a list of optional components with an "Install" button beside each. This includes "Command Line Tools" and components to support developing for older versions of iOS.

Now "make" is available and you can check by opening terminal and typing:make -v

The result should look like:GNU Make 3.81

You may need "make" even if you don't need Xcode, such as a Perl developer installing Perl Modules using cpan -i on the commandline.

link|improve this answer
feedback

Indeed, installing new XCode resolved my problem. Unfortunately I didn't know that after doing Mac OS X upgrade I also have to upgrade to latest XCode.

link|improve this answer
feedback

It appears you can install the command line tools without getting Xcode from Downloads for Apple Developers. It required me to login with my apple account.

Alternatively, once you install Xcode from the app store, you might notice the command line tools are not installed by default. Open Xcode, go to preferences, click to the "downloads" tab, and from there you can download and install command line tools.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.