https://kotlinlang.org logo
m

martmists

06/30/2023, 1:08 PM
Running into an issue with Compose wasm running out of memory, even with 16GB of memory allocated to gradle. My only code is an empty
fun main()
.
Never mind, I didn't realize
kotlin.daemon.jvmargs
was separate from
org.gradle.jvmargs
👍 1
e

eygraber

06/30/2023, 2:04 PM
I think the Kotlin daemon inherits the settings from gradle if they aren't specified
m

martmists

06/30/2023, 2:43 PM
It doesn't seem to; I hadn't specified it but org.gradle.jvmargs was set to 16GB; after setting both to 2G it works just fine
3 Views