Anyone knows why k/n compile and link tasks are ru...
# kotlin-native
h
Anyone knows why k/n compile and link tasks are running sequentually with gradle parallelism enabled? #gradle
d
The compiler never supported parallelism I think. It worked before because the compiler was ran out of process but now it's run in process (because performance).
h
What kind of performance if eight tasks(in my case) are rinning sequentually when the could be ran in parallel? Hope this is not intened behaviour
d
It improves one of compilations and some cases of iterative builds.
s
My build is actually faster with 1.4-M2 over 1.4-M1 even with parallelism disabled
😮 2
d
I don't think they intended to permanently slow down sequential tasks like yours. They'll fix it soon.