Skip to content

Commit 72b7aa2

Browse files
committed
Link to rustc_driver crate in plugin
This is in anticipation for rust-lang/rust#56987 where the `rustc_driver` crate being linked in will be required to link correctly against the compiler. In the meantime it should be harmless otherwise!
1 parent 691e5e7 commit 72b7aa2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
// (currently there is no way to opt into sysroot crates w/o `extern crate`)
1818
#[allow(unused_extern_crates)]
1919
extern crate rustc_plugin;
20+
#[allow(unused_extern_crates)]
21+
extern crate rustc_driver;
2022
use self::rustc_plugin::Registry;
2123

2224
#[plugin_registrar]

0 commit comments

Comments
 (0)