如何解决Swift编译器错误“错误:总线错误:10”?

问题描述 投票:0回答:1

在为发布版本构建时遇到问题 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)

我尝试过不同的模拟器,但错误仍然存​​在,对于buildanalyze命令。

从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没有帮助。

swift xcode xcodebuild
1个回答
0
投票

经过大量调试,注释掉代码并尝试不同的项目设置,我发现导致问题的文件是我们用来比较磁盘上的文件的MD5哈希:https://github.com/onmyway133/SwiftHash/blob/master/Sources/MD5.swift

从目标中删除该文件(和调用者)使编译器感到高兴,但这不是一个选项。

同时,我还发现Swift 5编译器在将“优化级别”设置为“优化大小”时不会崩溃,因此我们现在将使用该选项。

© www.soinside.com 2019 - 2024. All rights reserved.