File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed
__PROJECT_NAME__.xcodeproj Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 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
);
213
214
inputPaths = (
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
227
};
223
228
CD3EAD351B05FF060042DBFC /* NativeScript PostBuild */ = {
224
229
isa = PBXShellScriptBuildPhase;
230
+ alwaysOutOfDate = 1;
225
231
buildActionMask = 2147483647;
226
232
files = (
227
233
);
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
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 */
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments