Skip to content

Commit

Permalink
Re-export getopts so custom drivers can reference it.
Browse files Browse the repository at this point in the history
Otherwise, custom drivers will have to use their own copy of `getopts`, which
won't match the types used in `CompilerCalls`.
  • Loading branch information
DiamondLovesYou committed Sep 30, 2018
1 parent 1886d5f commit 0b76a97
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 0b76a97

Please sign in to comment.