我正在尝试使用位码构建openSSL 1.1.0。

在我定义的makefile文件中

CC= $(CROSS_COMPILE)clang -fembed-bitcode

但是后来我得到了错误
ld: -bundle and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together
clang: error: linker command failed with exit code 1 (use -v to see invocation)

没有位码,它会很好地工作。

如何使用位码支持构建它?

最佳答案

好吧,最后使用此脚本来完成它-
https://github.com/x2on/OpenSSL-for-iPhone

关于ios - 用位码构建openSSL,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42116391/

10-10 05:36