Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

After installing Xcode CLT 4.5.1 on OS X 10.8.2, I'm having issues installing native ruby gems which need to compiled.

The output error is the same as with running xcrun -find:

xcode-select: Error: No Xcode is selected. Use xcode-select -switch , or
see the xcode-select manpage (man xcode-select) for further information.

To which CLT location should xcode-select point to, since it's no longer at /Developer?

Edit: I don't have the Xcode app installed, only CLT.

share|improve this question

4 Answers

up vote 9 down vote accepted

The new location seems to be:

xcode-select -switch /Library/Developer/
share|improve this answer
This does the trick, which is kinda weird considering that this directory only contains an Acknowledgements.rtf. – Holger Just Dec 14 '12 at 19:57
I was hoping this would work for Ruby Motion as well, but no luck. That may, unfortunately, need for XCode to be installed in its entirety. – Eric M. Jan 9 at 18:54

you probably want:

xcode-select -switch /Applications/Xcode.app

unless you have multiple installs. that is likely the location if you have one install (e.g. from the App Store). if you have multiple installs, you probably know which one you want.

you could also try updating this value from Xcode's Preferences > Locations > Command Line Tools popup.

share|improve this answer
   
I don't have the Xcode app installed, only CLT. – ddario Oct 8 '12 at 12:20

Since your Xcode tools are installed in /usr/bin, you should

sudo xcode-select -switch /
share|improve this answer

With XCode 4.5 installed AND Command Line Tools installed, I had to use this to get MacPorts and other similar things (like Ruby Gems or Perl CPAN module installation) working:

sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer/

I found that /Library/Developer did not work. Note that the Developer folder is not under /Library for me, it's under the app bundle file content folders.

I'm not sure why this is, but people googling this issue may come here and want to know the other commandline options that are commonly usable with xcode-select, thus this answer, even though it doesn't 100% apply to the original question (where command line tools are installed WITHOUT XCode).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.