unfortunately i get "w: Flag is not supported by this version of the compiler: -Xmx128m" when i try to give the JS(!) compiler more heap space 😕
(im passing it to the
freeCompilerArgs
)
g
gildor
11/16/2020, 11:58 PM
You should pass it to Gradle, not to compiler
gildor
11/16/2020, 11:59 PM
Just follow the doc which Casey shared above
t
thana
11/17/2020, 7:25 AM
yeah that's what i tried first - didn't worked out. sorry, should have mentioned that.
But will try again today, maybe it was too late yesterday
thana
11/17/2020, 8:14 AM
yep it was clearly too late. i only saw the default of 64mb for the client jvm - now it's a really bad idea to "raise" the heap size of the compilation vm to 256mb when its actual default is 512mb 🤦♂️
using 1g now does the trick. thank you!