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). |
| 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). |
| 2 | |
| 3 | To 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. |