A script for compiling OpenSSL for Apple Devices.
Go to file
Davide De Rosa 2262160df5 Fix ld MIN_SDK for simulator targets
ld complains about mixing device and simulator objects in the
tvOS target. Reason is that "tvos_version_min" seems to imply a
device target, whereas simulator must use "tvos_simulator_version_min"
instead.

The stupid part of it is that ld displays a warning in iOS:

ld: warning: URGENT: -ios_version_min is invalid for architecture
x86/x86_64, inferring -ios_simulator_version_min. This will be an error
in the future.

whereas stops abruptly in tvOS:

ld: building for tvOS, but linking in object file built for tvOS
Simulator, file 'obj/a_d2i_fp.o' for architecture x86_64

ld should stop and avoid any poorly explained nonsense.
2018-09-24 13:59:07 +02:00
assets Add macOS archs/targets 2018-02-08 16:45:10 +01:00
config Rename 1.1.0 config to more generic 2018-02-08 16:45:10 +01:00
include Preprocessor error for unknown targets and include for TargetConditionals.h 2017-03-04 13:06:21 +01:00
scripts Prefix iOS archs for consistency 2018-02-08 16:45:10 +01:00
.gitignore Add OpenSSL acknowledgement 2018-03-22 22:06:35 +01:00
LICENSE Update LICENSE 2016-08-09 13:33:58 +02:00
OPENSSL-LICENSE Add OpenSSL double license 2018-03-26 19:00:11 +02:00
OpenSSL-Apple.podspec.template Circumvent CocoaPods warning about source 2018-04-25 16:59:58 +02:00
README.md Add OpenSSL acknowledgement 2018-03-22 22:06:35 +01:00
build-libssl.sh Drop i386, deprecated in Xcode 10 2018-09-24 13:59:07 +02:00
create-openssl-framework.sh Fix ld MIN_SDK for simulator targets 2018-09-24 13:59:07 +02:00

README.md

OpenSSL-Apple

license OpenSSL version OpenSSL version iOS support tvOS support macOS support

This is a fork of the popular work by Felix Schulze, that is a set of scripts for using self-compiled builds of the OpenSSL library on the iPhone and the Apple TV.

However, this repository focuses more on framework-based setups and also adds macOS support.

Compile library

Compile OpenSSL 1.0.2k for all archs:

./build-libssl.sh --version=1.0.2k

Compile OpenSSL 1.1.0f for all targets:

./build-libssl.sh --version=1.1.0f

Compile OpenSSL 1.0.2k for specific archs:

./build-libssl.sh --version=1.0.2k --archs="ios_armv7 ios_arm64 mac_i386"

Compile OpenSSL 1.1.0f for specific targets:

./build-libssl.sh --version=1.1.0f --targets="ios-cross-armv7 macos64-x86_64"

For all options see:

./build-libssl.sh --help

Generate frameworks

Statically linked:

./create-openssl-framework.sh static

Dynamically linked:

./create-openssl-framework.sh dynamic

Original project

Acknowledgements

This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (https://www.openssl.org/)