我创建了一个简单的Xcode项目命令行工具。在不进行任何修改的情况下,我打开了创建的main.swift文件,该文件导入Foundation并显示“ Hello,world”。当我单击“运行”按钮时,它立即崩溃,显示以下错误:
host:80
我尝试了多种修复方法,包括将dyld: Library not loaded: @rpath/libswiftCore.dylib
Referenced from:
/Users/(rest of the path)/Build/Products/Debug/File
Reason: image not found
添加到 Runpath搜索路径,并将始终嵌入Swift标准库设置为true。
我还创建了一些iOS应用程序,这些应用程序在模拟器上运行时没有任何问题。
我有Xcode 10.2.1和macOS 10.14.3。我该如何解决?