dlang / dub

Package and build management system for D
MIT License
677 stars 227 forks source link

Dub relinks project that have path-only dependencies #2832

Open Geod24 opened 9 months ago

Geod24 commented 9 months ago

SDC has paths only dependencies, no dependency on the registry, hence a dub.selections.json is useless (empty). However, since it is not present, dub always relinks, as the logic is too naive: https://github.com/dlang/dub/blob/ef0bf9357d04604ebc732b4eca8f59f14f64df64/source/dub/generators/build.d#L532

Workaround is simple but shouldn't be needed: https://github.com/snazzy-d/sdc/pull/360