summary refs log tree commit diff
path: root/src/bootstrap/bin/rustdoc.rs
AgeCommit message (Collapse)AuthorLines
2017-10-15Don't use target's linker when linking build scriptsVadim Petrochenkov-1/+1
2017-10-15rustbuild: Support specifying archiver and linker explicitlyVadim Petrochenkov-0/+3
2017-10-10render the rust version into std/compiler/test docsQuietMisdreavus-0/+8
2017-06-21rustbuild: Fix compiler docs yet againOliver Middleton-5/+5
Add support for `-Z force-unstable-if-unmarked` to rustdoc.
2017-03-27rustbuild: Fix compiler docs againOliver Middleton-0/+8
The docs need to be built with the rustbuild feature so the correct stability attributes (rustc_private) get applied.
2016-12-24Teach `rustdoc --test` about `--sysroot`, pass it when testing rustAidan Hobson Sayers-0/+3
This permits rustdoc tests to work in stage0
2016-12-20rustbuild: Deny and fix warningsAlex Crichton-0/+2
Turned out this lint uncovered an actual bug! Closes #38484
2016-10-16run rustfmt on bootstrap/bin folderSrinivas Reddy Thatiparthy-4/+6
2016-09-25Report which required build-time environment variable is not setJake Goulding-4/+4
2016-07-05rustbuild: Remove the `build` directoryAlex Crichton-0/+40
The organization in rustbuild was a little odd at the moment where the `lib.rs` was quite small but the binary `main.rs` was much larger. Unfortunately as well there was a `build/` directory with the implementation of the build system, but this directory was ignored by GitHub on the file-search prompt which was a little annoying. This commit reorganizes rustbuild slightly where all the library files (the build system) is located directly inside of `src/bootstrap` and all the binaries now live in `src/bootstrap/bin` (they're small). Hopefully this should allow GitHub to index and allow navigating all the files while maintaining a relatively similar layout to the other libraries in `src/`.