You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,15 @@
1
-
## OpenSSL for iOS and Mac OS X (Intel & Apple Silicon M1) & Catalyst - arm64 / x86_64
1
+
## OpenSSL for iOS, visionOS, macOS (Intel & Apple Silicon M1) & Catalyst - arm64 / x86_64
2
2
3
3
Supported version: 3.1.5
4
4
5
-
This repository provides a universal script for building static OpenSSL libraries for use in iOSand macOS applications.
5
+
This repository provides a universal script for building static OpenSSL libraries for use in iOS, visionOS, and macOS & Catalyst applications.
6
6
The actual library version is taken from https://github.com/openssl/openssl with tag 'openssl-3.1.5'
7
7
8
8
## Prerequisites
9
9
1) Xcode must be installed because xcodebuild is used to create xcframeworks
10
10
2)```xcode-select -p``` must point to Xcode app developer directory (by default e.g. /Applications/Xcode.app/Contents/Developer). If it points to CommandLineTools directory you should execute:
11
11
```sudo xcode-select --reset``` or ```sudo xcode-select -s /Applications/Xcode.app/Contents/Developer```
12
+
3) For the creation of visionOS related artifacts and their integration into the resulting xcframeworks, XROS.platform and XRSimulator.platform should be available in the folder: /Applications/Xcode.app/Contents/Developer/Platforms
12
13
13
14
## How to build?
14
15
- Manually
@@ -27,7 +28,7 @@ The actual library version is taken from https://github.com/openssl/openssl with
27
28
use_frameworks!
28
29
pod 'openssl-iosx', '~> 3.1.5'
29
30
# or optionally more precisely
30
-
# pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '3.1.5.0'
31
+
# pod 'openssl-iosx', :git => 'https://github.com/apotocki/openssl-iosx', :tag => '3.1.5.1'
Copy file name to clipboardExpand all lines: openssl-iosx.podspec
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,17 @@
1
1
Pod::Spec.newdo |s|
2
2
s.name="openssl-iosx"
3
-
s.version="3.1.5.0"
4
-
s.summary="OpenSSL"
3
+
s.version="3.1.5.1"
4
+
s.summary="OpenSSL libraries for macOS, iOS, and visionOS, including both arm64 and x86_64 builds for macOS, Mac Catalyst, iOS Simulator, and visionOS Simulator."
0 commit comments