|
1 | 1 | # Boost C++ for iOS, watchOS, tvOS, visionOS, macOS, Catalyst, Simulators - Intel(x86_64) / Apple Silicon(arm64)
|
2 | 2 |
|
3 |
| -Supported version: 1.88.0 (use the appropriate tag to select the version) |
| 3 | +Supported version: 1.89.0 (use the appropriate tag to select the version) |
4 | 4 |
|
5 | 5 | This repo provides a universal script for building static Boost C++ libraries for use in iOS, watchOS, tvOS, visionOS, and macOS & Catalyst applications.
|
6 | 6 |
|
@@ -50,7 +50,7 @@ graph_parallel, mpi, python
|
50 | 50 | # Build Manually
|
51 | 51 | ```
|
52 | 52 | # clone the repo
|
53 |
| - git clone -b 1.88.0 https://github.com/apotocki/boost-iosx |
| 53 | + git clone -b 1.89.0 https://github.com/apotocki/boost-iosx |
54 | 54 |
|
55 | 55 | # build libraries
|
56 | 56 | cd boost-iosx
|
@@ -98,14 +98,14 @@ scripts/build.sh -p=ios,iossim-x86_64 --rebuild
|
98 | 98 | Add the following lines into your project's Podfile:
|
99 | 99 | ```
|
100 | 100 | use_frameworks!
|
101 |
| - pod 'boost-iosx', '~> 1.88.0' |
| 101 | + pod 'boost-iosx', '~> 1.89.0' |
102 | 102 | # or optionally more precisely e.g.:
|
103 |
| - # pod 'boost-iosx', :git => 'https://github.com/apotocki/boost-iosx', :tag => '1.88.0.2' |
| 103 | + # pod 'boost-iosx', :git => 'https://github.com/apotocki/boost-iosx', :tag => '1.89.0.0' |
104 | 104 | ```
|
105 | 105 | If you want to use specific boost libraries, specify them as in the following example for log and program_options libraries:
|
106 | 106 | ```
|
107 |
| - pod 'boost-iosx/log', '~> 1.88.0' |
108 |
| - pod 'boost-iosx/program_options', '~> 1.88.0' |
| 107 | + pod 'boost-iosx/log', '~> 1.89.0' |
| 108 | + pod 'boost-iosx/program_options', '~> 1.89.0' |
109 | 109 | # Note: Some libraries depend on other Boost libraries. In this case, you should explicitly add all their dependencies to your Podfile.
|
110 | 110 | ```
|
111 | 111 | Then install new dependencies:
|
|
0 commit comments