Skip to content

Commit 8b58c60

Browse files
authored
Align Kotlin Native targets with Kotlin documentation (#2560)
This commit moves the 'linuxX64' target to tier 2 and reorders targets of this tier. References: https://kotlinlang.org/docs/native-target-support.html https://kotlinlang.org/docs/whatsnew1920.html#change-to-our-target-tiers-policy https://youtrack.jetbrains.com/issue/KT-58711
1 parent 41c0bb1 commit 8b58c60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gradle/native-targets.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@ kotlin {
1111

1212
// According to https://kotlinlang.org/docs/native-target-support.html
1313
// Tier 1
14-
linuxX64()
1514
macosX64()
1615
macosArm64()
1716
iosSimulatorArm64()
1817
iosX64()
1918

2019
// Tier 2
20+
linuxX64()
21+
linuxArm64()
2122
watchosSimulatorArm64()
2223
watchosX64()
2324
watchosArm32()
@@ -26,7 +27,6 @@ kotlin {
2627
tvosX64()
2728
tvosArm64()
2829
iosArm64()
29-
linuxArm64()
3030

3131
// Tier 3
3232
mingwX64()

0 commit comments

Comments
 (0)