1
1
#! /usr/bin/env bash
2
2
set -eEu
3
3
4
+ helpFunction () {
5
+ echo " "
6
+ echo " Usage: $0 -only_ios"
7
+ echo -e " \t-i Option to build only for iOS. Default will build for all targets."
8
+ exit 1
9
+ }
10
+
11
+ only_ios=' false'
12
+
13
+ while getopts ' :i' ' opt' ; do
14
+ case ${opt} in
15
+ ' i' ) only_ios=' true' ;;
16
+ ? ) helpFunction ;;
17
+ esac
18
+ done
19
+
4
20
cd " $( dirname " $0 " ) "
5
21
6
22
# Path to the repo root
@@ -22,52 +38,63 @@ TARGET_CRATE=matrix-sdk-crypto-ffi
22
38
# Required by olm-sys crate
23
39
export IOS_SDK_PATH=` xcrun --show-sdk-path --sdk iphoneos`
24
40
25
- # iOS
26
- echo -e " Building for iOS [1/5]"
27
- cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target " aarch64-apple-ios"
28
-
29
- # MacOS
30
- echo -e " \nBuilding for macOS (Apple Silicon) [2/5]"
31
- cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target " aarch64-apple-darwin"
32
- echo -e " \nBuilding for macOS (Intel) [3/5]"
33
- cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target " x86_64-apple-darwin"
34
-
35
- # iOS Simulator
36
- echo -e " \nBuilding for iOS Simulator (Apple Silicon) [4/5]"
37
- cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target " aarch64-apple-ios-sim"
38
- echo -e " \nBuilding for iOS Simulator (Intel) [5/5]"
39
- cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target " x86_64-apple-ios"
41
+ if ${only_ios} ; then
42
+ # iOS
43
+ echo -e " Building only for iOS"
44
+ cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target " aarch64-apple-ios"
45
+ else
46
+ # iOS
47
+ echo -e " Building for iOS [1/5]"
48
+ cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target " aarch64-apple-ios"
49
+
50
+ # MacOS
51
+ echo -e " \nBuilding for macOS (Apple Silicon) [2/5]"
52
+ cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target " aarch64-apple-darwin"
53
+ echo -e " \nBuilding for macOS (Intel) [3/5]"
54
+ cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target " x86_64-apple-darwin"
55
+
56
+ # iOS Simulator
57
+ echo -e " \nBuilding for iOS Simulator (Apple Silicon) [4/5]"
58
+ cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target " aarch64-apple-ios-sim"
59
+ echo -e " \nBuilding for iOS Simulator (Intel) [5/5]"
60
+ cargo build -p ${TARGET_CRATE} ${REL_FLAG} --target " x86_64-apple-ios"
61
+ fi
40
62
41
63
echo -e " \nCreating XCFramework"
42
64
# Lipo together the libraries for the same platform
43
65
44
- # MacOS
45
- lipo -create \
46
- " ${TARGET_DIR} /x86_64-apple-darwin/${REL_TYPE_DIR} /libmatrix_sdk_crypto_ffi.a" \
47
- " ${TARGET_DIR} /aarch64-apple-darwin/${REL_TYPE_DIR} /libmatrix_sdk_crypto_ffi.a" \
48
- -output " ${GENERATED_DIR} /macos/libmatrix_sdk_crypto_ffi.a"
49
-
50
- # iOS Simulator
51
- lipo -create \
52
- " ${TARGET_DIR} /x86_64-apple-ios/${REL_TYPE_DIR} /libmatrix_sdk_crypto_ffi.a" \
53
- " ${TARGET_DIR} /aarch64-apple-ios-sim/${REL_TYPE_DIR} /libmatrix_sdk_crypto_ffi.a" \
54
- -output " ${GENERATED_DIR} /simulator/libmatrix_sdk_crypto_ffi.a"
66
+ if ! ${only_ios} ; then
67
+ echo " Lipo together the libraries for the same platform"
68
+ # MacOS
69
+ lipo -create \
70
+ " ${TARGET_DIR} /x86_64-apple-darwin/${REL_TYPE_DIR} /libmatrix_sdk_crypto_ffi.a" \
71
+ " ${TARGET_DIR} /aarch64-apple-darwin/${REL_TYPE_DIR} /libmatrix_sdk_crypto_ffi.a" \
72
+ -output " ${GENERATED_DIR} /macos/libmatrix_sdk_crypto_ffi.a"
73
+
74
+ # iOS Simulator
75
+ lipo -create \
76
+ " ${TARGET_DIR} /x86_64-apple-ios/${REL_TYPE_DIR} /libmatrix_sdk_crypto_ffi.a" \
77
+ " ${TARGET_DIR} /aarch64-apple-ios-sim/${REL_TYPE_DIR} /libmatrix_sdk_crypto_ffi.a" \
78
+ -output " ${GENERATED_DIR} /simulator/libmatrix_sdk_crypto_ffi.a"
79
+ fi
55
80
56
81
# Generate uniffi files
57
- cargo uniffi-bindgen generate \
82
+ cd ../matrix-sdk-crypto-ffi && cargo run --bin matrix_sdk_crypto_ffi generate \
58
83
--language swift \
59
- --lib-file " ${TARGET_DIR} /aarch64-apple-ios-sim/${REL_TYPE_DIR} /libmatrix_sdk_crypto_ffi.a" \
60
- --config " ${SRC_ROOT} /bindings/${TARGET_CRATE} /uniffi.toml" \
61
- --out-dir ${GENERATED_DIR} \
62
- " ${SRC_ROOT} /bindings/${TARGET_CRATE} /src/olm.udl"
84
+ --library " ${TARGET_DIR} /aarch64-apple-ios/${REL_TYPE_DIR} /libmatrix_sdk_crypto_ffi.a" \
85
+ --out-dir ${GENERATED_DIR}
63
86
64
87
# Move headers to the right place
65
88
HEADERS_DIR=${GENERATED_DIR} /headers
66
89
mkdir -p ${HEADERS_DIR}
67
90
mv ${GENERATED_DIR} /* .h ${HEADERS_DIR}
68
91
69
- # Rename and move modulemap to the right place
70
- mv ${GENERATED_DIR} /* .modulemap ${HEADERS_DIR} /module.modulemap
92
+ # Rename and merge the modulemap files into a single file to the right place
93
+ for f in ${GENERATED_DIR} /* .modulemap
94
+ do
95
+ cat $f ; echo ;
96
+ done > ${HEADERS_DIR} /module.modulemap
97
+ rm ${GENERATED_DIR} /* .modulemap
71
98
72
99
# Move source files to the right place
73
100
SWIFT_DIR=" ${GENERATED_DIR} /Sources"
@@ -77,15 +104,21 @@ mv ${GENERATED_DIR}/*.swift ${SWIFT_DIR}
77
104
# Build the xcframework
78
105
79
106
if [ -d " ${GENERATED_DIR} /MatrixSDKCryptoFFI.xcframework" ]; then rm -rf " ${GENERATED_DIR} /MatrixSDKCryptoFFI.xcframework" ; fi
80
-
81
- xcodebuild -create-xcframework \
82
- -library " ${TARGET_DIR} /aarch64-apple-ios/${REL_TYPE_DIR} /libmatrix_sdk_crypto_ffi.a" \
83
- -headers ${HEADERS_DIR} \
84
- -library " ${GENERATED_DIR} /macos/libmatrix_sdk_crypto_ffi.a" \
85
- -headers ${HEADERS_DIR} \
86
- -library " ${GENERATED_DIR} /simulator/libmatrix_sdk_crypto_ffi.a" \
87
- -headers ${HEADERS_DIR} \
88
- -output " ${GENERATED_DIR} /MatrixSDKCryptoFFI.xcframework"
107
+ if ${only_ios} ; then
108
+ xcodebuild -create-xcframework \
109
+ -library " ${TARGET_DIR} /aarch64-apple-ios/${REL_TYPE_DIR} /libmatrix_sdk_crypto_ffi.a" \
110
+ -headers ${HEADERS_DIR} \
111
+ -output " ${GENERATED_DIR} /MatrixSDKCryptoFFI.xcframework"
112
+ else
113
+ xcodebuild -create-xcframework \
114
+ -library " ${TARGET_DIR} /aarch64-apple-ios/${REL_TYPE_DIR} /libmatrix_sdk_crypto_ffi.a" \
115
+ -headers ${HEADERS_DIR} \
116
+ -library " ${GENERATED_DIR} /macos/libmatrix_sdk_crypto_ffi.a" \
117
+ -headers ${HEADERS_DIR} \
118
+ -library " ${GENERATED_DIR} /simulator/libmatrix_sdk_crypto_ffi.a" \
119
+ -headers ${HEADERS_DIR} \
120
+ -output " ${GENERATED_DIR} /MatrixSDKCryptoFFI.xcframework"
121
+ fi
89
122
90
123
# Cleanup
91
124
if [ -d " ${GENERATED_DIR} /macos" ]; then rm -rf " ${GENERATED_DIR} /macos" ; fi
0 commit comments