我最近重新格式化了我的Mac.今天我尝试通过Terminal构建一个
swift可执行文件来启动服务器端swift项目.这是我用过的命令:
运行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路径(您的路径显示不正确):
原文链接:https://www.f2er.com/swift/319003.html$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;如果没有,你需要下载它们.