error: conditional compilation flags must be valid Swift identifiers (rather than 'DEBUG”')

error: conditional compilation flags must be valid Swift identifiers (rather than 'DEBUG”')

我正在尝试使用 Xcode 9 beta 6 (9M214v) 构建我的项目。另外,我正在使用 CocoaPods。我已转换为 Swift 4 并更新了我的项目设置,但我一直收到此错误。

到目前为止我尝试过的事情:

有人知道如何解决这个问题吗?

错误信息:

<unknown>:0: error: conditional compilation flags must be valid Swift identifiers (rather than 'DEBUG”')
Command /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc failed with exit code 1

播客文件

target 'iOS Application' do
    use_frameworks!

    pod 'SwiftLint'
    pod 'RealmSwift'
    pod 'ReachabilitySwift'
    pod 'Fabric'
    pod 'Crashlytics'
end

发现错误!在我的 iOS Application 目标的构建设置中,位于 Swift Compiler - Custom Flags > Other Swift Flags。标志末尾有一个”,而不是“。我不知道这是怎么发生的,但是引号导致了错误。

我发现当您修改自定义标志 "x-Code" 设置以删除“-D”,然后将 swift 语言版本替换为 "Swift 4.0" 时,它会解决你的问题!希望能帮到你...