From 158e4462e85b3747449af5aa9a014c05769e1349 Mon Sep 17 00:00:00 2001 From: Oleksandr Karpovich Date: Tue, 8 Jul 2025 15:21:19 +0200 Subject: [PATCH] Use new exception handling proposal for k/wasm targets (#5359) Just adding a compilation flag to use the new proposal. ## Testing N/A ## Release Notes N/A --- benchmarks/multiplatform/benchmarks/build.gradle.kts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/benchmarks/multiplatform/benchmarks/build.gradle.kts b/benchmarks/multiplatform/benchmarks/build.gradle.kts index c0941314e4..c8a14d5adb 100644 --- a/benchmarks/multiplatform/benchmarks/build.gradle.kts +++ b/benchmarks/multiplatform/benchmarks/build.gradle.kts @@ -55,6 +55,16 @@ kotlin { } } browser() + + binaries.configureEach { + compilation.compileTaskProvider.configure { + compilerOptions { + freeCompilerArgs.apply { + add("-Xwasm-use-new-exception-proposal") + } + } + } + } } sourceSets {