Skip to content

Commit a6e47ca

Browse files
authored
Auto merge of #2988 - lifthrasiir:doc-open-with-target, r=alexcrichton
Make `cargo doc --open --target TARGET` work as expected. Currently `cargo doc --open` opens `$TARGET/doc` unconditionally, but it is incorrect if the explicit target is specified. The target directory should be same to what `Layout::new()` generates, and ideally it should use the same data source (it hadn't been so far), but I'm yet to find a good way to signal that. At least I'm pretty sure that `Compilation` is not a good position to put them (it assumes the bipartite "root"-"deps" separation which doesn't quite work in documentation).
2 parents c205132 + 60afff0 commit a6e47ca

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/cargo/ops/cargo_doc.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,10 @@ pub fn doc(ws: &Workspace,
5353
// Don't bother locking here as if this is getting deleted there's
5454
// nothing we can do about it and otherwise if it's getting overwritten
5555
// then that's also ok!
56-
let target_dir = ws.target_dir();
56+
let mut target_dir = ws.target_dir();
57+
if let Some(triple) = options.compile_opts.target {
58+
target_dir.push(Path::new(triple).file_stem().unwrap());
59+
}
5760
let path = target_dir.join("doc").join(&name).join("index.html");
5861
let path = path.into_path_unlocked();
5962
if fs::metadata(&path).is_ok() {

0 commit comments

Comments
 (0)