Xcode 8.2,Swift编译器错误:错误:意外的输入文件

时间:2016-12-16 13:58:56

标签: swift xcode xcodebuild

从Xcode 8.1更新到8.2后,我在项目中遇到了Swift编译器错误。我使用最新的Swift版本和Carthage进行依赖管理。它与Xcode 8.1完美配合,现在我已经尝试了几个小时来修复它,方法是清除DerivedData和模拟器数据,清理Xcode并删除Build文件夹,但似乎没有任何帮助。我只安装了一个Xcode版本。

我收到以下编译错误:

CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler
cd <ProjectSource>
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault

-- all files to compile --

unknown>:0: error: unexpected input file: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk
Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc failed with exit code 

它所指的文件夹如下所示:

folder that cannot be found

实际上它在那里,所以我不知道发生了什么...... 非常感谢帮助! :)

2 个答案:

答案 0 :(得分:9)

我遇到了同样的问题,这些评论让我弄明白了我的问题。

实际上,当有&#34;其他Swift Flag&#34;出现错字或错误时会发生此错误。选项。就我而言,我的CI引擎将此选项传递为空,导致生成的命令行出错,从而导致错误:

"error: unexpected input file: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator10.2.sdk"

回答问题而不是评论可以直接帮助人们:)

答案 1 :(得分:3)

在我的情况下,这只是因为我有一个名为.Swift的文件(请注意大写S!)。我将其正确地重命名为.swift,一切顺利。