使用 Xcode 让 g++ 在 Mac 上运行

使用 Xcode 让 g++ 在 Mac 上运行

在尝试让 g++ 在终端中工作时,我运行了一个命令,但我现在知道该命令已经过时了。

我认为这就是为什么在终端中运行 g++ 返回错误但我不确定。

如果我尝试在终端中运行任何 .cpp,我会收到错误消息:

xcrun: Error: failed to exec real xcrun. (No such file or directory)

我已经安装了 xcode 并安装了命令行工具。然而,这样做之后,我运行了以下命令:

sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/

我做了什么,我应该做什么?

答案1

我相信您只是指出了xcode-selectXcode 目录结构的错误部分。您应该能够通过以下方式撤消此操作:

xcode-select -reset

将来,如果您需要它,该xcode-select工具可以通过仅提供您想要使用的 Xcode 应用程序的路径来找到它需要的内容:

xcode-select --switch /Applications/Xcode.app

相关内容