2016-02-16 10:26:43 -08:00
|
|
|
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2016-05-02 15:16:15 -07:00
|
|
|
//! Documentation generation for rustbuild.
|
|
|
|
//!
|
|
|
|
//! This module implements generation for all bits and pieces of documentation
|
|
|
|
//! for the Rust project. This notably includes suites like the rust book, the
|
2017-12-01 18:29:12 -08:00
|
|
|
//! nomicon, rust by example, standalone documentation, etc.
|
2016-05-02 15:16:15 -07:00
|
|
|
//!
|
|
|
|
//! Everything here is basically just a shim around calling either `rustbook` or
|
|
|
|
//! `rustdoc`.
|
|
|
|
|
2016-02-16 10:26:43 -08:00
|
|
|
use std::fs::{self, File};
|
|
|
|
use std::io::prelude::*;
|
2017-03-01 15:34:54 -08:00
|
|
|
use std::io;
|
2017-07-13 18:48:44 -06:00
|
|
|
use std::path::{PathBuf, Path};
|
2016-02-16 10:26:43 -08:00
|
|
|
|
2017-07-05 10:46:41 -06:00
|
|
|
use Mode;
|
2017-02-01 00:27:51 +03:00
|
|
|
use build_helper::up_to_date;
|
2016-02-16 10:26:43 -08:00
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
use util::{cp_r, symlink_dir};
|
2017-07-25 17:56:06 -06:00
|
|
|
use builder::{Builder, Compiler, RunConfig, ShouldRun, Step};
|
2017-07-05 10:46:41 -06:00
|
|
|
use tool::Tool;
|
|
|
|
use compile;
|
2017-07-13 18:48:44 -06:00
|
|
|
use cache::{INTERNER, Interned};
|
2017-07-05 10:46:41 -06:00
|
|
|
|
2017-07-05 06:41:27 -06:00
|
|
|
macro_rules! book {
|
|
|
|
($($name:ident, $path:expr, $book_name:expr;)+) => {
|
|
|
|
$(
|
2017-07-13 18:48:44 -06:00
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
|
|
|
pub struct $name {
|
|
|
|
target: Interned<String>,
|
2017-07-05 06:41:27 -06:00
|
|
|
}
|
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
impl Step for $name {
|
2017-07-05 06:41:27 -06:00
|
|
|
type Output = ();
|
|
|
|
const DEFAULT: bool = true;
|
|
|
|
|
2017-07-18 18:03:38 -06:00
|
|
|
fn should_run(run: ShouldRun) -> ShouldRun {
|
2017-07-20 17:24:11 -06:00
|
|
|
let builder = run.builder;
|
|
|
|
run.path($path).default_condition(builder.build.config.docs)
|
2017-07-05 06:41:27 -06:00
|
|
|
}
|
|
|
|
|
2017-07-20 17:51:07 -06:00
|
|
|
fn make_run(run: RunConfig) {
|
|
|
|
run.builder.ensure($name {
|
|
|
|
target: run.target,
|
2017-07-05 06:41:27 -06:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(self, builder: &Builder) {
|
|
|
|
builder.ensure(Rustbook {
|
|
|
|
target: self.target,
|
2017-07-13 18:48:44 -06:00
|
|
|
name: INTERNER.intern_str($book_name),
|
2017-07-05 06:41:27 -06:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)+
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
book!(
|
2017-10-21 17:16:46 +01:00
|
|
|
Nomicon, "src/doc/nomicon", "nomicon";
|
2017-07-05 06:41:27 -06:00
|
|
|
Reference, "src/doc/reference", "reference";
|
2017-08-14 13:56:41 -04:00
|
|
|
Rustdoc, "src/doc/rustdoc", "rustdoc";
|
2017-12-01 18:29:12 -08:00
|
|
|
RustByExample, "src/doc/rust-by-example", "rust-by-example";
|
2017-07-05 06:41:27 -06:00
|
|
|
);
|
2017-07-04 19:41:43 -06:00
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
2017-07-18 18:03:38 -06:00
|
|
|
struct Rustbook {
|
2017-07-13 18:48:44 -06:00
|
|
|
target: Interned<String>,
|
|
|
|
name: Interned<String>,
|
2017-07-04 19:41:43 -06:00
|
|
|
}
|
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
impl Step for Rustbook {
|
2017-07-04 19:41:43 -06:00
|
|
|
type Output = ();
|
|
|
|
|
2017-07-14 06:30:16 -06:00
|
|
|
// rustbook is never directly called, and only serves as a shim for the nomicon and the
|
|
|
|
// reference.
|
2017-07-18 18:03:38 -06:00
|
|
|
fn should_run(run: ShouldRun) -> ShouldRun {
|
|
|
|
run.never()
|
2017-07-14 06:30:16 -06:00
|
|
|
}
|
|
|
|
|
2017-07-04 19:41:43 -06:00
|
|
|
/// Invoke `rustbook` for `target` for the doc book `name`.
|
|
|
|
///
|
|
|
|
/// This will not actually generate any documentation if the documentation has
|
|
|
|
/// already been generated.
|
|
|
|
fn run(self, builder: &Builder) {
|
2017-07-05 06:41:27 -06:00
|
|
|
let src = builder.build.src.join("src/doc");
|
|
|
|
builder.ensure(RustbookSrc {
|
|
|
|
target: self.target,
|
|
|
|
name: self.name,
|
2017-07-13 18:48:44 -06:00
|
|
|
src: INTERNER.intern_path(src),
|
2017-07-05 06:41:27 -06:00
|
|
|
});
|
2017-07-04 19:41:43 -06:00
|
|
|
}
|
2017-06-12 21:35:47 +02:00
|
|
|
}
|
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
|
|
|
pub struct UnstableBook {
|
|
|
|
target: Interned<String>,
|
2017-07-05 06:41:27 -06:00
|
|
|
}
|
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
impl Step for UnstableBook {
|
2017-07-05 06:41:27 -06:00
|
|
|
type Output = ();
|
|
|
|
const DEFAULT: bool = true;
|
|
|
|
|
2017-07-18 18:03:38 -06:00
|
|
|
fn should_run(run: ShouldRun) -> ShouldRun {
|
2017-07-20 17:24:11 -06:00
|
|
|
let builder = run.builder;
|
|
|
|
run.path("src/doc/unstable-book").default_condition(builder.build.config.docs)
|
2017-07-05 06:41:27 -06:00
|
|
|
}
|
|
|
|
|
2017-07-20 17:51:07 -06:00
|
|
|
fn make_run(run: RunConfig) {
|
|
|
|
run.builder.ensure(UnstableBook {
|
|
|
|
target: run.target,
|
2017-07-05 06:41:27 -06:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(self, builder: &Builder) {
|
|
|
|
builder.ensure(UnstableBookGen {
|
|
|
|
target: self.target,
|
|
|
|
});
|
|
|
|
builder.ensure(RustbookSrc {
|
|
|
|
target: self.target,
|
2017-07-13 18:48:44 -06:00
|
|
|
name: INTERNER.intern_str("unstable-book"),
|
|
|
|
src: builder.build.md_doc_out(self.target),
|
2017-07-05 06:41:27 -06:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2017-07-04 17:53:53 -06:00
|
|
|
|
2017-11-01 15:21:55 -04:00
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
|
|
|
pub struct CargoBook {
|
|
|
|
target: Interned<String>,
|
|
|
|
name: Interned<String>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Step for CargoBook {
|
|
|
|
type Output = ();
|
|
|
|
const DEFAULT: bool = true;
|
|
|
|
|
|
|
|
fn should_run(run: ShouldRun) -> ShouldRun {
|
|
|
|
let builder = run.builder;
|
|
|
|
run.path("src/tools/cargo/src/doc/book").default_condition(builder.build.config.docs)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn make_run(run: RunConfig) {
|
|
|
|
run.builder.ensure(CargoBook {
|
|
|
|
target: run.target,
|
|
|
|
name: INTERNER.intern_str("cargo"),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(self, builder: &Builder) {
|
|
|
|
let build = builder.build;
|
2017-11-01 15:24:35 -04:00
|
|
|
|
2017-11-01 15:21:55 -04:00
|
|
|
let target = self.target;
|
|
|
|
let name = self.name;
|
2018-01-08 13:56:22 -08:00
|
|
|
let src = build.src.join("src/tools/cargo/src/doc");
|
2017-11-01 15:24:35 -04:00
|
|
|
|
2017-11-01 15:21:55 -04:00
|
|
|
let out = build.doc_out(target);
|
|
|
|
t!(fs::create_dir_all(&out));
|
|
|
|
|
|
|
|
let out = out.join(name);
|
2017-11-01 15:24:35 -04:00
|
|
|
|
2017-11-01 15:21:55 -04:00
|
|
|
println!("Cargo Book ({}) - {}", target, name);
|
2017-11-01 15:24:35 -04:00
|
|
|
|
2017-11-01 15:21:55 -04:00
|
|
|
let _ = fs::remove_dir_all(&out);
|
2017-11-01 15:24:35 -04:00
|
|
|
|
2017-11-01 15:21:55 -04:00
|
|
|
build.run(builder.tool_cmd(Tool::Rustbook)
|
|
|
|
.arg("build")
|
|
|
|
.arg(&src)
|
|
|
|
.arg("-d")
|
|
|
|
.arg(out));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
2017-07-18 18:03:38 -06:00
|
|
|
struct RustbookSrc {
|
2017-07-13 18:48:44 -06:00
|
|
|
target: Interned<String>,
|
|
|
|
name: Interned<String>,
|
|
|
|
src: Interned<PathBuf>,
|
2017-07-04 19:41:43 -06:00
|
|
|
}
|
2017-07-04 17:53:53 -06:00
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
impl Step for RustbookSrc {
|
2017-07-04 19:41:43 -06:00
|
|
|
type Output = ();
|
|
|
|
|
2017-07-18 18:03:38 -06:00
|
|
|
fn should_run(run: ShouldRun) -> ShouldRun {
|
|
|
|
run.never()
|
2017-07-14 06:30:16 -06:00
|
|
|
}
|
|
|
|
|
2017-07-04 19:41:43 -06:00
|
|
|
/// Invoke `rustbook` for `target` for the doc book `name` from the `src` path.
|
|
|
|
///
|
|
|
|
/// This will not actually generate any documentation if the documentation has
|
|
|
|
/// already been generated.
|
|
|
|
fn run(self, builder: &Builder) {
|
|
|
|
let build = builder.build;
|
|
|
|
let target = self.target;
|
|
|
|
let name = self.name;
|
|
|
|
let src = self.src;
|
|
|
|
let out = build.doc_out(target);
|
|
|
|
t!(fs::create_dir_all(&out));
|
|
|
|
|
|
|
|
let out = out.join(name);
|
|
|
|
let src = src.join(name);
|
|
|
|
let index = out.join("index.html");
|
2017-07-05 06:41:27 -06:00
|
|
|
let rustbook = builder.tool_exe(Tool::Rustbook);
|
2017-07-04 19:41:43 -06:00
|
|
|
if up_to_date(&src, &index) && up_to_date(&rustbook, &index) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
println!("Rustbook ({}) - {}", target, name);
|
|
|
|
let _ = fs::remove_dir_all(&out);
|
2017-07-05 06:41:27 -06:00
|
|
|
build.run(builder.tool_cmd(Tool::Rustbook)
|
2017-07-04 19:41:43 -06:00
|
|
|
.arg("build")
|
|
|
|
.arg(&src)
|
|
|
|
.arg("-d")
|
|
|
|
.arg(out));
|
2016-02-16 10:26:43 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
|
|
|
pub struct TheBook {
|
2017-07-25 17:56:06 -06:00
|
|
|
compiler: Compiler,
|
2017-07-13 18:48:44 -06:00
|
|
|
target: Interned<String>,
|
|
|
|
name: &'static str,
|
2017-07-04 19:41:43 -06:00
|
|
|
}
|
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
impl Step for TheBook {
|
2017-07-04 19:41:43 -06:00
|
|
|
type Output = ();
|
2017-07-13 22:37:33 -06:00
|
|
|
const DEFAULT: bool = true;
|
2017-07-04 19:41:43 -06:00
|
|
|
|
2017-07-18 18:03:38 -06:00
|
|
|
fn should_run(run: ShouldRun) -> ShouldRun {
|
2017-07-20 17:24:11 -06:00
|
|
|
let builder = run.builder;
|
|
|
|
run.path("src/doc/book").default_condition(builder.build.config.docs)
|
2017-07-12 18:52:31 -06:00
|
|
|
}
|
|
|
|
|
2017-07-20 17:51:07 -06:00
|
|
|
fn make_run(run: RunConfig) {
|
|
|
|
run.builder.ensure(TheBook {
|
2017-07-27 06:50:43 -06:00
|
|
|
compiler: run.builder.compiler(run.builder.top_stage, run.builder.build.build),
|
2017-07-20 17:51:07 -06:00
|
|
|
target: run.target,
|
2017-07-12 18:52:31 -06:00
|
|
|
name: "book",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-07-04 19:41:43 -06:00
|
|
|
/// Build the book and associated stuff.
|
|
|
|
///
|
|
|
|
/// We need to build:
|
|
|
|
///
|
|
|
|
/// * Book (first edition)
|
|
|
|
/// * Book (second edition)
|
2017-11-15 02:57:03 +00:00
|
|
|
/// * Version info and CSS
|
2017-07-04 19:41:43 -06:00
|
|
|
/// * Index page
|
|
|
|
/// * Redirect pages
|
|
|
|
fn run(self, builder: &Builder) {
|
|
|
|
let build = builder.build;
|
2017-11-15 02:57:03 +00:00
|
|
|
let compiler = self.compiler;
|
2017-07-04 19:41:43 -06:00
|
|
|
let target = self.target;
|
|
|
|
let name = self.name;
|
|
|
|
// build book first edition
|
2017-07-05 06:41:27 -06:00
|
|
|
builder.ensure(Rustbook {
|
2017-08-06 22:54:09 -07:00
|
|
|
target,
|
2017-07-13 18:48:44 -06:00
|
|
|
name: INTERNER.intern_string(format!("{}/first-edition", name)),
|
2017-07-05 06:41:27 -06:00
|
|
|
});
|
2017-07-04 19:41:43 -06:00
|
|
|
|
|
|
|
// build book second edition
|
2017-07-05 06:41:27 -06:00
|
|
|
builder.ensure(Rustbook {
|
2017-08-06 22:54:09 -07:00
|
|
|
target,
|
2017-07-13 18:48:44 -06:00
|
|
|
name: INTERNER.intern_string(format!("{}/second-edition", name)),
|
2017-07-05 06:41:27 -06:00
|
|
|
});
|
2017-07-04 19:41:43 -06:00
|
|
|
|
2017-11-15 02:57:03 +00:00
|
|
|
// build the version info page and CSS
|
|
|
|
builder.ensure(Standalone {
|
|
|
|
compiler,
|
|
|
|
target,
|
|
|
|
});
|
|
|
|
|
2017-07-04 19:41:43 -06:00
|
|
|
// build the index page
|
|
|
|
let index = format!("{}/index.md", name);
|
|
|
|
println!("Documenting book index ({})", target);
|
2017-11-15 02:57:03 +00:00
|
|
|
invoke_rustdoc(builder, compiler, target, &index);
|
2017-07-04 19:41:43 -06:00
|
|
|
|
|
|
|
// build the redirect pages
|
|
|
|
println!("Documenting book redirect pages ({})", target);
|
|
|
|
for file in t!(fs::read_dir(build.src.join("src/doc/book/redirects"))) {
|
|
|
|
let file = t!(file);
|
|
|
|
let path = file.path();
|
|
|
|
let path = path.to_str().unwrap();
|
|
|
|
|
2017-11-15 02:57:03 +00:00
|
|
|
invoke_rustdoc(builder, compiler, target, path);
|
2017-07-04 19:41:43 -06:00
|
|
|
}
|
2017-03-07 16:07:55 -05:00
|
|
|
}
|
2017-03-07 15:31:41 -05:00
|
|
|
}
|
|
|
|
|
2017-07-25 17:56:06 -06:00
|
|
|
fn invoke_rustdoc(builder: &Builder, compiler: Compiler, target: Interned<String>, markdown: &str) {
|
2017-07-05 10:46:41 -06:00
|
|
|
let build = builder.build;
|
2017-03-07 15:31:41 -05:00
|
|
|
let out = build.doc_out(target);
|
|
|
|
|
|
|
|
let path = build.src.join("src/doc").join(markdown);
|
|
|
|
|
|
|
|
let favicon = build.src.join("src/doc/favicon.inc");
|
|
|
|
let footer = build.src.join("src/doc/footer.inc");
|
|
|
|
let version_info = out.join("version_info.html");
|
|
|
|
|
2017-08-04 16:13:01 -06:00
|
|
|
let mut cmd = builder.rustdoc_cmd(compiler.host);
|
2017-03-07 15:31:41 -05:00
|
|
|
|
|
|
|
let out = out.join("book");
|
|
|
|
|
|
|
|
cmd.arg("--html-after-content").arg(&footer)
|
|
|
|
.arg("--html-before-content").arg(&version_info)
|
|
|
|
.arg("--html-in-header").arg(&favicon)
|
2018-03-02 13:52:13 -05:00
|
|
|
.arg("--markdown-no-toc")
|
2017-03-07 15:31:41 -05:00
|
|
|
.arg("--markdown-playground-url")
|
|
|
|
.arg("https://play.rust-lang.org/")
|
|
|
|
.arg("-o").arg(&out)
|
|
|
|
.arg(&path)
|
|
|
|
.arg("--markdown-css")
|
2017-11-15 02:57:03 +00:00
|
|
|
.arg("../rust.css");
|
2017-03-07 15:31:41 -05:00
|
|
|
|
|
|
|
build.run(&mut cmd);
|
2017-03-07 14:49:50 -05:00
|
|
|
}
|
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
|
|
|
pub struct Standalone {
|
2017-07-25 17:56:06 -06:00
|
|
|
compiler: Compiler,
|
2017-07-13 18:48:44 -06:00
|
|
|
target: Interned<String>,
|
2017-07-04 19:41:43 -06:00
|
|
|
}
|
2016-02-16 10:26:43 -08:00
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
impl Step for Standalone {
|
2017-07-04 19:41:43 -06:00
|
|
|
type Output = ();
|
2017-07-05 06:41:27 -06:00
|
|
|
const DEFAULT: bool = true;
|
|
|
|
|
2017-07-18 18:03:38 -06:00
|
|
|
fn should_run(run: ShouldRun) -> ShouldRun {
|
2017-07-20 17:51:07 -06:00
|
|
|
let builder = run.builder;
|
|
|
|
run.path("src/doc").default_condition(builder.build.config.docs)
|
2017-07-05 06:41:27 -06:00
|
|
|
}
|
|
|
|
|
2017-07-20 17:51:07 -06:00
|
|
|
fn make_run(run: RunConfig) {
|
|
|
|
run.builder.ensure(Standalone {
|
2017-07-27 06:50:43 -06:00
|
|
|
compiler: run.builder.compiler(run.builder.top_stage, run.builder.build.build),
|
2017-07-20 17:51:07 -06:00
|
|
|
target: run.target,
|
2017-07-05 06:41:27 -06:00
|
|
|
});
|
|
|
|
}
|
2017-07-04 19:41:43 -06:00
|
|
|
|
|
|
|
/// Generates all standalone documentation as compiled by the rustdoc in `stage`
|
|
|
|
/// for the `target` into `out`.
|
|
|
|
///
|
|
|
|
/// This will list all of `src/doc` looking for markdown files and appropriately
|
|
|
|
/// perform transformations like substituting `VERSION`, `SHORT_HASH`, and
|
2017-08-11 20:34:14 +02:00
|
|
|
/// `STAMP` along with providing the various header/footer HTML we've customized.
|
2017-07-04 19:41:43 -06:00
|
|
|
///
|
|
|
|
/// In the end, this is just a glorified wrapper around rustdoc!
|
|
|
|
fn run(self, builder: &Builder) {
|
|
|
|
let build = builder.build;
|
|
|
|
let target = self.target;
|
2017-07-25 17:56:06 -06:00
|
|
|
let compiler = self.compiler;
|
2017-07-04 19:41:43 -06:00
|
|
|
println!("Documenting standalone ({})", target);
|
|
|
|
let out = build.doc_out(target);
|
|
|
|
t!(fs::create_dir_all(&out));
|
|
|
|
|
|
|
|
let favicon = build.src.join("src/doc/favicon.inc");
|
|
|
|
let footer = build.src.join("src/doc/footer.inc");
|
|
|
|
let full_toc = build.src.join("src/doc/full-toc.inc");
|
|
|
|
t!(fs::copy(build.src.join("src/doc/rust.css"), out.join("rust.css")));
|
|
|
|
|
|
|
|
let version_input = build.src.join("src/doc/version_info.html.template");
|
|
|
|
let version_info = out.join("version_info.html");
|
|
|
|
|
|
|
|
if !up_to_date(&version_input, &version_info) {
|
|
|
|
let mut info = String::new();
|
|
|
|
t!(t!(File::open(&version_input)).read_to_string(&mut info));
|
|
|
|
let info = info.replace("VERSION", &build.rust_release())
|
|
|
|
.replace("SHORT_HASH", build.rust_info.sha_short().unwrap_or(""))
|
|
|
|
.replace("STAMP", build.rust_info.sha().unwrap_or(""));
|
|
|
|
t!(t!(File::create(&version_info)).write_all(info.as_bytes()));
|
2016-02-16 10:26:43 -08:00
|
|
|
}
|
|
|
|
|
2017-07-04 19:41:43 -06:00
|
|
|
for file in t!(fs::read_dir(build.src.join("src/doc"))) {
|
|
|
|
let file = t!(file);
|
|
|
|
let path = file.path();
|
|
|
|
let filename = path.file_name().unwrap().to_str().unwrap();
|
|
|
|
if !filename.ends_with(".md") || filename == "README.md" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
let html = out.join(filename).with_extension("html");
|
2017-08-04 16:13:01 -06:00
|
|
|
let rustdoc = builder.rustdoc(compiler.host);
|
2017-07-04 19:41:43 -06:00
|
|
|
if up_to_date(&path, &html) &&
|
|
|
|
up_to_date(&footer, &html) &&
|
|
|
|
up_to_date(&favicon, &html) &&
|
|
|
|
up_to_date(&full_toc, &html) &&
|
|
|
|
up_to_date(&version_info, &html) &&
|
|
|
|
up_to_date(&rustdoc, &html) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2017-08-04 16:13:01 -06:00
|
|
|
let mut cmd = builder.rustdoc_cmd(compiler.host);
|
2017-07-04 19:41:43 -06:00
|
|
|
cmd.arg("--html-after-content").arg(&footer)
|
|
|
|
.arg("--html-before-content").arg(&version_info)
|
|
|
|
.arg("--html-in-header").arg(&favicon)
|
|
|
|
.arg("--markdown-playground-url")
|
|
|
|
.arg("https://play.rust-lang.org/")
|
|
|
|
.arg("-o").arg(&out)
|
|
|
|
.arg(&path);
|
|
|
|
|
|
|
|
if filename == "not_found.md" {
|
|
|
|
cmd.arg("--markdown-no-toc")
|
|
|
|
.arg("--markdown-css")
|
|
|
|
.arg("https://doc.rust-lang.org/rust.css");
|
|
|
|
} else {
|
|
|
|
cmd.arg("--markdown-css").arg("rust.css");
|
|
|
|
}
|
|
|
|
build.run(&mut cmd);
|
2016-02-16 10:26:43 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-07 22:36:21 -08:00
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
|
|
|
pub struct Std {
|
2018-01-12 23:40:00 +01:00
|
|
|
pub stage: u32,
|
|
|
|
pub target: Interned<String>,
|
2017-07-04 19:41:43 -06:00
|
|
|
}
|
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
impl Step for Std {
|
2017-07-04 19:41:43 -06:00
|
|
|
type Output = ();
|
2017-07-05 06:41:27 -06:00
|
|
|
const DEFAULT: bool = true;
|
|
|
|
|
2017-07-18 18:03:38 -06:00
|
|
|
fn should_run(run: ShouldRun) -> ShouldRun {
|
2017-07-20 17:24:11 -06:00
|
|
|
let builder = run.builder;
|
Change Step to be invoked with a path when in default mode.
Previously, a Step would be able to tell on its own when it was invoked
"by-default" (that is, `./x.py test` was called instead of `./x.py test
some/path`). This commit replaces that functionality, invoking each Step
with each of the paths it has specified as "should be invoked by."
For example, if a step calls `path("src/tools/cargo")` and
`path("src/doc/cargo")` then it's make_run will be called twice, with
"src/tools/cargo" and "src/doc/cargo." This makes it so that default
handling logic is in builder, instead of spread across various Steps.
However, this meant that some Step specifications needed to be updated,
since for example `rustdoc` can be built by `./x.py build
src/librustdoc` or `./x.py build src/tools/rustdoc`. A `PathSet`
abstraction is added that handles this: now, each Step can not only list
`path(...)` but also `paths(&[a, b, ...])` which will make it so that we
don't invoke it with each of the individual paths, instead invoking it
with the first path in the list (though this shouldn't be depended on).
Future work likely consists of implementing a better/easier way for a
given Step to work with "any" crate in-tree, especially those that want
to run tests, build, or check crates in the std, test, or rustc crate
trees. Currently this is rather painful to do as most of the logic is
duplicated across should_run and make_run. It seems likely this can be
abstracted away into builder somehow.
2018-02-11 09:51:58 -07:00
|
|
|
run.all_krates("std").default_condition(builder.build.config.docs)
|
2017-07-05 06:41:27 -06:00
|
|
|
}
|
|
|
|
|
2017-07-20 17:51:07 -06:00
|
|
|
fn make_run(run: RunConfig) {
|
|
|
|
run.builder.ensure(Std {
|
|
|
|
stage: run.builder.top_stage,
|
|
|
|
target: run.target
|
2017-07-20 17:24:11 -06:00
|
|
|
});
|
2017-07-05 06:41:27 -06:00
|
|
|
}
|
2017-07-04 19:41:43 -06:00
|
|
|
|
|
|
|
/// Compile all standard library documentation.
|
|
|
|
///
|
|
|
|
/// This will generate all documentation for the standard library and its
|
|
|
|
/// dependencies. This is largely just a wrapper around `cargo doc`.
|
|
|
|
fn run(self, builder: &Builder) {
|
|
|
|
let build = builder.build;
|
|
|
|
let stage = self.stage;
|
|
|
|
let target = self.target;
|
|
|
|
println!("Documenting stage{} std ({})", stage, target);
|
|
|
|
let out = build.doc_out(target);
|
|
|
|
t!(fs::create_dir_all(&out));
|
2017-07-13 18:48:44 -06:00
|
|
|
let compiler = builder.compiler(stage, build.build);
|
2017-08-04 16:13:01 -06:00
|
|
|
let rustdoc = builder.rustdoc(compiler.host);
|
2017-07-05 06:41:27 -06:00
|
|
|
let compiler = if build.force_use_stage1(compiler, target) {
|
|
|
|
builder.compiler(1, compiler.host)
|
2017-07-04 19:41:43 -06:00
|
|
|
} else {
|
|
|
|
compiler
|
|
|
|
};
|
2017-07-05 06:41:27 -06:00
|
|
|
|
|
|
|
builder.ensure(compile::Std { compiler, target });
|
2017-07-05 10:46:41 -06:00
|
|
|
let out_dir = build.stage_out(compiler, Mode::Libstd)
|
2017-07-04 19:41:43 -06:00
|
|
|
.join(target).join("doc");
|
|
|
|
|
|
|
|
// Here what we're doing is creating a *symlink* (directory junction on
|
|
|
|
// Windows) to the final output location. This is not done as an
|
|
|
|
// optimization but rather for correctness. We've got three trees of
|
|
|
|
// documentation, one for std, one for test, and one for rustc. It's then
|
|
|
|
// our job to merge them all together.
|
|
|
|
//
|
|
|
|
// Unfortunately rustbuild doesn't know nearly as well how to merge doc
|
|
|
|
// trees as rustdoc does itself, so instead of actually having three
|
|
|
|
// separate trees we just have rustdoc output to the same location across
|
|
|
|
// all of them.
|
|
|
|
//
|
|
|
|
// This way rustdoc generates output directly into the output, and rustdoc
|
|
|
|
// will also directly handle merging.
|
|
|
|
let my_out = build.crate_doc_out(target);
|
|
|
|
build.clear_if_dirty(&my_out, &rustdoc);
|
|
|
|
t!(symlink_dir_force(&my_out, &out_dir));
|
|
|
|
|
2017-07-05 11:21:33 -06:00
|
|
|
let mut cargo = builder.cargo(compiler, Mode::Libstd, target, "doc");
|
2018-03-05 09:47:54 -08:00
|
|
|
compile::std_cargo(builder, &compiler, target, &mut cargo);
|
2017-07-04 19:41:43 -06:00
|
|
|
|
|
|
|
// We don't want to build docs for internal std dependencies unless
|
|
|
|
// in compiler-docs mode. When not in that mode, we whitelist the crates
|
|
|
|
// for which docs must be built.
|
|
|
|
if !build.config.compiler_docs {
|
|
|
|
cargo.arg("--no-deps");
|
2017-10-22 14:54:07 -02:00
|
|
|
for krate in &["alloc", "core", "std", "std_unicode"] {
|
2017-07-04 19:41:43 -06:00
|
|
|
cargo.arg("-p").arg(krate);
|
|
|
|
// Create all crate output directories first to make sure rustdoc uses
|
|
|
|
// relative links.
|
|
|
|
// FIXME: Cargo should probably do this itself.
|
|
|
|
t!(fs::create_dir_all(out_dir.join(krate)));
|
|
|
|
}
|
2017-01-08 11:37:52 -08:00
|
|
|
}
|
2017-01-05 22:26:04 +00:00
|
|
|
|
2017-01-08 11:37:52 -08:00
|
|
|
|
2017-07-04 19:41:43 -06:00
|
|
|
build.run(&mut cargo);
|
|
|
|
cp_r(&my_out, &out);
|
|
|
|
}
|
2016-03-07 22:36:21 -08:00
|
|
|
}
|
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
|
|
|
pub struct Test {
|
2017-07-04 19:41:43 -06:00
|
|
|
stage: u32,
|
2017-07-13 18:48:44 -06:00
|
|
|
target: Interned<String>,
|
rustbuild: Fix dist for non-host targets
The `rust-std` package that we produce is expected to have not only the standard
library but also libtest for compiling unit tests. Unfortunately this does not
currently happen due to the way rustbuild is structured.
There are currently two main stages of compilation in rustbuild, one for the
standard library and one for the compiler. This is primarily done to allow us to
fill in the sysroot right after the standard library has finished compiling to
continue compiling the rest of the crates. Consequently the entire compiler does
not have to explicitly depend on the standard library, and this also should
allow us to pull in crates.io dependencies into the build in the future because
they'll just naturally build against the std we just produced.
These phases, however, do not represent a cross-compiled build. Target-only
builds also require libtest, and libtest is currently part of the
all-encompassing "compiler build". There's unfortunately no way to learn about
just libtest and its dependencies (in a great and robust fashion) so to ensure
that we can copy the right artifacts over this commit introduces a new build
step, libtest.
The new libtest build step has documentation, dist, and link steps as std/rustc
already do. The compiler now depends on libtest instead of libstd, and all
compiler crates can now assume that test and its dependencies are implicitly
part of the sysroot (hence explicit dependencies being removed). This makes the
build a tad less parallel as in theory many rustc crates can be compiled in
parallel with libtest, but this likely isn't where we really need parallelism
either (all the time is still spent in the compiler).
All in all this allows the `dist-std` step to depend on both libstd and libtest,
so `rust-std` packages produced by rustbuild should start having both the
standard library and libtest.
Closes #32523
2016-03-27 22:28:10 -07:00
|
|
|
}
|
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
impl Step for Test {
|
2017-07-04 19:41:43 -06:00
|
|
|
type Output = ();
|
2017-07-05 06:41:27 -06:00
|
|
|
const DEFAULT: bool = true;
|
|
|
|
|
2017-07-18 18:03:38 -06:00
|
|
|
fn should_run(run: ShouldRun) -> ShouldRun {
|
2017-07-20 17:24:11 -06:00
|
|
|
let builder = run.builder;
|
|
|
|
run.krate("test").default_condition(builder.config.compiler_docs)
|
2017-07-05 06:41:27 -06:00
|
|
|
}
|
|
|
|
|
2017-07-20 17:51:07 -06:00
|
|
|
fn make_run(run: RunConfig) {
|
|
|
|
run.builder.ensure(Test {
|
|
|
|
stage: run.builder.top_stage,
|
|
|
|
target: run.target,
|
2017-07-20 17:24:11 -06:00
|
|
|
});
|
2017-07-05 06:41:27 -06:00
|
|
|
}
|
2017-07-04 19:41:43 -06:00
|
|
|
|
|
|
|
/// Compile all libtest documentation.
|
|
|
|
///
|
|
|
|
/// This will generate all documentation for libtest and its dependencies. This
|
|
|
|
/// is largely just a wrapper around `cargo doc`.
|
|
|
|
fn run(self, builder: &Builder) {
|
|
|
|
let build = builder.build;
|
|
|
|
let stage = self.stage;
|
|
|
|
let target = self.target;
|
|
|
|
println!("Documenting stage{} test ({})", stage, target);
|
|
|
|
let out = build.doc_out(target);
|
|
|
|
t!(fs::create_dir_all(&out));
|
2017-07-13 18:48:44 -06:00
|
|
|
let compiler = builder.compiler(stage, build.build);
|
2017-08-04 16:13:01 -06:00
|
|
|
let rustdoc = builder.rustdoc(compiler.host);
|
2017-07-05 06:41:27 -06:00
|
|
|
let compiler = if build.force_use_stage1(compiler, target) {
|
|
|
|
builder.compiler(1, compiler.host)
|
2017-07-04 19:41:43 -06:00
|
|
|
} else {
|
|
|
|
compiler
|
|
|
|
};
|
2017-07-05 06:41:27 -06:00
|
|
|
|
|
|
|
// Build libstd docs so that we generate relative links
|
|
|
|
builder.ensure(Std { stage, target });
|
|
|
|
|
|
|
|
builder.ensure(compile::Test { compiler, target });
|
2017-07-05 10:46:41 -06:00
|
|
|
let out_dir = build.stage_out(compiler, Mode::Libtest)
|
2017-07-04 19:41:43 -06:00
|
|
|
.join(target).join("doc");
|
|
|
|
|
|
|
|
// See docs in std above for why we symlink
|
|
|
|
let my_out = build.crate_doc_out(target);
|
|
|
|
build.clear_if_dirty(&my_out, &rustdoc);
|
|
|
|
t!(symlink_dir_force(&my_out, &out_dir));
|
|
|
|
|
2017-07-05 11:21:33 -06:00
|
|
|
let mut cargo = builder.cargo(compiler, Mode::Libtest, target, "doc");
|
2017-07-17 09:32:08 -07:00
|
|
|
compile::test_cargo(build, &compiler, target, &mut cargo);
|
2017-07-04 19:41:43 -06:00
|
|
|
build.run(&mut cargo);
|
|
|
|
cp_r(&my_out, &out);
|
|
|
|
}
|
|
|
|
}
|
2017-07-04 17:53:53 -06:00
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
|
|
|
pub struct Rustc {
|
2017-07-04 19:41:43 -06:00
|
|
|
stage: u32,
|
2017-07-13 18:48:44 -06:00
|
|
|
target: Interned<String>,
|
2017-07-04 19:41:43 -06:00
|
|
|
}
|
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
impl Step for Rustc {
|
2017-07-04 19:41:43 -06:00
|
|
|
type Output = ();
|
2017-07-05 06:41:27 -06:00
|
|
|
const DEFAULT: bool = true;
|
|
|
|
const ONLY_HOSTS: bool = true;
|
|
|
|
|
2017-07-18 18:03:38 -06:00
|
|
|
fn should_run(run: ShouldRun) -> ShouldRun {
|
2017-07-20 17:24:11 -06:00
|
|
|
let builder = run.builder;
|
|
|
|
run.krate("rustc-main").default_condition(builder.build.config.docs)
|
2017-07-05 06:41:27 -06:00
|
|
|
}
|
|
|
|
|
2017-07-20 17:51:07 -06:00
|
|
|
fn make_run(run: RunConfig) {
|
|
|
|
run.builder.ensure(Rustc {
|
|
|
|
stage: run.builder.top_stage,
|
|
|
|
target: run.target,
|
2017-07-20 17:24:11 -06:00
|
|
|
});
|
2017-07-05 06:41:27 -06:00
|
|
|
}
|
2017-07-04 19:41:43 -06:00
|
|
|
|
|
|
|
/// Generate all compiler documentation.
|
|
|
|
///
|
|
|
|
/// This will generate all documentation for the compiler libraries and their
|
|
|
|
/// dependencies. This is largely just a wrapper around `cargo doc`.
|
|
|
|
fn run(self, builder: &Builder) {
|
|
|
|
let build = builder.build;
|
|
|
|
let stage = self.stage;
|
|
|
|
let target = self.target;
|
|
|
|
println!("Documenting stage{} compiler ({})", stage, target);
|
|
|
|
let out = build.doc_out(target);
|
|
|
|
t!(fs::create_dir_all(&out));
|
2017-07-13 18:48:44 -06:00
|
|
|
let compiler = builder.compiler(stage, build.build);
|
2017-08-04 16:13:01 -06:00
|
|
|
let rustdoc = builder.rustdoc(compiler.host);
|
2017-07-05 06:41:27 -06:00
|
|
|
let compiler = if build.force_use_stage1(compiler, target) {
|
|
|
|
builder.compiler(1, compiler.host)
|
2017-07-04 19:41:43 -06:00
|
|
|
} else {
|
|
|
|
compiler
|
|
|
|
};
|
2017-07-05 06:41:27 -06:00
|
|
|
|
|
|
|
// Build libstd docs so that we generate relative links
|
|
|
|
builder.ensure(Std { stage, target });
|
|
|
|
|
|
|
|
builder.ensure(compile::Rustc { compiler, target });
|
2017-07-05 10:46:41 -06:00
|
|
|
let out_dir = build.stage_out(compiler, Mode::Librustc)
|
2017-07-04 19:41:43 -06:00
|
|
|
.join(target).join("doc");
|
|
|
|
|
|
|
|
// See docs in std above for why we symlink
|
|
|
|
let my_out = build.crate_doc_out(target);
|
|
|
|
build.clear_if_dirty(&my_out, &rustdoc);
|
|
|
|
t!(symlink_dir_force(&my_out, &out_dir));
|
|
|
|
|
2017-07-05 11:21:33 -06:00
|
|
|
let mut cargo = builder.cargo(compiler, Mode::Librustc, target, "doc");
|
2018-01-22 07:29:24 -08:00
|
|
|
compile::rustc_cargo(build, &mut cargo);
|
2017-07-04 19:41:43 -06:00
|
|
|
|
|
|
|
if build.config.compiler_docs {
|
2017-10-14 16:35:25 +01:00
|
|
|
// src/rustc/Cargo.toml contains a bin crate called rustc which
|
|
|
|
// would otherwise overwrite the docs for the real rustc lib crate.
|
|
|
|
cargo.arg("-p").arg("rustc_driver");
|
2017-07-04 19:41:43 -06:00
|
|
|
} else {
|
|
|
|
// Like with libstd above if compiler docs aren't enabled then we're not
|
|
|
|
// documenting internal dependencies, so we have a whitelist.
|
|
|
|
cargo.arg("--no-deps");
|
|
|
|
for krate in &["proc_macro"] {
|
|
|
|
cargo.arg("-p").arg(krate);
|
|
|
|
}
|
2017-03-01 15:34:54 -08:00
|
|
|
}
|
|
|
|
|
2017-07-04 19:41:43 -06:00
|
|
|
build.run(&mut cargo);
|
|
|
|
cp_r(&my_out, &out);
|
|
|
|
}
|
2016-03-07 22:36:21 -08:00
|
|
|
}
|
2016-03-08 13:42:32 -08:00
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
|
|
|
pub struct ErrorIndex {
|
|
|
|
target: Interned<String>,
|
2017-07-04 19:41:43 -06:00
|
|
|
}
|
2016-03-08 13:42:32 -08:00
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
impl Step for ErrorIndex {
|
2017-07-04 19:41:43 -06:00
|
|
|
type Output = ();
|
2017-07-05 06:41:27 -06:00
|
|
|
const DEFAULT: bool = true;
|
|
|
|
const ONLY_HOSTS: bool = true;
|
|
|
|
|
2017-07-18 18:03:38 -06:00
|
|
|
fn should_run(run: ShouldRun) -> ShouldRun {
|
2017-07-20 17:24:11 -06:00
|
|
|
let builder = run.builder;
|
|
|
|
run.path("src/tools/error_index_generator").default_condition(builder.build.config.docs)
|
2017-07-05 06:41:27 -06:00
|
|
|
}
|
|
|
|
|
2017-07-20 17:51:07 -06:00
|
|
|
fn make_run(run: RunConfig) {
|
|
|
|
run.builder.ensure(ErrorIndex {
|
|
|
|
target: run.target,
|
2017-07-05 06:41:27 -06:00
|
|
|
});
|
|
|
|
}
|
2017-07-04 19:41:43 -06:00
|
|
|
|
|
|
|
/// Generates the HTML rendered error-index by running the
|
|
|
|
/// `error_index_generator` tool.
|
|
|
|
fn run(self, builder: &Builder) {
|
2017-07-05 10:46:41 -06:00
|
|
|
let build = builder.build;
|
2017-07-04 19:41:43 -06:00
|
|
|
let target = self.target;
|
2017-07-05 06:41:27 -06:00
|
|
|
|
2017-07-04 19:41:43 -06:00
|
|
|
println!("Documenting error index ({})", target);
|
|
|
|
let out = build.doc_out(target);
|
|
|
|
t!(fs::create_dir_all(&out));
|
2017-07-05 06:41:27 -06:00
|
|
|
let mut index = builder.tool_cmd(Tool::ErrorIndex);
|
2017-07-04 19:41:43 -06:00
|
|
|
index.arg("html");
|
|
|
|
index.arg(out.join("error-index.html"));
|
|
|
|
|
|
|
|
// FIXME: shouldn't have to pass this env var
|
2018-01-02 16:21:35 -08:00
|
|
|
index.env("CFG_BUILD", &build.build)
|
|
|
|
.env("RUSTC_ERROR_METADATA_DST", build.extended_error_dir());
|
2017-07-04 19:41:43 -06:00
|
|
|
|
|
|
|
build.run(&mut index);
|
|
|
|
}
|
2016-03-08 13:42:32 -08:00
|
|
|
}
|
2017-03-01 15:34:54 -08:00
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
#[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
|
|
|
|
pub struct UnstableBookGen {
|
|
|
|
target: Interned<String>,
|
2017-07-04 19:41:43 -06:00
|
|
|
}
|
2017-06-12 21:35:47 +02:00
|
|
|
|
2017-07-13 18:48:44 -06:00
|
|
|
impl Step for UnstableBookGen {
|
2017-07-04 19:41:43 -06:00
|
|
|
type Output = ();
|
2017-07-05 06:41:27 -06:00
|
|
|
const DEFAULT: bool = true;
|
|
|
|
const ONLY_HOSTS: bool = true;
|
|
|
|
|
2017-07-18 18:03:38 -06:00
|
|
|
fn should_run(run: ShouldRun) -> ShouldRun {
|
2017-07-20 17:24:11 -06:00
|
|
|
let builder = run.builder;
|
|
|
|
run.path("src/tools/unstable-book-gen").default_condition(builder.build.config.docs)
|
2017-07-05 06:41:27 -06:00
|
|
|
}
|
|
|
|
|
2017-07-20 17:51:07 -06:00
|
|
|
fn make_run(run: RunConfig) {
|
|
|
|
run.builder.ensure(UnstableBookGen {
|
|
|
|
target: run.target,
|
2017-07-05 06:41:27 -06:00
|
|
|
});
|
|
|
|
}
|
2017-07-04 19:41:43 -06:00
|
|
|
|
|
|
|
fn run(self, builder: &Builder) {
|
|
|
|
let build = builder.build;
|
|
|
|
let target = self.target;
|
2017-07-05 06:41:27 -06:00
|
|
|
|
|
|
|
builder.ensure(compile::Std {
|
2017-07-13 18:48:44 -06:00
|
|
|
compiler: builder.compiler(builder.top_stage, build.build),
|
2017-07-05 06:41:27 -06:00
|
|
|
target,
|
|
|
|
});
|
|
|
|
|
2017-07-04 19:41:43 -06:00
|
|
|
println!("Generating unstable book md files ({})", target);
|
|
|
|
let out = build.md_doc_out(target).join("unstable-book");
|
|
|
|
t!(fs::create_dir_all(&out));
|
|
|
|
t!(fs::remove_dir_all(&out));
|
2017-07-05 10:46:41 -06:00
|
|
|
let mut cmd = builder.tool_cmd(Tool::UnstableBookGen);
|
2017-07-04 19:41:43 -06:00
|
|
|
cmd.arg(build.src.join("src"));
|
|
|
|
cmd.arg(out);
|
|
|
|
|
|
|
|
build.run(&mut cmd);
|
|
|
|
}
|
2017-06-12 21:35:47 +02:00
|
|
|
}
|
|
|
|
|
2017-03-01 15:34:54 -08:00
|
|
|
fn symlink_dir_force(src: &Path, dst: &Path) -> io::Result<()> {
|
|
|
|
if let Ok(m) = fs::symlink_metadata(dst) {
|
|
|
|
if m.file_type().is_dir() {
|
|
|
|
try!(fs::remove_dir_all(dst));
|
|
|
|
} else {
|
|
|
|
// handle directory junctions on windows by falling back to
|
|
|
|
// `remove_dir`.
|
|
|
|
try!(fs::remove_file(dst).or_else(|_| {
|
|
|
|
fs::remove_dir(dst)
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
symlink_dir(src, dst)
|
|
|
|
}
|