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
+2-2
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ The build script accepts several arguments to adjust versions and toggle feature
28
28
-e Compile with OpenSSL engine support
29
29
-b Compile without bitcode
30
30
-m Compile Mac Catalyst library
31
-
-u <version> Mac Catalyst iOS min target version (default 13.0)
31
+
-u <version> Mac Catalyst iOS min target version (default 15.0)
32
32
-3 Compile with SSLv3
33
33
-s <version> iOS min target version (default 8.0)
34
34
-t <version> tvOS min target version (default 9.0)
@@ -40,7 +40,7 @@ The build script accepts several arguments to adjust versions and toggle feature
40
40
41
41
_OpenSSL Engine Note: By default, the OpenSSL source disables ENGINE support for iOS builds. To force this active use this and the static engine support will be included:_`./build.sh -e`
42
42
43
-
_Mac Catalyst Note: Static libraries can be built for Mac Catalyst. This requires a current version of Xcode (11.6+). To build Catalyst binaries use the switch:_`./build.sh -m`
43
+
_Mac Catalyst Note: Static libraries can be built for Mac Catalyst. This often requires that you specify an recent Mac Catalyst iOS target version (e.g. 15.0). To build Catalyst binaries use the -m switch and specify the iOS target with -u:_`./build.sh -m -u 15.0`
44
44
45
45
Minimum macOS, iOS and tvOS target build versions are set by default in the build scripts or can be specified using command line arguments indicated above. Apple Silicon arm64 macOS targets will need to be 11.0 or higher.
Copy file name to clipboardExpand all lines: example/iOS Test App/README.md
+3-6
Original file line number
Diff line number
Diff line change
@@ -7,14 +7,11 @@ This is a test app for iOS using the curl, openssl and nghttp2 libraries.
7
7
Build the libraries with Mac Catalyst support:
8
8
9
9
```bash
10
-
# For x86-64 Build Nodes
11
-
./build.sh -m
12
-
13
-
# For arm64 (m1) Build nodes
14
-
./build.sh
10
+
# Build Mac Catalyst Support for iOS Target 15.0
11
+
./build.sh -m -u 15.0
15
12
```
16
13
17
-
Load and build the project using Xcode (tested with version 8.2). Example lib binaries (xcframework)and header files are included but will be replaced when you run the build script.
14
+
Load and build the project using Xcode. Example lib binaries (xcframework)and header files are included but will be replaced when you run the build script.
0 commit comments