Skip to content

Commit e0c60b4

Browse files
author
Jorge Aparicio
committed
rustdoc: implement --sysroot
with the same semantics as rustc. This let us build documentation for a crate that depends on a custom sysroot.
1 parent 5f6f838 commit e0c60b4

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/librustdoc/core.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ use errors::emitter::ColorConfig;
3030

3131
use std::cell::{RefCell, Cell};
3232
use std::rc::Rc;
33+
use std::path::PathBuf;
3334

3435
use visit_ast::RustdocVisitor;
3536
use clean;
@@ -101,7 +102,8 @@ pub fn run_core(search_paths: SearchPaths,
101102
cfgs: Vec<String>,
102103
externs: config::Externs,
103104
input: Input,
104-
triple: Option<String>) -> (clean::Crate, RenderInfo)
105+
triple: Option<String>,
106+
maybe_sysroot: Option<PathBuf>) -> (clean::Crate, RenderInfo)
105107
{
106108
// Parse, resolve, and typecheck the given crate.
107109

@@ -113,7 +115,7 @@ pub fn run_core(search_paths: SearchPaths,
113115
let warning_lint = lint::builtin::WARNINGS.name_lower();
114116

115117
let sessopts = config::Options {
116-
maybe_sysroot: None,
118+
maybe_sysroot: maybe_sysroot,
117119
search_paths: search_paths,
118120
crate_types: vec!(config::CrateTypeRlib),
119121
lint_opts: vec!((warning_lint, lint::Allow)),

src/librustdoc/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ pub fn opts() -> Vec<RustcOptGroup> {
186186
own theme", "PATH")),
187187
unstable(optmulti("Z", "",
188188
"internal and debugging options (only on nightly build)", "FLAG")),
189+
stable(optopt("", "sysroot", "Override the system root", "PATH")),
189190
)
190191
}
191192

@@ -370,6 +371,7 @@ fn rust_input(cratefile: &str, externs: Externs, matches: &getopts::Matches) ->
370371
}
371372
let cfgs = matches.opt_strs("cfg");
372373
let triple = matches.opt_str("target");
374+
let maybe_sysroot = matches.opt_str("sysroot").map(PathBuf::from);
373375

374376
let cr = PathBuf::from(cratefile);
375377
info!("starting to run rustc");
@@ -379,7 +381,7 @@ fn rust_input(cratefile: &str, externs: Externs, matches: &getopts::Matches) ->
379381
use rustc::session::config::Input;
380382

381383
tx.send(core::run_core(paths, cfgs, externs, Input::File(cr),
382-
triple)).unwrap();
384+
triple, maybe_sysroot)).unwrap();
383385
});
384386
let (mut krate, renderinfo) = rx.recv().unwrap();
385387
info!("finished with rustc");

0 commit comments

Comments
 (0)