Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在我的 Mac 上设置 CUDA 和 XCode 以协同工作,但失败了。在此过程中,我去/usr/bin/输入:
/usr/bin/
并输入> sudo rm gcc
> sudo rm gcc
然后> sudo ln -s /opt/local/bin/gcc-4.2 gcc
> sudo ln -s /opt/local/bin/gcc-4.2 gcc
我想我搞砸了,因为现在当我输入
> gcc
进入终端,它说
-bash: gcc: command not found
如何修复它并设置默认的 gcc 4.2?
尝试做
sudo ln -s $(which gcc-4.2) gcc
反而。这将找到gcc-4.2您已安装的版本并将默认版本链接gcc到它。
gcc-4.2
gcc