-
Notifications
You must be signed in to change notification settings - Fork 41
Feature flag support #91
Comments
Or are --features and --no-default-features already read by |
Well, the issue is that we currently cannot really pass anything to cargo's CLI frontend from our code, as the implementation is private and doesn't directly generate a However, we have functionality to make cargo not build default features (which you implemented :). It is subtly broken in some cases though, for instance if one has dependencies between targets and features (and we try building all targets unconditionally) |
cc @ehuss |
To summarize the implementation: we basically can pass |
To test libc we need to also support building a crate with
--features
and with--no-default-features
.The text was updated successfully, but these errors were encountered: