iOS MobileVLCKit 存档问题

iOS MobileVLCKit archive problems

在尝试归档我的项目时我得到了这个错误:

ld: bitcode bundle could not be generated because '/Users//MobileVLCKit/MobileVLCKit.framework/MobileVLCKit(VLCEmbeddedDialogProvider.o)' was built without full bitcode. All object files and libraries for bitcode must be generated from Xcode Archive or Install build file '/Users//MobileVLCKit/MobileVLCKit.framework/MobileVLCKit' for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

尝试过enablebitcode = no 但是当我存档时 mac 卡住了,40 分钟后我放弃了。

知道我能做什么以及是否可以使用此 pod 存档项目?

有同样的问题,设置 ENABLE BITCODE = NO 并更改 Debug Information Level from "DWARF with dSYM File" 到 "DWARF" 在版本中使其存档成功。 See Image: Change Debug Information Format

当前版本 Xcode 10 中的 dsymutil 中存在一个错误,当使用 "DWARF with dSYM File" 选项归档 VLCKit 时会耗尽所有 RAM。

此问题已在当前 Xcode 测试版中解决,因此如果您想使用该选项,请将 dsymutil 从 Xcode 测试版复制到稳定版(或从 Xcode 9.4) 来解决这个问题。

遗憾的是,我们无法在 VLCKit 中更改任何内容,因为该错误存在于 Apple 的工具中。