Hey I’m wondering what it would mean for a multi-m...
# kotlin-native
b
Hey I’m wondering what it would mean for a multi-module project where one of the modules has
kotlin.native.binary.memoryModel=experimental
and not the other ones? Would that even make any sense?
j
Not exactly the same thing but there'll be cases where that's enabled and project is still using libraries that aren't using it....a possibly useful thing to also enable in that case is
kotlin.native.binary.freezing=disabled
re. multi-module case, I think that setting is normally done at a project wide level
b
oh thanks for
kotlin.native.binary.freezing=disabled
, I missed it in the doc, that helps