From 29d8730964f10f5e9e561161e86d037393f11781 Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Wed, 14 Oct 2020 22:09:47 +0200 Subject: [PATCH] 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. --- build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/build.gradle.kts b/build.gradle.kts index 22c75698471..cca0a2be505 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -443,6 +443,7 @@ allprojects { if (useJvmIrBackend) { useIR = true + freeCompilerArgs += "-Xir-binary-with-stable-abi" } } }