我刚刚在Macbook上对Swift 5进行了更新,现在我无法使用Xcode运行任何代码,它在运行时为我提供了以下输出(构建正常)。
我已经尝试过:
清洁溶液。然后重新构建
使RUNPATH_SEARCH_PATHS =“ $(继承)@ executable_path / Frameworks”。
使ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES。
使EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE =是
这是我尝试运行的代码:
import Foundation
print("Hello World")
输出:
dyld: Library not loaded: @rpath/libswiftCore.dylib
Referenced from: /Users/***/Documents/MyProject/Build/Products/Debug/MyProject
Reason: image not found
预期输出:
Hello World
答案 0 :(得分:5)
很抱歉,我刚刚找到了解决问题的方法。
如果某人遇到这种情况,则只需下载the swift 5 runtime support。
swift5的运行时虚拟机似乎与swift4的运行时虚拟机不同
the swift 5 runtime support。无法安装到Mac OS 10.14.4,如何解决?