Skip to content

Commit

Permalink
rustdoc: Add a --crate-name option
Browse files Browse the repository at this point in the history
Like rustc, this is required by cargo to build documentation.
  • Loading branch information
alexcrichton committed Jul 24, 2014
1 parent 103d888 commit 237738f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/librustdoc/lib.rs
Expand Up @@ -102,6 +102,7 @@ pub fn opts() -> Vec<getopts::OptGroup> {
optopt("w", "output-format", "the output type to write",
"[html|json]"),
optopt("o", "output", "where to place the output", "PATH"),
optopt("", "crate-name", "specify the name of this crate", "NAME"),
optmulti("L", "library-path", "directory to add to crate search path",
"DIR"),
optmulti("", "cfg", "pass a --cfg to rustc", ""),
Expand Down Expand Up @@ -323,7 +324,7 @@ fn rust_input(cratefile: &str, externs: core::Externs, matches: &getopts::Matche

let cr = Path::new(cratefile);
info!("starting to run rustc");
let (krate, analysis) = std::task::try(proc() {
let (mut krate, analysis) = std::task::try(proc() {
let cr = cr;
core::run_core(libs.move_iter().collect(),
cfgs,
Expand All @@ -333,6 +334,11 @@ fn rust_input(cratefile: &str, externs: core::Externs, matches: &getopts::Matche
info!("finished with rustc");
analysiskey.replace(Some(analysis));

match matches.opt_str("crate-name") {
Some(name) => krate.name = name,
None => {}
}

// Process all of the crate attributes, extracting plugin metadata along
// with the passes which we are supposed to run.
match krate.module.get_ref().doc_list() {
Expand Down

0 comments on commit 237738f

Please sign in to comment.