Changes between Initial Version and Version 1 of Ticket #1788, comment 3


Ignore:
Timestamp:
09/27/21 22:22:55 (3 years ago)
Author:
evhan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1788, comment 3

    initial v1  
    1 Built-in libraries are already filtered out from the set of required libraries when generating the link file in batch-driver.scm, using `chicken.load#core-unit?`. It seems that may simply not go far enough, and it may be enough to add `builtin-features` to that check (haven't been able to test yet though).
     1Built-in libraries are already filtered out from the set of required libraries when generating the link file in `batch-driver.scm`, using `chicken.load#core-unit?`. It seems that may simply not go far enough, and it may be enough to add `builtin-features` to that check (haven't been able to test yet though).
     2
     3To be clear though I don't think it's a problem that the identifier is ending up in `required-libraries`, only that it's being included in the link file. That list collects everything for which a `##core#require` is generated, and any smarts (noops/rewriting/etc.) is applied later.