I have a macbook I'm trying to do some development on. I have a program I want to build, and when I went to use make to build it I got a "command not found" error. I did some google and SO searches and it doesn't look like this is a common problem. Why don't I have make installed and how do I get it? I'm extra confused because I know I used it relatively recently (in the past month or so) when I was on this laptop.
|
|
|||||||||
|
|
Have you installed the Apple developer tools? What happens if you type gcc -v ? It look as if you do not have downloaded the development stuff. You can get it for free (after registration) from http://developer.apple.com/ |
|||||||||||||||
|
|
For those of you who get to this page using Xcode 4.3 and Lion, the command line tools are no longer bundled by default, and there is no /Developer anymore. To install them, open Xcode, go to Preferences -> Downloads -> Components -> Command Line Tools. This should install make, gcc etc. |
|||||||
|
|
There is now another way to install the gcc toolchain on OS X through the osx-gcc-installer this includes:
The download is 282MB vs 3GB for Xcode. |
|||
|
|
|
You will have to install the "Developer Tools" that are provided as optional packages in OS X installation disks. |
|||
|
|
|
In addition, if you have migrated your user files and applications from one mac to another, you need to install Apple Developer Tools all over again. The migration assistant does not account for the developer tools installation. |
|||
|
|
For Xcode 4.1 you can simply add /Developer/usr/bin to the PATH environment variable. This is easily done:
Also be certain to update your ~/.bashrc (or ~/.profile or ~/.bash_login) file. |
|||
|
|
|
If you've installed Xcode 4.3 and its Command Line Tools, just open Terminal and type the following: On Xcode 4.3, type the following in Terminal:
|
|||
|
|
|
I agree with the other two answers: install the Apple Developer Tools. But it is also worth noting that OS X ships with ant and rake. |
|||
|
|
|
I believe you can also get just the Xcode command-line tools which is about 170 MB.. It's described in the 'brew' setup guide: https://github.com/mxcl/homebrew/wiki/installation and can be found here: https://developer.apple.com/downloads/index.action# Edit: this was already mentioned above by @josh |
|||
|
|
|
Daniel's suggestion worked perfectly for me. To install make, open Xcode, go to Preferences -> Downloads -> Components -> Command Line Tools.You can then test with gcc -v |
|||
|
|