Build: when using JVM IR, produce stable binaries

This is needed to allow non-JVM-IR modules depend on the modules
compiled by JVM IR. This also allows us to enable JVM IR in our build by
default now, without introducing errors to all external usages of our
compiler and other artifacts that we publish.
This commit is contained in:
Alexander Udalov
2020-10-14 22:09:47 +02:00
parent 04a4f9cde6
commit 29d8730964
+1
View File
@@ -443,6 +443,7 @@ allprojects {
if (useJvmIrBackend) {
useIR = true
freeCompilerArgs += "-Xir-binary-with-stable-abi"
}
}
}