在为发布版本构建时遇到问题
Apple Watch
任何带有xcodebuild
的Apple平台,来自Xcode 10.2和Swift 5的命令行。
$ xcodebuild -scheme MyApp-watchOS -configuration Release -destination 'OS=latest,name=Apple Watch Series 2 - 38mm' build analyze
[...]
error: Bus error: 10
<unknown>:0: error: unable to execute command: Bus error: 10
<unknown>:0: error: compile command failed due to signal 10 (use -v to see invocation)
[...]
The following build commands failed:
CompileSwift normal i386
CompileSwiftSources normal i386 com.apple.xcode.tools.swift.compiler
(2 failures)
我尝试过不同的模拟器,但错误仍然存在,对于build
和analyze
命令。
从Xcode构建在Debug模型中工作正常,但在Release模式下失败。
CompileSwiftSources normal i386 com.apple.xcode.tools.swift.compiler (in target: MyApp-watchOS)
[...]
<unknown>:0: error: unable to execute command: Illegal instruction: 4
<unknown>:0: error: compile command failed due to signal 4 (use -v to see invocation)
和
CompileSwift normal i386 (in target: MyApp-watchOS)
[...]
error: Illegal instruction: 4
在这种情况下,清理DerivedData没有帮助。
经过大量调试,注释掉代码并尝试不同的项目设置,我发现导致问题的文件是我们用来比较磁盘上的文件的MD5哈希:https://github.com/onmyway133/SwiftHash/blob/master/Sources/MD5.swift
从目标中删除该文件(和调用者)使编译器感到高兴,但这不是一个选项。
同时,我还发现Swift 5编译器在将“优化级别”设置为“优化大小”时不会崩溃,因此我们现在将使用该选项。