Can we still configure binaryen options in 2.0.0-R...
# webassembly
r
Can we still configure binaryen options in 2.0.0-RC1 ?
For anyone interested, this works:
Copy code
tasks.withType<BinaryenExec> {
    binaryenArgs = mutableListOf(
        "--enable-nontrapping-float-to-int",
        "--enable-gc",
        "--enable-reference-types",
        "--enable-exception-handling",
        "--enable-bulk-memory",
        "--inline-functions-with-loops",
        "--traps-never-happen",
        "--fast-math",
        "--closed-world",
        "--metrics",
        "-O3", "--gufa", "--metrics",
        "-O3", "--gufa", "--metrics",
        "-O3", "--gufa", "--metrics",
    )
}