I've installed XCode v3.1.3 and am having difficulties using the rumored GCC that is installed along with it. -- I'm certainly able to use the XCode IDE to compile my programs but would like the flexibility of also using the command line...

Where's GCC?

link|improve this question

I've got one in /usr/bin/gcc-4.2, but maybe I installed a separate gcc apart from Xcode -- can't remember. – GregS Jun 26 '10 at 14:43
feedback

3 Answers

up vote 1 down vote accepted

The most likely explanation is that when you installed the Developer tools you unchecked "UNIX Development Support", so the command line tools were never installed. Delete your /Developer/ directory and do a clean install of the tools; make sure to select "configure" during the installation process and ensure that the appropriate items are checked.

link|improve this answer
feedback

Look in /Developer/usr/bin

link|improve this answer
feedback

In /usr/bin you should find gcc-4.0 and gcc-4.2 and then there will be a symbolic link gcc which points to one of these (usually gcc-4.2).

As always, you can find out where any available command in your PATH is located using which, e.g.

$ which gcc
link|improve this answer
Thanks for the suggestion with "which gcc". That was the first thing I tried (to no avail) as GCC is not in my "/usr/bin" . Instead, it's in my "/Developer/usr/bin" that is not in my default PATH. – Nate Jun 28 '10 at 1:37
@Nate: sounds like you need to re-install Xcode - make sure that the Unix support option is checked. – Paul R Jun 28 '10 at 5:55
feedback

Your Answer

 
or
required, but never shown

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