How to use the gcc installed in macports?

隐身守侯 提交于 2019-11-26 19:02:01

问题


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?


回答1:


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




回答2:


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.




回答3:


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



来源:https://stackoverflow.com/questions/8361002/how-to-use-the-gcc-installed-in-macports

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!