29

I updated to OS X Lion today, and I don't seem to have a copy of gcc any more. Did this happen to anyone else? Does anyone know why this would happen?

7 Answers7

44

Just installed Xcode 4.3 on Lion from the app store, had the same issue with gcc, etc not installed. Fumbled around until I did the following:

in Xcode: Preferences --> Downloads With "Components" selected, you will see a list of downloadable components.

Look for Command Line Tools, and click on install. You will be prompted for your Apple Developer userid and password. After successfully authenticating, the command line tools component downloads and installs a bunch of goodness, including gcc.

jbm hack
  • 441
13

I was mighty pissed when I found out that the OS X Lion upgrade wiped out my entire development tool-chain. However, with help from a friend, I discovered that the tool-chain had instead been moved into the /Developer/usr/bin/ folder on disk. For my immediate need, I only had to make make, gcc and g++ available on path, so I created symlinks to /Developer/usr/bin/gnumake, /Developer/usr/bin/gcc-4.2, and /Developer/usr/bin/g++-4.2 inside the /usr/bin/ folder. However, I imagine the correct approach would be re-install XCode to fix the issue.

ayaz
  • 11,970
7

Download the new Xcode from the App Store and run Install XCode. It's now free, not $4.99.

etagwerker
  • 103
  • 4
fideli
  • 14,884
6

You can just put /Developer/usr/bin in your $PATH and everything is fine:

export PATH=${PATH}:/Developer/usr/bin
rootsmith
  • 161
5

I followed these steps and was able to get GCC working again.

  1. Open the App Store.
  2. Search for "XCode".
  3. Search the whole page for any kind of “Buy” or “Download” or “Install” button.
  4. Ha ha. There isn’t one. Click on the button that says “Free”. It will turn into a button that says “Download”.
  5. Click that.
  6. Wait for it to download and install. Now the App Store will claim that you have installed Xcode. Congratulations!
  7. But you haven’t.
  8. Open Finder and go to your Applications.
  9. Find the “Install Xcode” application. Not joking.
  10. Run it.
0

I had this issue too, where even after I install XCode4, there was no gcc in my path. But it turns out my install was just borked. I reran the XCode installer and now /usr/bin/gcc is a symlink to /usr/llvm-gcc-4.2/bin/llvm-gcc-4.2 as it should be.

edit: secoif's comment was correct. Just reinstall XCode.

notpeter
  • 1,207
0

New installations of Xcode (versions 4.2 and up) through the App Store do not ship with gcc-4.2. You can download and install Xcode 4.1 through the Apple Developer Central. Free registration required.

bouke
  • 101
  • 2