我使用xcodebuild来构建一个框架,我想找到一种方法来检查bitcode类型是-fembed-bitcode还是-fembed-bitcode-marker。
如你所知,当bitcode类型为-fembed-bitcode时,框架是完全支持bitcode的。
发布于 2017-11-19 20:13:35
Use your xcodebuild command and add -showBuildSettings to the end。
查看结果,看看是否可以在OTHER_LDFLAGS下找到-fembed-bitcode。
https://stackoverflow.com/questions/47373945
复制相似问题