@nativescript/ios 6.5.5 → 6.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -207,6 +207,7 @@
|
|
|
207
207
|
/* Begin PBXShellScriptBuildPhase section */
|
|
208
208
|
C97FD7AC1ADE5369004DB2A4 /* NativeScript PreBuild */ = {
|
|
209
209
|
isa = PBXShellScriptBuildPhase;
|
|
210
|
+
alwaysOutOfDate = 1;
|
|
210
211
|
buildActionMask = 2147483647;
|
|
211
212
|
files = (
|
|
212
213
|
);
|
|
@@ -214,6 +215,10 @@
|
|
|
214
215
|
);
|
|
215
216
|
name = "NativeScript PreBuild";
|
|
216
217
|
outputPaths = (
|
|
218
|
+
"$CONFIGURATION_BUILD_DIR/metadata-arm64.bin",
|
|
219
|
+
"$CONFIGURATION_BUILD_DIR/metadata-arm64e.bin",
|
|
220
|
+
"$CONFIGURATION_BUILD_DIR/metadata-i386.bin",
|
|
221
|
+
"$CONFIGURATION_BUILD_DIR/metadata-x86_64.bin",
|
|
217
222
|
);
|
|
218
223
|
runOnlyForDeploymentPostprocessing = 0;
|
|
219
224
|
shellPath = /bin/sh;
|
|
@@ -222,6 +227,7 @@
|
|
|
222
227
|
};
|
|
223
228
|
CD3EAD351B05FF060042DBFC /* NativeScript PostBuild */ = {
|
|
224
229
|
isa = PBXShellScriptBuildPhase;
|
|
230
|
+
alwaysOutOfDate = 1;
|
|
225
231
|
buildActionMask = 2147483647;
|
|
226
232
|
files = (
|
|
227
233
|
);
|
|
@@ -232,11 +238,12 @@
|
|
|
232
238
|
);
|
|
233
239
|
runOnlyForDeploymentPostprocessing = 0;
|
|
234
240
|
shellPath = /bin/sh;
|
|
235
|
-
shellScript = "\"$SRCROOT/internal/nativescript-post-build\"";
|
|
241
|
+
shellScript = "\"$SRCROOT/internal/nativescript-post-build\"\n";
|
|
236
242
|
showEnvVarsInLog = 0;
|
|
237
243
|
};
|
|
238
244
|
CD62955B1BB2651D00AE3A93 /* NativeScript PreLink */ = {
|
|
239
245
|
isa = PBXShellScriptBuildPhase;
|
|
246
|
+
alwaysOutOfDate = 1;
|
|
240
247
|
buildActionMask = 2147483647;
|
|
241
248
|
files = (
|
|
242
249
|
);
|
|
@@ -247,7 +254,7 @@
|
|
|
247
254
|
);
|
|
248
255
|
runOnlyForDeploymentPostprocessing = 0;
|
|
249
256
|
shellPath = /bin/sh;
|
|
250
|
-
shellScript = "\"$SRCROOT/internal/nativescript-pre-link\"";
|
|
257
|
+
shellScript = "\"$SRCROOT/internal/nativescript-pre-link\"\n";
|
|
251
258
|
showEnvVarsInLog = 0;
|
|
252
259
|
};
|
|
253
260
|
/* End PBXShellScriptBuildPhase section */
|
|
@@ -1,3 +1,9 @@
|
|
|
1
1
|
#!/usr/bin/env bash
|
|
2
2
|
#Ignore errors while inserting environment variables (some could be readonly)
|
|
3
3
|
(echo "set +e"; echo "set +o posix"; export; echo "set -o posix"; echo "set -e";) > ./.build_env_vars.sh
|
|
4
|
+
|
|
5
|
+
# create temporary empty metadata files for XCode LD/LDPLUSPLUS flag analysis
|
|
6
|
+
for arch in $VALID_ARCHS
|
|
7
|
+
do :
|
|
8
|
+
touch "$CONFIGURATION_BUILD_DIR/metadata-$arch.bin"
|
|
9
|
+
done
|