Skip to content

Commit 958f1c5

Browse files
authored
Rollup merge of #54699 - DiamondLovesYou:reexport-getopts, r=pnkfelix
Re-export `getopts` so custom drivers can reference it. Otherwise, custom drivers will have to use their own copy of `getopts`, which won't match the types used in `CompilerCalls`.
2 parents 7e571ee + 0b76a97 commit 958f1c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_driver/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#![recursion_limit="256"]
3333

3434
extern crate arena;
35-
extern crate getopts;
35+
pub extern crate getopts;
3636
extern crate graphviz;
3737
extern crate env_logger;
3838
#[cfg(unix)]

0 commit comments

Comments
 (0)