Skip to content

Commit 8b8c4f8

Browse files
authored
Bring back linuxArm32Hfp target because it is deprecated, but not removed yet. (#2505)
1 parent 79bbd4c commit 8b8c4f8

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

gradle/configure-source-sets.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ kotlin {
147147
}
148148
}
149149

150-
def targetsWithoutTestRunners = ["linuxArm64"]
150+
def targetsWithoutTestRunners = ["linuxArm64", "linuxArm32Hfp"]
151151
configure(targets) {
152152
// Configure additional binaries to run tests in the background
153153
if (["macos", "linux", "mingw"].any { name.startsWith(it) && !targetsWithoutTestRunners.contains(name) }) {

gradle/native-targets.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ kotlin {
3737
androidNativeX86()
3838
androidNativeX64()
3939
watchosDeviceArm64()
40+
41+
// Deprecated, but not removed
42+
linuxArm32Hfp()
4043
}
4144
}
4245
}

0 commit comments

Comments
 (0)