Mac os下C/C++开发,找不到头文件

原因:

由于Mac更新或者Xcode更新所至

方法:

终端执行命令:

xcode-select --install

如果可行,就可以了。

如果报以下提示:

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

其实意思就是Command line toos工具已经装好了。但是,需要对其更新。

其实最简单的更新方式是:

sudo rm -rf /Library/Developer/CommandLineTools
xcode-select --install

如果担心在执行第一条指令删除后又下载不回来了,可以在前面加一句

mv /Library/Developer/CommandLineTools /path(你想要暂时保存的路径)

 

你可能感兴趣的:(错误解决方案记录)