Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Xcode 11 编译我的项目。如果我构建项目,我会收到以下消息:
Swift 5.0 编译的模块不能被 Swift 5.1 导入
我试图重建运行的依赖项,carthage bootstrap但我从 carthage 收到另一条错误消息:
carthage bootstrap
无法确定本地 Swift 版本。
在 Xcode 11 beta 上运行使用 swift 5 构建的应用程序的最佳流程是什么?(考虑到我使用 carthage 作为依赖管理器?)
打开 Xcode 并转到首选项。现在选择选项卡Locations并Xcode 11.0在下拉菜单中选择Command Line Tools。然后再次运行 Carthage,项目应该在 Xcode beta 中构建。
Locations
Xcode 11.0
Command Line Tools
您需要选择 XCode 的默认版本,只需打开终端并编写以下代码:
$ sudo xcode-select -s <path/to/>Xcode.app
确保您放置了所需 XCode 版本的确切路径,或者只是将其拖放到终端上。