Skip to content

Commit

Permalink
Rollup merge of rust-lang#54699 - DiamondLovesYou:reexport-getopts, r…
Browse files Browse the repository at this point in the history
…=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`.
  • Loading branch information
pietroalbini authored Oct 2, 2018
2 parents 7e571ee + 0b76a97 commit 958f1c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_driver/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#![recursion_limit="256"]

extern crate arena;
extern crate getopts;
pub extern crate getopts;
extern crate graphviz;
extern crate env_logger;
#[cfg(unix)]
Expand Down

0 comments on commit 958f1c5

Please sign in to comment.