Mac系统下运行vscode c++时的xcrun: error: invalid active developer path错误问题的解决办法.
在Mac os系统进行更新后,再次打开vscode-c++编辑器/终端运行c/c++代码时产生错误
例如:
以及报错代码:
Please check your configurations: xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools),
missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
原因分析&解决方案:
主要是xcode-select需要重新安装,于是在终端执行安装xcode-select指令:
xcode-select --install
那么问题就解决了.
上述步骤适用于Mac系统下运行git/svn之时的错误问题之解决办法
如果是在vscode中,则需再做几步操作:
更新系统后配置出现错误, 升级系统后路径改变.
可以看到更新后由原来的MacOSX10.14变成了MacOSX10.15,这个时候去修改一下路径中的MacOSX10.15
这个时候就能看到它不报错了,退出重进入时,便能正常运行了.