You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.
At the moment, an ObjectFile Module requires a SourceFile Module.
This is in order to support generate sources.
But that's the exception rather than the rule.
For a library/application built entirely from N sources, there will be 2N+2 modules (N sources, N object files, 1 object file collection, 1 library/application), and N of those do nothing, as they just reside on disk. They occupy memory, and occupy runtime.
If the ObjectFile initialisation could be either/or; either a Source Module (for generated sources) that NEED to do something, or just a path, this would reduce overhead.
The text was updated successfully, but these errors were encountered:
At the moment, an ObjectFile Module requires a SourceFile Module.
This is in order to support generate sources.
But that's the exception rather than the rule.
For a library/application built entirely from N sources, there will be 2N+2 modules (N sources, N object files, 1 object file collection, 1 library/application), and N of those do nothing, as they just reside on disk. They occupy memory, and occupy runtime.
If the ObjectFile initialisation could be either/or; either a Source Module (for generated sources) that NEED to do something, or just a path, this would reduce overhead.
The text was updated successfully, but these errors were encountered: