@@ -7,7 +7,7 @@ internal fun CompileTarget.os() = when(this) {
7
7
CompileTarget .iosArm64 -> " iphoneos"
8
8
CompileTarget .iosSimulatorArm64 -> " iphonesimulator"
9
9
CompileTarget .watchosX64 -> " watchsimulator"
10
- CompileTarget .watchosArm64 -> " watchos"
10
+ CompileTarget .watchosArm64, CompileTarget .watchosDeviceArm64 -> " watchos"
11
11
CompileTarget .watchosSimulatorArm64 -> " watchsimulator"
12
12
CompileTarget .tvosX64 -> " appletvsimulator"
13
13
CompileTarget .tvosArm64 -> " appletvos"
@@ -22,6 +22,7 @@ internal fun CompileTarget.arch() = when(this) {
22
22
CompileTarget .iosSimulatorArm64 -> " arm64"
23
23
CompileTarget .watchosX64 -> " x86_64"
24
24
CompileTarget .watchosArm64 -> " arm64"
25
+ CompileTarget .watchosDeviceArm64 -> " arm64"
25
26
CompileTarget .watchosSimulatorArm64 -> " arm64"
26
27
CompileTarget .tvosX64 -> " x86_64"
27
28
CompileTarget .tvosArm64 -> " arm64"
@@ -40,7 +41,7 @@ internal fun CompileTarget.simulatorSuffix() = when(this) {
40
41
CompileTarget .iosArm64 -> " "
41
42
CompileTarget .iosSimulatorArm64 -> " -simulator"
42
43
CompileTarget .watchosX64 -> " -simulator"
43
- CompileTarget .watchosArm64 -> " "
44
+ CompileTarget .watchosArm64, CompileTarget .watchosDeviceArm64 -> " "
44
45
CompileTarget .watchosSimulatorArm64 -> " -simulator"
45
46
CompileTarget .tvosX64 -> " -simulator"
46
47
CompileTarget .tvosArm64 -> " "
@@ -52,7 +53,7 @@ internal fun CompileTarget.simulatorSuffix() = when(this) {
52
53
internal fun CompileTarget.linkerPlatformVersionName () = when (this ) {
53
54
CompileTarget .iosArm64 -> " platform_version ios"
54
55
CompileTarget .iosX64, CompileTarget .iosSimulatorArm64 -> " platform_version ios-simulator"
55
- CompileTarget .watchosArm64 -> " platform_version watchos"
56
+ CompileTarget .watchosArm64, CompileTarget .watchosDeviceArm64 -> " platform_version watchos"
56
57
CompileTarget .watchosX64, CompileTarget .watchosSimulatorArm64 -> " platform_version watchos-simulator"
57
58
CompileTarget .tvosArm64 -> " platform_version tvos"
58
59
CompileTarget .tvosX64, CompileTarget .tvosSimulatorArm64 -> " platform_version tvos-simulator"
@@ -65,6 +66,7 @@ internal fun CompileTarget.linkerMinOsVersionName() = when(this) {
65
66
CompileTarget .iosSimulatorArm64 -> " ios_simulator_version_min"
66
67
CompileTarget .watchosX64 -> " watchos_simulator_version_min"
67
68
CompileTarget .watchosArm64 -> " watchos_version_min"
69
+ CompileTarget .watchosDeviceArm64 -> " watchos_version_min"
68
70
CompileTarget .watchosSimulatorArm64 -> " watchos_simulator_version_min"
69
71
CompileTarget .tvosX64 -> " tvos_simulator_version_min"
70
72
CompileTarget .tvosArm64 -> " tvos_version_min"
0 commit comments