I am currently building an iOS app written in Objective-C and Swift containing the openssl and openldap frameworks, which builds and runs without any issues.
However, when I try to archive the app for release, the below errors occur:
Here is some additional information:
The Xcode version is 7.3.1 (7D1014)
The project is an Xcworkspace (contains a podfile, but the frameworks are not integrated through Cocoapods)
UPDATE:
After further testing, another makefile error occurred (similar issue in any case)
This image illustrates all the frameworks and libraries used and the errors that occur.
Here is the build log:
I appreciate any assistance and would be happy to provide any additional information.
Makefile-openssl
is not provided by the OpenSSL project. Someone else provided it. You might try excluding it from the archive operation since its not an OpenSSL file and its breaking the archival operation. Also see Is there a way to exclude some files from submitting to the iOS app store. – BanjermasinMakefile-openssl
since its not needed once the library is configured and built. Also be aware... I've seen a lot of problems with those POD builds of OpenSSL because they don't configure properly; especially the fat ones. See, for example, Build Multiarch OpenSSL on OS X. The same applies to all multiarch builds, and not just OS X. – Banjermasin