- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我使用的是 Xcode 8.2.1,我的 swift 版本是 3.0.2 (swiftlang-800.0.63 clang-800.0.42.1)
这是我的 package.swift 内容
import PackageDescription
let package = Package(
name: "MyAwesomeProject",
dependencies: [
.Package(
url: "https://github.com/PerfectlySoft/Perfect-HTTPServer.git",
majorVersion: 2, minor: 0
),
.Package(url: "https://github.com/PerfectlySoft/Perfect-PostgreSQL.git", majorVersion: 2, minor: 0),
.Package(url: "https://github.com/SwiftORM/Postgres-StORM.git", majorVersion: 1, minor: 0)
]
)
here解释了如何将 Postgres stORM 添加到您的项目中。当我将 PostgresStrom 添加到我的包并构建时,出现以下构建错误:
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/usr/include/module.modulemap:1:8: error: redefinition of module 'AppleTextureEncoder'
module AppleTextureEncoder [system] [extern_c]
我该如何解决这个问题?我在网上找不到任何东西
我尝试过但没有奏效的:1-清除项目(command +shift + k)和(command + option + shift + k)2-删除转移的数据3-创建完整的新项目4- 删除/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/usr/include/module.modulemap 这毁了我的 xcode,不得不把它放回去。
最佳答案
当我使用 Docker 并创建一些服务器端的东西时,我遇到了同样的问题。我在 Docker 中通过命令行创建包并构建它。
swift package init --type executable
swift build
重要之后,在 Docker 之外的终端上转到您的项目目录并创建 xcode 文件。
swift package generate-xcodeproj
享受 :-)
关于添加 PostgresStORM 包时,快速完美的项目构建失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42369896/
我使用的是 Xcode 8.2.1,我的 swift 版本是 3.0.2 (swiftlang-800.0.63 clang-800.0.42.1) 这是我的 package.swift 内容 imp
我是一名优秀的程序员,十分优秀!