vote up 3 vote down star

So I am a new programmer and I just installed XCode on my Macbook to get the GCC. I think Xcode is the only way for getting GCC on OSX. Now when I run my Hello World application, in C++, g++ comes up saying it is version 4.0.1 but when I look for commands starting with g I also see g++-4.2. Is there any way of making 4.2 default rather than 4.0.1, and also is there a way to updating gcc to the latest version 4.4.0?

EDIT: Ok, so I installed macports and installed gcc4.4 and it shows up on terminal as gcc-mp-4.4 and how do I make it default with gcc_select, like what are the commands and stuff. Thanks.

flag

2 Answers

vote up 5 vote down check

If you install macports you can install gcc select, and then choose your gcc version.

/opt/local/bin/port install gcc_select

To see your versions use

gcc_select -l

To select a version use

sudo gcc_select gcc40
link|flag
I don't have that port installed, but I still have gcc_select. This is an older Xcode with OS X 10.4 though. – Matt Kane May 8 at 3:23
If you need more info on MacPorts, they are here (macports.org) and they have ports for gcc up to 4.5. – Matt Kane May 8 at 3:27
ah now it all works, thanks alot guys. – Karan Bhamra May 9 at 19:33
vote up 0 vote down

You can have multiple versions of GCC on your box, to select the one you want to use call it with full path, e.g. instead of g++ use full path /usr/bin/g++ on command line (depends where your gcc lives).

For compiling projects in depends what system do you use, I'm not sure about Xcode (I'm happy with default atm) but when you use Makefiles you can set GXX=/usr/bin/g++ and so on.

link|flag

Your Answer

Get an OpenID
or

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