Restrict to SDKs supporting dynamic frameworks

- Start from iOS 8
- Never disable Bitcode
This commit is contained in:
Davide De Rosa 2017-10-18 01:13:05 +02:00
parent a9e7904e58
commit 2bd9b363cc
1 changed files with 5 additions and 5 deletions

View File

@ -33,7 +33,7 @@ DEFAULTTARGETS="ios-sim-cross-x86_64 ios-sim-cross-i386 ios64-cross-arm64 ios-cr
# Minimum iOS/tvOS SDK version to build for # Minimum iOS/tvOS SDK version to build for
MACOS_MIN_SDK_VERSION="10.11" MACOS_MIN_SDK_VERSION="10.11"
IOS_MIN_SDK_VERSION="7.0" IOS_MIN_SDK_VERSION="8.0"
TVOS_MIN_SDK_VERSION="9.0" TVOS_MIN_SDK_VERSION="9.0"
# Init optional env variables (use available variable or default to empty string) # Init optional env variables (use available variable or default to empty string)
@ -52,7 +52,7 @@ echo_help()
echo " --ios-sdk=SDKVERSION Override iOS SDK version" echo " --ios-sdk=SDKVERSION Override iOS SDK version"
echo " --noparallel Disable running make with parallel jobs (make -j)" echo " --noparallel Disable running make with parallel jobs (make -j)"
echo " --tvos-sdk=SDKVERSION Override tvOS SDK version" echo " --tvos-sdk=SDKVERSION Override tvOS SDK version"
echo " --disable-bitcode Disable embedding Bitcode" #echo " --disable-bitcode Disable embedding Bitcode"
echo " -v, --verbose Enable verbose logging" echo " -v, --verbose Enable verbose logging"
echo " --verbose-on-error Dump last 500 lines from log file if an error occurs (for Travis builds)" echo " --verbose-on-error Dump last 500 lines from log file if an error occurs (for Travis builds)"
echo " --version=VERSION OpenSSL version to build (defaults to ${DEFAULTVERSION})" echo " --version=VERSION OpenSSL version to build (defaults to ${DEFAULTVERSION})"
@ -227,9 +227,9 @@ case $i in
--ec-nistp-64-gcc-128) --ec-nistp-64-gcc-128)
CONFIG_ENABLE_EC_NISTP_64_GCC_128="true" CONFIG_ENABLE_EC_NISTP_64_GCC_128="true"
;; ;;
--disable-bitcode) #--disable-bitcode)
CONFIG_DISABLE_BITCODE="true" # CONFIG_DISABLE_BITCODE="true"
;; # ;;
-h|--help) -h|--help)
echo_help echo_help
exit exit