1
1
# Boost C++ for iOS and Mac OS X (Intel & Apple Silicon M1) & Catalyst - arm64 / x86_64
2
2
3
- Supported version: 1.82 .0 (use the appropriate tag to select the version)
3
+ Supported version: 1.83 .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 and Mac OS X & Catalyst applications.
6
- The latest supported Boost version is taken from: https://boostorg.jfrog.io/artifactory/main/release/1.82 .0/source/boost_1_82_0 .tar.bz2
6
+ The latest supported Boost version is taken from: https://boostorg.jfrog.io/artifactory/main/release/1.83 .0/source/boost_1_83_0 .tar.bz2
7
7
8
8
## Building libraries
9
9
atomic, chrono, container, context, contract, coroutine, date_time, exception, fiber, filesystem, graph, iostreams, json, locale, log, math, nowide, program_options, random, regex, serialization, stacktrace, system, test, thread, timer, type_erasure, url, wave
@@ -25,7 +25,7 @@ graph_parallel, mpi, python
25
25
- Manually
26
26
```
27
27
# clone the repo
28
- git clone -b 1.82 .0 https://github.com/apotocki/boost-iosx
28
+ git clone -b 1.83 .0 https://github.com/apotocki/boost-iosx
29
29
30
30
# build libraries
31
31
cd boost-iosx
@@ -37,14 +37,14 @@ graph_parallel, mpi, python
37
37
- Use cocoapods. Add the following lines into your project's Podfile:
38
38
```
39
39
use_frameworks!
40
- pod 'boost-iosx', '~> 1.82 .0'
40
+ pod 'boost-iosx', '~> 1.83 .0'
41
41
# or optionally more precisely e.g.:
42
- # pod 'boost-iosx', :git => 'https://github.com/apotocki/boost-iosx', :tag => '1.82 .0.0'
42
+ # pod 'boost-iosx', :git => 'https://github.com/apotocki/boost-iosx', :tag => '1.83 .0.0'
43
43
```
44
44
If you want to use particular boost libraries, specify them as in the following example for log and program_options libraries:
45
45
```
46
- pod 'boost-iosx/log', '~> 1.82 .0'
47
- pod 'boost-iosx/program_options', '~> 1.82 .0'
46
+ pod 'boost-iosx/log', '~> 1.83 .0'
47
+ pod 'boost-iosx/program_options', '~> 1.83 .0'
48
48
# note: Some libraries have dependencies on other Boost libraries. In that case, you should explicitly add all their dependencies to your Podfile.
49
49
```
50
50
Then install new dependencies:
0 commit comments