commit
cce9b09d10
|
@ -28,6 +28,7 @@ If you have problems building for arm64 please uninstall MacPorts (see [#28](htt
|
||||||
* <http://www.x2on.de/2010/07/13/tutorial-iphone-app-with-compiled-openssl-1-0-0a-library/>
|
* <http://www.x2on.de/2010/07/13/tutorial-iphone-app-with-compiled-openssl-1-0-0a-library/>
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
|
* 2016-09-28: OpenSSL 1.0.2j
|
||||||
* 2016-09-22: OpenSSL 1.0.2i
|
* 2016-09-22: OpenSSL 1.0.2i
|
||||||
* 2016-09-18: Xcode 8 support, iOS 10.0, Add command line options, Optimize build
|
* 2016-09-18: Xcode 8 support, iOS 10.0, Add command line options, Optimize build
|
||||||
* 2016-08-09: Xcode 7.3 support, iOS 9.3
|
* 2016-08-09: Xcode 7.3 support, iOS 9.3
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
# -u Attempt to use undefined variable outputs error message, and forces an exit
|
# -u Attempt to use undefined variable outputs error message, and forces an exit
|
||||||
set -u
|
set -u
|
||||||
|
|
||||||
DEFAULTVERSION="1.0.2i" # Default version in case no version is specified
|
DEFAULTVERSION="1.0.2j" # Default version in case no version is specified
|
||||||
IOS_MIN_SDK_VERSION="7.0" # Minimum iOS SDK version to build for
|
IOS_MIN_SDK_VERSION="7.0" # Minimum iOS SDK version to build for
|
||||||
TVOS_MIN_SDK_VERSION="9.0" # Minimum tvOS SDK version to build for
|
TVOS_MIN_SDK_VERSION="9.0" # Minimum tvOS SDK version to build for
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@ echo "Created $FWNAME.framework"
|
||||||
check_bitcode=`otool -arch arm64 -l $FWNAME.framework/$FWNAME | grep __bitcode`
|
check_bitcode=`otool -arch arm64 -l $FWNAME.framework/$FWNAME | grep __bitcode`
|
||||||
if [ -z "$check_bitcode" ]
|
if [ -z "$check_bitcode" ]
|
||||||
then
|
then
|
||||||
echo "INFO: $FWNAME.framework doesn't contains Bitcode"
|
echo "INFO: $FWNAME.framework doesn't contain Bitcode"
|
||||||
else
|
else
|
||||||
echo "INFO: $FWNAME.framework contains Bitcode"
|
echo "INFO: $FWNAME.framework contains Bitcode"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue