Skip to content

Commit 7dcbc1c

Browse files
committed
fixed dropped "-fembed-bitcode-marker" ld option (in Xcode 16)
1 parent 152c3bf commit 7dcbc1c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v3
1515
- name: Build
1616
run: |
17-
export ICU4C_RELEASE_LINK=https://github.com/apotocki/icu4c-iosx/releases/download/75.1.1
17+
export ICU4C_RELEASE_LINK=https://github.com/apotocki/icu4c-iosx/releases/download/76.1.0
1818
scripts/build.sh
1919
for i in frameworks/*.xcframework/; do cd frameworks && zip -9 -r "$(basename -- $i).zip" $(basename -- $i) & done; wait
2020
cd frameworks

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ graph_parallel, mpi, python
4040
use_frameworks!
4141
pod 'boost-iosx', '~> 1.86.0'
4242
# or optionally more precisely e.g.:
43-
# pod 'boost-iosx', :git => 'https://github.com/apotocki/boost-iosx', :tag => '1.86.0.1'
43+
# pod 'boost-iosx', :git => 'https://github.com/apotocki/boost-iosx', :tag => '1.86.0.2'
4444
```
4545
If you want to use particular boost libraries, specify them as in the following example for log and program_options libraries:
4646
```

boost-iosx.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "boost-iosx"
3-
s.version = "1.86.0.1"
3+
s.version = "1.86.0.2"
44
s.summary = "Boost C++ libraries for macOS, iOS, and visionOS, including both arm64 and x86_64 builds for macOS, Mac Catalyst, iOS Simulator, and visionOS Simulator."
55
s.homepage = "https://github.com/apotocki/boost-iosx"
66
s.license = "Boost Software License"

scripts/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ if [[ -f tools/build/src/user-config.jam ]]; then
240240
rm -f tools/build/src/user-config.jam
241241
fi
242242
cat >> tools/build/src/user-config.jam <<EOF
243-
using darwin : iossim : clang++ -arch $1 -fembed-bitcode-marker -isysroot $IOSSIMSYSROOT/SDKs/iPhoneSimulator.sdk $2
243+
using darwin : iossim : clang++ -arch $1 -isysroot $IOSSIMSYSROOT/SDKs/iPhoneSimulator.sdk $2
244244
: <striper> <root>$IOSSIMSYSROOT
245245
: <architecture>$(boost_arc $1) <target-os>iphone
246246
;
@@ -260,7 +260,7 @@ if [[ -f tools/build/src/user-config.jam ]]; then
260260
rm -f tools/build/src/user-config.jam
261261
fi
262262
cat >> tools/build/src/user-config.jam <<EOF
263-
using darwin : xrossim : clang++ -arch $1 -fembed-bitcode-marker -isysroot $XROSSIMSYSROOT/SDKs/XRSimulator.sdk $2
263+
using darwin : xrossim : clang++ -arch $1 -isysroot $XROSSIMSYSROOT/SDKs/XRSimulator.sdk $2
264264
: <striper> <root>$XROSSIMSYSROOT
265265
: <architecture>$(boost_arc $1) <target-os>iphone
266266
;

0 commit comments

Comments
 (0)