我该如何重新安装gcc?


2

我是mac的新手,并尝试在带有El Captain的MacBook Air上安装gcc / g ++。我安装了Xcode并使用过

xcode-select --install

它完成并取得了成功。但是,出于某种原因,我无法在/ usr / bin或除了符号链接(cc c ++ gcc g ++)之外的任何其他地方找不到任何版本的gcc / g ++。我试过了

gcc -v

并收到错误

-bash: gcc: command not found

当我尝试使用代码选择再次重新安装命令行工具时,我得到了

xcode-select: error: command line tools are already installed, use "Software Update" to install updates

有什么方法可以简单地重新安装命令行开发人员工具吗?


你是怎么原来安装gcc的?如果您熟悉Homebrew,可以再试一次。
jmh '18

Answers:


1

Xcode是否安装在正常位置?(即在/ Applications?)

你从什么地方回来的,

$ xcode-select --print-path

你能在以下地点看到gcc吗?

$ ls -l /Applications/Xcode.app/Contents/Developer/usr/bin/gcc
-rwxr-xr-x  1 root  wheel  18560 16 Mar 00:31 /Applications/Xcode.app/Contents/Developer/usr/bin/gcc

如果来自xcode-select的路径未指向/Applications/Xcode.app/Contents/Developer,则尝试强制到此位置,

sudo xcode-select --switch /Applications/Xcode.app
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.