1

I recently got a new MacBook Air and decided to do a fresh install without using the migration assistant.

I'm running into issues building software that requires "Make". I do have xcode installed, but for some reason it seems like "make" isnt installed. Here is an output.


petros$ sudo make
Password:
sudo: make: command not found

petros$ gcc -v
-bash: gcc: command not found

Any clues?

Peter
  • 263

2 Answers2

2

Add /Developer/usr/bin to your path and try again.

Daniel Beck
  • 111,893
1

Are you sure you installed Xcode and the other development tools as part of this fresh install? For example, are you sure you're not running Xcode from a different hard drive partition or something?

You should probably run the Mac OS X installer again and make sure to customize the install and select all the Xcode & developer tools.

Spiff
  • 110,156