Browse Source

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
pull/5360/head v1.9.0+dev2653
Oleksandr Karpovich 5 months ago committed by GitHub
parent
commit
158e4462e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 10
      benchmarks/multiplatform/benchmarks/build.gradle.kts

10
benchmarks/multiplatform/benchmarks/build.gradle.kts

@ -55,6 +55,16 @@ kotlin { @@ -55,6 +55,16 @@ kotlin {
}
}
browser()
binaries.configureEach {
compilation.compileTaskProvider.configure {
compilerOptions {
freeCompilerArgs.apply {
add("-Xwasm-use-new-exception-proposal")
}
}
}
}
}
sourceSets {

Loading…
Cancel
Save