3

I recently upgraded from Snow Leopard to Lion and downloaded Xcode from the App Store, but "make" is still not found:

-bash: make: command not found

Cajunluke
  • 3,103
  • 28
  • 28
  • possible duplicate of http://stackoverflow.com/questions/9316853/after-updating-to-mac-os-x-lion-my-laptop-does-not-recognize-make-command/9316961 – flyx Feb 21 '12 at 08:27

1 Answers1

1

For the latest version of Xcode, the command line tools are not bundled by default. You need to download them from within Xcode.

I believe you can find this under "Preferences > Downloads > Components".

http://holgr.com/blog/2012/02/xcode-4-3-and-homebrew-where-did-my-command-line-tools-go/

Alex Reece
  • 1,906
  • 22
  • 31
  • I think you can also use tools from inside the Xcode bundle by using the command xcrun. For example xcrun make. – bames53 Aug 15 '12 at 19:12