在终端中运行Swift构建导致“平台路径”错误

前端之家收集整理的这篇文章主要介绍了在终端中运行Swift构建导致“平台路径”错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我最近重新格式化了我的Mac.今天我尝试通过Terminal构建一个 swift可执行文件来启动服务器端swift项目.这是我用过的命令:

> swift包init –type可执行文件
>快速构建

运行swift build后,我收到以下错误

xcrun: error: unable to lookup item 'PlatformPath' from command line tools installation
xcrun: error: unable to lookup item 'PlatformPath' in SDK '/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk'

我正在运行Xcode 8.3.1.

提前致谢!

尝试修复SDK路径(您的路径显示不正确):
$xcrun --show-sdk-path --sdk macosx

你可能有这个结果:

/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk

通过调用来切换默认的SDK位置:

$sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer

如果这不起作用,那么看看(正常)SDK路径:

$ls -lat /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/

您应该在该目录中看到SDK;如果没有,你需要下载它们.

原文链接:https://www.f2er.com/swift/319003.html

猜你在找的Swift相关文章