File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1515 - name : Build
1616 run : |
1717 scripts/build.sh
18- for i in frameworks/*.xcframework/; do cd frameworks && zip -9 -r -r "$(basename -- $i).zip" $(basename -- $i) & done; wait
18+ for i in frameworks/*.xcframework/; do cd frameworks && zip -9 -r "$(basename -- $i).zip" $(basename -- $i) & done; wait
1919 cd frameworks
2020 mv Headers include
2121 zip -9 -r include.zip include
Original file line number Diff line number Diff line change 11## OpenSSL for iOS and Mac OS X (Intel & Apple Silicon M1) & Catalyst - arm64 / x86_64
22
3- Supported version: 1.1.1s
3+ Supported version: 1.1.1t
44
55This repo provides a universal script for building static OpenSSL libraries for use in iOS and Mac OS X applications.
6- The actual library version is taken from https://github.com/openssl/openssl with tag 'OpenSSL_1_1_1s '
6+ The actual library version is taken from https://github.com/openssl/openssl with tag 'OpenSSL_1_1_1t '
77
88## Prerequisites
99 1 ) Xcode must be installed because xcodebuild is used to create xcframeworks
@@ -14,7 +14,7 @@ The actual library version is taken from https://github.com/openssl/openssl with
1414 - Manually
1515```
1616 # clone the repo
17- git clone -b 1.1.1s https://github.com/apotocki/openssl-iosx
17+ git clone -b 1.1.1t https://github.com/apotocki/openssl-iosx
1818
1919 # build libraries
2020 cd openssl-iosx
@@ -25,9 +25,9 @@ The actual library version is taken from https://github.com/openssl/openssl with
2525 - Use cocoapods. Add the following lines into your project's Podfile:
2626```
2727 use_frameworks!
28- pod 'openssl-iosx', '~> 1.1.1s '
28+ pod 'openssl-iosx', '~> 1.1.1t '
2929 # or optionally more precisely
30- # pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '1.1.1s.1 '
30+ # pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '1.1.1t.0 '
3131```
3232install new dependency:
3333```
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = "openssl-iosx"
3- s . version = "1.1.1s.1 "
3+ s . version = "1.1.1t.0 "
44 s . summary = "OpenSSL"
55 s . homepage = "https://github.com/apotocki/openssl-iosx"
66 s . license = "Apache"
Original file line number Diff line number Diff line change 55THREAD_COUNT=$( sysctl hw.ncpu | awk ' {print $2}' )
66HOST_ARC=$( uname -m )
77XCODE_ROOT=$( xcode-select -print-path )
8- OPENSSL_VER=OpenSSL_1_1_1s
8+ OPENSSL_VER=OpenSSL_1_1_1t
99# ################# SETUP END
1010# DEVSYSROOT=$XCODE_ROOT/Platforms/iPhoneOS.platform/Developer
1111# SIMSYSROOT=$XCODE_ROOT/Platforms/iPhoneSimulator.platform/Developer
You can’t perform that action at this time.
0 commit comments