Remix.run Logo
ants_everywhere 3 days ago

> All Zig code is in one compilation unit

How do incremental compilation and distributed compilation work?

pyrolistical 3 days ago | parent | next [-]

Subtrees should be cacheable and parallelizable?

wavemode 3 days ago | parent | prev [-]

Single compilation unit does not imply that the results of the compilation of the different parts of that unit cannot be cached.

ants_everywhere 3 days ago | parent [-]

I see. So in some sense the actual unit of compilation is smaller and units can be combined or "linked" even if compiled at different times on different machines?