@nativescript/ios 8.6.4-next.2024-01-31-7728654463 → 8.7.0-alpha.0
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.
- package/framework/__PROJECT_NAME__.xcodeproj/project.pbxproj +2 -2
- package/framework/internal/XCFrameworks.zip +0 -0
- package/framework/internal/metadata-generator-arm64/bin/build-step-metadata-generator.py +6 -0
- package/framework/internal/metadata-generator-x86_64/bin/build-step-metadata-generator.py +6 -0
- package/framework/internal/nsld.sh +5 -3
- package/package.json +1 -1
|
@@ -342,7 +342,7 @@
|
|
|
342
342
|
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
|
343
343
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
344
344
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
345
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
345
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
346
346
|
ONLY_ACTIVE_ARCH = YES;
|
|
347
347
|
SDKROOT = iphoneos;
|
|
348
348
|
STRIP_SWIFT_SYMBOLS = NO;
|
|
@@ -395,7 +395,7 @@
|
|
|
395
395
|
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
|
396
396
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
397
397
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
398
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
398
|
+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
|
|
399
399
|
SDKROOT = iphoneos;
|
|
400
400
|
STRIP_SWIFT_SYMBOLS = NO;
|
|
401
401
|
SUPPORTS_UIKITFORMAC = YES;
|
|
Binary file
|
|
@@ -174,5 +174,11 @@ def generate_metadata(arch):
|
|
|
174
174
|
|
|
175
175
|
|
|
176
176
|
for arch in env("ARCHS").split():
|
|
177
|
+
# skip metadata generation for architectures different than the one specified in the command line
|
|
178
|
+
# in case the command line argument is not specified, generate metadata for all architectures
|
|
179
|
+
if len(sys.argv) >= 2 and sys.argv[1].lower() != arch.lower():
|
|
180
|
+
print("Skipping metadata generation for " + arch)
|
|
181
|
+
continue
|
|
182
|
+
|
|
177
183
|
print("Generating metadata for " + arch)
|
|
178
184
|
generate_metadata(arch)
|
|
@@ -174,5 +174,11 @@ def generate_metadata(arch):
|
|
|
174
174
|
|
|
175
175
|
|
|
176
176
|
for arch in env("ARCHS").split():
|
|
177
|
+
# skip metadata generation for architectures different than the one specified in the command line
|
|
178
|
+
# in case the command line argument is not specified, generate metadata for all architectures
|
|
179
|
+
if len(sys.argv) >= 2 and sys.argv[1].lower() != arch.lower():
|
|
180
|
+
print("Skipping metadata generation for " + arch)
|
|
181
|
+
continue
|
|
182
|
+
|
|
177
183
|
print("Generating metadata for " + arch)
|
|
178
184
|
generate_metadata(arch)
|
|
@@ -44,17 +44,19 @@ function GEN_MODULEMAP() {
|
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
function GEN_METADATA() {
|
|
47
|
+
TARGET_ARCH=$1
|
|
47
48
|
set -e
|
|
48
49
|
cpu_arch=$(uname -m)
|
|
49
50
|
pushd "$SRCROOT/internal/metadata-generator-${cpu_arch}/bin"
|
|
50
|
-
./build-step-metadata-generator.py
|
|
51
|
+
./build-step-metadata-generator.py $TARGET_ARCH
|
|
51
52
|
popd
|
|
52
53
|
}
|
|
53
54
|
|
|
54
55
|
# Workaround for ARCH being set to `undefined_arch` here. Extract it from command line arguments.
|
|
55
|
-
|
|
56
|
+
TARGET_ARCH=$(getArch "$@")
|
|
57
|
+
GEN_MODULEMAP $TARGET_ARCH
|
|
56
58
|
printf "Generating metadata..."
|
|
57
|
-
GEN_METADATA
|
|
59
|
+
GEN_METADATA $TARGET_ARCH
|
|
58
60
|
DELETE_SWIFT_MODULES_DIR
|
|
59
61
|
NS_LD="${NS_LD:-"$TOOLCHAIN_DIR/usr/bin/clang"}"
|
|
60
62
|
$NS_LD "$@"
|