Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install gcc in Mountain Lion

I need GCC for some Ruby gems. And I need LLVM as well for iOS development using Xcode 4.4. I already have LLVM installed through Xcode.

How can I install GCC in Mountain Lion without affecting any of LLVM binaries?

like image 284
Anand Avatar asked Jan 23 '26 20:01

Anand


2 Answers

The fact is that because you have Xcode you already have GCC installed on your system. If you're trying to run GCC from the terminal and getting "command not found" then the reason is, starting with OS X 10.8 (Mountain Lion), the GCC "command line tools" are not installed by default with Xcode. The install procedure depends on your version of OS X and Xcode:

Installing the GCC command line tools in OS X 10.8 (Xcode 4.4):
Xcode -> Preferences -> Download -> Components -> Command Line Tools -> install

Installing the GCC command line tools in OS X 10.9 (Xcode 5.02):
I have not tried these instructions myself, but I'll move them here if someone tries them and they work:
http://osxdaily.com/2014/02/12/install-command-line-tools-mac-os-x/

like image 170
Douglas B. Staple Avatar answered Jan 26 '26 11:01

Douglas B. Staple


Had the same issue after upgrading to Mountain Lion.

My fix, I found make and gcc etc in /Developer/usr/bin.

setenv PATH $PATH":/Developer/usr/bin"

Puts them back in the path.

Oh yeah, I was on Xcode 3.x.

like image 36
Ben Avatar answered Jan 26 '26 11:01

Ben