Build: remove obsolete -Xir-binary-with-stable-abi

It's no longer needed after eef06cded3 and 3e3ffee2a0.
This commit is contained in:
Alexander Udalov
2020-12-30 18:00:10 +01:00
parent ee2ae0c471
commit 41c4693ebf
2 changed files with 1 additions and 7 deletions
-1
View File
@@ -445,7 +445,6 @@ allprojects {
if (useJvmIrBackend) {
useIR = true
freeCompilerArgs += "-Xir-binary-with-stable-abi"
}
}
}
+1 -6
View File
@@ -198,12 +198,7 @@ ext.configureLegacyPublishing = { Project project ->
ext.configureJvmIrBackend = { Project project ->
project.tasks.withType(KotlinCompile.class) { task ->
task.kotlinOptions {
if (project.kotlinBuildProperties.useIRForLibraries) {
useIR = true
freeCompilerArgs += ["-Xir-binary-with-stable-abi"]
} else {
useIR = false
}
useIR = project.kotlinBuildProperties.useIRForLibraries
}
}
}