我在我的mac中使用sublime text作为平台编写了一个程序..
adarshs-MacBook-Air:Desktop adarshak$ g++ hellow.cpp
xcrun: error: invalid active developer path
(/Library/Developer/CommandLineTools), missing xcrun at:
/Library/Developer/CommandLineTools/usr/bin/xcrun
这是我的节目.. 我把它作为hellow.cpp保存在桌面上
在mac终端上编译为g ++ hellow.cpp时,我发现了一个错误
split
任何人都会帮我找出错误
答案 0 :(得分:3)
听起来您没有安装命令行开发人员工具。从终端运行此命令一次:
xcode-select --install
这将带来下载和放大安装UI。按照这一直到最后。 (可能需要一段时间,具体取决于您的互联网连接速度。)
从那时开始编译应该有效。