about summary refs log tree commit diff
path: root/src/doc
AgeCommit message (Collapse)AuthorLines
2020-07-09Move to unstable sectionManish Goregaokar-89/+42
2020-07-09Update src/doc/rustdoc/src/intra-doc-links.mdManish Goregaokar-1/+0
2020-07-09Add docs for intra-doc-linksManish Goregaokar-0/+60
2020-07-08Fix broken link in rustdocdocYuki Okushi-1/+1
2020-07-07Update booksEric Huss-0/+0
2020-07-05Rollup merge of #73787 - pickfire:rustc-attrs, r=RalfJungManish Goregaokar-0/+53
Add unstable docs for rustc_attrs r? @RalfJung
2020-07-05Canonicalize part 1 name (#788)Matt Kraai-1/+1
2020-07-04Suggest selectively disabling optimizationsNadrieril-0/+16
2020-07-04Update bug report links.Eric Huss-2/+2
2020-07-04Fix link for armhf-gnu DockerfileYuki Okushi-2/+2
2020-07-04Update docs on using Docker images.Eric Huss-6/+44
2020-07-03Rollup merge of #73670 - davidhewitt:format-args-capture, r=varkorManish Goregaokar-0/+47
Add `format_args_capture` feature This is the initial implementation PR for [RFC 2795](https://github.com/rust-lang/rfcs/pull/2795). Note that, as dicussed in the tracking issue (#67984), the feature gate has been called `format_args_capture`. Next up I guess I need to add documentation for this feature. I've not written any docs before for rustc / std so I would appreciate suggestions on where I should add docs.
2020-07-03Update mdbookEric Huss-1/+1
2020-07-04Fix jump marker of debruijn index (#783)Takayuki Nakata-1/+1
2020-07-04Minor updates to stage docs. (#781)Eric Huss-15/+17
2020-07-03add stub inline asm chapter (#773)Who? Me?!-0/+4
2020-07-02Fix the names of table of contents and heading are differentTakayuki Nakata-3/+3
Not to write the part of Appendix `A` in heading along with other appendix.
2020-07-01fix linksmark-4/+4
2020-07-01Escape other non-linkWho? Me?!-1/+1
Co-authored-by: Joshua Nelson <joshua@yottadb.com>
2020-07-01Fix non-linkWho? Me?!-1/+1
Co-authored-by: Joshua Nelson <joshua@yottadb.com>
2020-07-01fix linksmark-5/+8
2020-07-01fix linksmark-8/+11
2020-07-01line lengthmark-2/+3
2020-07-01move CONTRIBUTING.md to rustc-dev-guidemark-0/+500
2020-07-01Edit Part 2 introduction (#777)pierwill-4/+3
* Edit Part 2 introduction * needs a pause Co-authored-by: Tshepang Lekhonkhobe <tshepang@gmail.com>
2020-06-30Stabilize `#[track_caller]`.Adam Perry-5/+0
Does not yet make its constness stable, though. Use of `Location::caller` in const contexts is still gated by `#![feature(const_caller_location)]`.
2020-06-30fix file namemark-1/+1
2020-06-30Move Getting Started to a "prefix chapter"Who? Me?!-1/+2
2020-06-30Move Errors and Lints to AnalysisWho? Me?!-3/+4
2020-06-30Rename resolvers following the latest rustc change (#776)Yuki Okushi-4/+4
2020-06-29Ignore example compile in rustc-attrs docIvan Tham-2/+2
2020-06-28Edit ty.mdpierwill-45/+40
Makes various edits throughout for formatting, punctuation, and typo fixes. Also makes some edits and re-wording for clarity.
2020-06-28Fix line lengthsJoshua Nelson-1/+2
2020-06-28Improve wording and fix typosJoshua Nelson-2/+2
Co-authored-by: Who? Me?! <mark-i-m@users.noreply.github.com>
2020-06-28Revamp bootstrapping sectionJoshua Nelson-20/+88
- Move most of the overview to building/bootstrapping.md - Add things besides stages to bootstrapping.md
2020-06-28Remove `const_if_match` from unstable bookDylan MacKenzie-14/+0
2020-06-28Add preamable on rustc-attrs doc discussionIvan Tham-0/+3
2020-06-27Add `format_args_capture` to the unstable bookDavid Hewitt-0/+47
2020-06-28Update src/doc/unstable-book/src/language-features/rustc-attrs.mdIvan Tham-1/+1
Co-authored-by: Ralf Jung <post@ralfj.de>
2020-06-27Add 'recovery' to the gloassaryAaron Hill-0/+1
2020-06-27fix typo in self-profile.mdTakuto Ikuta-1/+1
2020-06-27Add unstable docs for rustc_attrsIvan Tham-0/+50
2020-06-26Fold chapters by default to make ToC shorterWho? Me?!-1/+1
2020-06-26Rollup merge of #73588 - Amanieu:thumb-fp, r=nagisaManish Goregaokar-2/+6
Fix handling of reserved registers for ARM inline asm `r6` is now disallowed as an operand since LLVM sometimes uses it as a base pointer. The check against using the frame pointer as an operand now takes the platform into account and will block either `r7` or `r11` as appropriate. Fixes #73450 cc @cbiffle
2020-06-24Fix formattingWho? Me?!-2/+2
2020-06-24Upgrade to mdbook 0.4 and switch to book parts (#764)Who? Me?!-134/+144
* upgrade to mdbook 0.4 and switch to book parts * update linkcheck * fix links, update about-this-guide
2020-06-23Update booksEric Huss-0/+0
2020-06-23Move x.py commands to overviewJoshua Nelson-4/+5
2020-06-23Split up rustdoc pageJoshua Nelson-191/+200
2020-06-23Move rustdoc to 'How to build the compiler'Joshua Nelson-1/+1
The old layout was less about rustdoc and more about the compiler: "Here is an example of a project using rustc_interface". This gives focus to rustdoc on something you might want to work on for its own sake. It also makes the page much easier to find for newcomers.