File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 3
3
archiveVersion = 1;
4
4
classes = {
5
5
};
6
- objectVersion = 50 ;
6
+ objectVersion = 54 ;
7
7
objects = {
8
8
9
9
/* Begin PBXBuildFile section */
1157
1157
isa = PBXNativeTarget;
1158
1158
buildConfigurationList = 147494DB201F9A29006D1CF8 /* Build configuration list for PBXNativeTarget "BitcoinKit" */;
1159
1159
buildPhases = (
1160
- 292B636820E7BF7000F5040A /* SwiftLint */,
1161
1160
1482B628202954CC0098B612 /* Build Libraries */,
1161
+ 292B636820E7BF7000F5040A /* SwiftLint */,
1162
1162
147494C2201F9A29006D1CF8 /* Sources */,
1163
1163
147494C3201F9A29006D1CF8 /* Frameworks */,
1164
1164
147494C4201F9A29006D1CF8 /* Headers */,
1253
1253
/* Begin PBXShellScriptBuildPhase section */
1254
1254
1482B628202954CC0098B612 /* Build Libraries */ = {
1255
1255
isa = PBXShellScriptBuildPhase;
1256
+ alwaysOutOfDate = 1;
1256
1257
buildActionMask = 2147483647;
1257
1258
files = (
1258
1259
);
1264
1265
runOnlyForDeploymentPostprocessing = 0;
1265
1266
shellPath = /bin/sh;
1266
1267
shellScript = "if [ ! -d \"$SRCROOT/Libraries/secp256k1/lib\" ] || [ ! -d \"$SRCROOT/Libraries/openssl/lib\" ]; then\n env -i PATH=$PATH sh \"$SRCROOT/setup/build_libraries.sh\"\nfi\n";
1267
- showEnvVarsInLog = 0;
1268
1268
};
1269
1269
292B636820E7BF7000F5040A /* SwiftLint */ = {
1270
1270
isa = PBXShellScriptBuildPhase;
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
set -ex
3
3
4
- SCRIPT_DIR=" ` pwd ` / ` dirname $0 ` "
4
+ SCRIPT_DIR=" ` dirname $0 ` "
5
5
OPENSSL_VERSION=1.0.2n
6
6
7
7
TDIR=` mktemp -d`
@@ -17,12 +17,18 @@ cd openssl-$OPENSSL_VERSION
17
17
sh " $SCRIPT_DIR /build_crypto_impl.sh" iphoneos arm64
18
18
sh " $SCRIPT_DIR /build_crypto_impl.sh" iphoneos armv7s
19
19
sh " $SCRIPT_DIR /build_crypto_impl.sh" iphoneos armv7
20
+ sh " $SCRIPT_DIR /build_crypto_impl.sh" iphonesimulator i386
21
+ sh " $SCRIPT_DIR /build_crypto_impl.sh" iphonesimulator x86_64
22
+
23
+
20
24
21
25
22
26
mkdir -p " $SCRIPT_DIR /../Libraries/openssl/lib"
23
27
xcrun lipo -create .build/iphoneos/arm64/libcrypto.a \
24
28
.build/iphoneos/armv7s/libcrypto.a \
25
29
.build/iphoneos/armv7/libcrypto.a \
30
+ .build/iphonesimulator/x86_64/libcrypto.a \
31
+ .build/iphonesimulator/i386/libcrypto.a \
26
32
-o " $SCRIPT_DIR /../Libraries/openssl/lib/libcrypto.a"
27
33
cp -rf $TDIR /openssl-$OPENSSL_VERSION /include " $SCRIPT_DIR /../Libraries/openssl/"
28
34
You can’t perform that action at this time.
0 commit comments