about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
AgeCommit message (Collapse)AuthorLines
2020-09-15Add Salsa In More Depth lectureSantiago Pastorino-1/+4
2020-09-15Use latest patch release of mdBook and linkcheckCamelid-2/+2
2020-09-15Bump mdbook versionCamelid-1/+1
0.4.1 -> 0.4.3
2020-09-14Fix typoLeSeulArtichaut-1/+1
Co-authored-by: Who? Me?! <mark-i-m@users.noreply.github.com>
2020-09-14Make the HIR chapter point to the new chapter on IDsLeSeulArtichaut-36/+10
2020-09-14Apply suggestions from code reviewLeSeulArtichaut-2/+2
Co-authored-by: Tshepang Lekhonkhobe <tshepang@gmail.com>
2020-09-14Add a chapter on all the identifiers used through `rustc`LeSeulArtichaut-0/+64
2020-09-13Update `Visitor` and `Cursor` examplesDylan MacKenzie-4/+4
2020-09-13Line editsDylan MacKenzie-24/+29
2020-09-13Add missing link to `Engine`Dylan MacKenzie-0/+1
2020-09-13Initial draft of MIR dataflow framework docsDylan MacKenzie-0/+166
2020-09-12correct attribute used hereMonadic Cat-1/+1
2020-09-12Address nitsJoshua Nelson-2/+2
2020-09-12Note that the default is 2015Joshua Nelson-1/+2
2020-09-12Document edition flag for UI testsJoshua Nelson-0/+1
2020-09-12Fix typoLeSeulArtichaut-1/+1
2020-09-12Hide `@rustdoc` implementation detailsLeSeulArtichaut-3/+4
2020-09-12Apply suggestions from code reviewLeSeulArtichaut-3/+3
Co-authored-by: Camelid <37223377+camelid@users.noreply.github.com> Co-authored-by: Joshua Nelson <joshua@yottadb.com>
2020-09-12Update src/rustbot.mdTshepang Lekhonkhobe-1/+1
2020-09-12Update src/rustbot.mdTshepang Lekhonkhobe-1/+1
2020-09-12Update src/contributing.mdTshepang Lekhonkhobe-1/+1
Co-authored-by: Camelid <37223377+camelid@users.noreply.github.com>
2020-09-12Update src/contributing.mdTshepang Lekhonkhobe-1/+1
2020-09-12Add a chapter on useful `@rustbot` commandsLeSeulArtichaut-4/+76
2020-09-12Improve link and description of entry points in parser section (#876)Gus Wynn-2/+3
This seemed to be out of date!
2020-09-11Fix typoLeSeulArtichaut-1/+1
Co-authored-by: Tshepang Lekhonkhobe <tshepang@gmail.com>
2020-09-11Apply suggestions from code reviewLeSeulArtichaut-4/+5
Co-authored-by: Joshua Nelson <joshua@yottadb.com>
2020-09-11Clean up 'Contributing to Rust - Pull Requests'LeSeulArtichaut-36/+54
2020-09-10Fix other library commandsJoshua Nelson-1/+1
2020-09-10Fix incorrect docs about stagesJoshua Nelson-1/+1
`build library/core` builds the compiler, not just the standard library.
2020-09-09Add back information about GooglingCamelid-16/+20
Also cleaned up some other things.
2020-09-09Add back commaCamelid-1/+1
Co-authored-by: Joshua Nelson <joshua@yottadb.com>
2020-09-09Add more info about RustdocCamelid-1/+4
2020-09-09Update "Helpful Links" sectionCamelid-14/+13
2020-09-09Use imprecise times, because the time to build depends on your computerJoshua Nelson-1/+1
Co-authored-by: Camelid <37223377+camelid@users.noreply.github.com>
2020-09-09Minor cleanup for "How to build and run"Camelid-10/+9
2020-09-09broken intra-page link from spanview to graphvizRich Kadel-1/+1
Just noticed the link was not correct. Fixed here.
2020-09-09Fix nitJoshua Nelson-1/+1
2020-09-09Update src/building/new-target.mdTshepang Lekhonkhobe-1/+1
2020-09-09Document how to promote a target from cross-compiled to hostedJoshua Nelson-0/+9
2020-09-09Update src/queries/profiling.mdSantiago Pastorino-1/+1
Co-authored-by: Joshua Nelson <joshua@yottadb.com>
2020-09-09Update def_id.rs locationSantiago Pastorino-1/+1
2020-09-09Fix typo, hellow -> helloSantiago Pastorino-1/+1
2020-09-09Add ./ to run x.pySantiago Pastorino-1/+1
2020-09-09Update prerequisites, with an eye towards windows (#863)Joshua Nelson-6/+14
* Update prerequisites, with an eye towards windows * Address review comments - Say version of MSVC needed - Link to more details windows section - Fix grammar
2020-09-09Fix broken hyperlink (#862)Joshua Nelson-1/+3
* Fix broken hyperlink * Link to previous pages instead of skipping ahead * Fix line lengths
2020-09-09Add information about default stages for x.pyJoshua Nelson-0/+14
2020-09-09Fix typoJoshua Nelson-1/+1
2020-09-09Document speculative crate loading (#859)Joshua Nelson-0/+17
2020-09-08Update error codes to match the current implementationJoshua Nelson-12/+16
- All codes are in one crate, `rustc_error_codes` - Extended descriptions are loaded using `include_str!` - Give an example of a PR adding an error code
2020-09-07Consolidate information about bootstrapping into one place (#851)Joshua Nelson-50/+38
Previously, 'How to build and run' had a long section on the different stages of boostrap. But new contributors aren't interested in bootstrap; they want to start their build (because they heard it takes forever and want to start it so they aren't waiting more than necessary). This moves the section on stages into the bootstrapping page, and links there instead of discussing it on the main page.