sinofool / build-openssl-ios

Build openssl for iOS development, include armv7 armv7s arm64 i386 and x86_64 support.
http://sinofool.net/blog/archives/172
MIT License
124 stars 57 forks source link

build_release.sh is not creating frameworks #15

Open svenyonson opened 3 years ago

svenyonson commented 3 years ago

lipo creates a static library, not a framework - you've just used a different file extension (.framework) instead of .a

An iOS framework is actually a folder. It needs to contain a Headers and a Modules folder for example. And a binary for the dynamically linked component.