作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我用 sublime text 作为平台在我的 mac 上写了一个程序..
#include<iostream>
using namespace std;
int main()
{
cout<<"HELLOW WORLD";
return 0;
}
这是我的程序..我把它保存在桌面上作为 hellow.cpp
在 mac 终端上编译为 g++ hellow.cpp 时,我发现了一个错误
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
谁能帮我找出错误
最佳答案
听起来您没有安装命令行开发人员工具。从终端运行此命令一次:
xcode-select --install
这将打开下载和安装 UI。按照这个进行到底。 (这可能需要一段时间,具体取决于您的互联网连接速度。)
从那时起编译应该可以了。
关于c++ - 如何在mac终端编译c++程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48303507/
我是一名优秀的程序员,十分优秀!