summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonid Startsev <sandwwraith@users.noreply.github.com>2023-11-16 16:51:59 +0100
committerGitHub <noreply@github.com>2023-11-16 16:51:59 +0100
commit8b8c4f8324c19f0219015b60974111dffe1e0376 (patch)
tree472c796bbac94a2e8346d43d73f0515cca5b9de1
parent79bbd4cc0f2d427c0c7fd89c536ddc1bbab9badf (diff)
downloadkotlinx.serialization-8b8c4f8324c19f0219015b60974111dffe1e0376.tar.gz
Bring back linuxArm32Hfp target because it is deprecated, but not removed yet. (#2505)
-rw-r--r--gradle/configure-source-sets.gradle2
-rw-r--r--gradle/native-targets.gradle3
2 files changed, 4 insertions, 1 deletions
diff --git a/gradle/configure-source-sets.gradle b/gradle/configure-source-sets.gradle
index 532e2cae..e763580a 100644
--- a/gradle/configure-source-sets.gradle
+++ b/gradle/configure-source-sets.gradle
@@ -147,7 +147,7 @@ kotlin {
}
}
- def targetsWithoutTestRunners = ["linuxArm64"]
+ def targetsWithoutTestRunners = ["linuxArm64", "linuxArm32Hfp"]
configure(targets) {
// Configure additional binaries to run tests in the background
if (["macos", "linux", "mingw"].any { name.startsWith(it) && !targetsWithoutTestRunners.contains(name) }) {
diff --git a/gradle/native-targets.gradle b/gradle/native-targets.gradle
index 5b7f8a40..373aeba6 100644
--- a/gradle/native-targets.gradle
+++ b/gradle/native-targets.gradle
@@ -37,6 +37,9 @@ kotlin {
androidNativeX86()
androidNativeX64()
watchosDeviceArm64()
+
+ // Deprecated, but not removed
+ linuxArm32Hfp()
}
}
}