Closed
Description
Currently the only way to load plugins is by having #[phase(plugin)] extern crate foo;
in the source, but one can easily have plugins (lints etc.) that make sense to only load occasionally or that make sense to load into external crates in an automated fashion, where editing the source is hard (E.g. my spellck lint).
This could be something like -Z plugin=spellck -Z plugin=grammarck
etc. (-Z
since presumably this will be unstable.)