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

I installed gcc 4.6. from macports (for support of C++0x). But when I check the 'gcc --version` it is showing older version. How to use the newer gcc installed by macports?

share|improve this question
possible duplicate of Update GCC on OSX – birryree Dec 2 '11 at 18:43

3 Answers

up vote 6 down vote accepted

I remember it being something like g++-mp-4.6. I believe it's enough to set the environment variable CXX to that.

share|improve this answer
1  
that worked. is there a way to use it by default so that I dont have to change all make files. – Nemo Dec 2 '11 at 18:51
1  
Stick it into .bashrc? – Nikolai N Fetissov Dec 2 '11 at 18:55

You can control the symlink in /opt/local/bin/gcc by using port select. You can see available version using port select --list gcc. Anything listed with mp- as prefix refers to MacPorts' own port, gcc42 and llvm-gcc42 refer to the compilers shipped with Xcode by Apple.

Example from my system:

$ port select --list gcc
Available versions for gcc:
    gcc42
    llvm-gcc42
    mp-gcc45
    none (active)
$ sudo port select --set gcc mp-gcc45
Password:
Selecting 'mp-gcc45' for 'gcc' succeeded. 'mp-gcc45' is now active.

After that, either open a new terminal window or issue hash -r to make bash recognize the change.

share|improve this answer

Just make sure macports' path comes first in your $PATH. Or use gcc-mp-4.6 or something like that.

share|improve this answer
Or remove the old one :P – jli Dec 2 '11 at 18:44
2  
@jli, the one from /usr/bin? Doesn't sound like a good idea :) – Michael Krelin - hacker Dec 2 '11 at 18:45
@MichaelKrelin-hacker you still need to set the active gcc as stated above. – Chris Feb 24 at 18:52
This was my problem, and a good possible answer to the question. I had already used port select and was puzzled when the gcc --version always reported the old version. It was totally a $PATH problem. – mikewoz Feb 25 at 4:54
@Chris, no denying ;-) – Michael Krelin - hacker Feb 25 at 8:23

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.