about summary refs log tree commit diff
path: root/src/doc
AgeCommit message (Collapse)AuthorLines
2021-09-20const generics updatelcnr-4/+5
2021-09-19s/--blessed/--bless/Tomasz Miąsko-2/+2
2021-09-17Make indentation consistent in example vscode config fileFrank Steffahn-2/+2
2021-09-17Suggests `--edition=2018` argument when using stage0/bin/rustfmt directlyFrank Steffahn-2/+5
2021-09-17`ty::Unevaluated`: dealing with unused substs (#1190)lcnr-0/+65
* unused ct substs * q * q * Update src/constants.md Co-authored-by: Niko Matsakis <niko@alum.mit.edu>
2021-09-17doc/platform-support: Add documentation for m68k-unknown-linux-gnuJohn Paul Adrian Glaubitz-0/+97
2021-09-17doc/platform-support.md: Add m68k-unknown-linux-gnu as Tier 3 targetJohn Paul Adrian Glaubitz-0/+1
2021-09-16Parallel codegen (#1206)Sl1mb0-3/+15
* Described underlying data structures in parallel code generation and crates they are used in * Added links * replace crate information with description of types
2021-09-16Rollup merge of #88985 - Commeownist:patch-1, r=AmanieuManish Goregaokar-3/+3
Update clobber_abi list to include k[1-7] regs
2021-09-15Rollup merge of #88951 - ehuss:update-books, r=ehussManish Goregaokar-0/+0
Update books ## rust-by-example 1 commits in 04f489c889235fe3b6dfe678ae5410d07deda958..9d4132b56c4999cd3ce1aeca5f1b2f2cb0d11c24 2021-08-17 08:01:20 -0300 to 2021-09-14 06:56:00 -0300 - Fix link to "integration testing" page (rust-lang/rust-by-example#1458) ## rustc-dev-guide 17 commits in 95f1acf9a39d6f402f654e917e2c1dfdb779c5fc..9198465b6ca8bed669df0cbb67c0e6d0b140803c 2021-08-31 12:38:30 -0500 to 2021-09-12 11:50:44 -0500 - Clarify difference of a help vs note diagnostic. - remove ctag section - Update suggested.md - Update SUMMARY.md - Move ctag section to "Suggested Workflow" - Delete ctags.md - Clarify paragraph in "Keeping things up to date" - Docs: added section on rustdoc - Docs: made suggested fix - Docs: deleted copy - Docs: added section discussing core ideas - Docs: delete redundant use of correctness - Docs: consolidated parallelism information - Add links to overview.md (rust-lang/rustc-dev-guide#1202) - Spelling change intermidiate to intermediate - Fix a typo (rust-lang/rustc-dev-guide#1200) - Documenting diagnostic items with their usage and naming conventions (rust-lang/rustc-dev-guide#1192) ## embedded-book 1 commits in c3a51e23859554369e6bbb5128dcef0e4f159fb5..4c76da9ddb4650203c129fceffdea95a3466c205 2021-08-26 07:04:58 +0000 to 2021-09-12 12:43:03 +0000 - 2.1(QEMU): update app name for git project init (rust-embedded/book#301)
2021-09-15Rollup merge of #87320 - danakj:debug-compilation-dir, r=michaelwoeristerManish Goregaokar-0/+24
Introduce -Z remap-cwd-prefix switch This switch remaps any absolute paths rooted under the current working directory to a new value. This includes remapping the debug info in `DW_AT_comp_dir` and `DW_AT_decl_file`. Importantly, this flag does not require passing the current working directory to the compiler, such that the command line can be run on any machine (with the same input files) and produce the same results. This is critical property for debugging compiler issues that crop up on remote machines. This is based on adetaylor's https://github.com/rust-lang/rust/commit/dbc4ae7cba0ba8d650b91ddd459b86a02a2d05c5 Major Change Proposal: https://github.com/rust-lang/compiler-team/issues/450 Discussed on #38322. Would resolve issue #87325.
2021-09-15Update clobber_abi list to include k[1-7] regsCommeownist-3/+3
2021-09-14Update booksEric Huss-0/+0
2021-09-14Rename --display-warnings to --display-doctest-warningsGuillaume Gomez-3/+3
2021-09-13Auto merge of #88529 - Meziu:master, r=nagisabors-0/+1
ARMv6K Nintendo 3DS Tier 3 target added Addition of the target specifications to build .elf files for Nintendo 3DS (ARMv6K, Horizon). Requires devkitARM 3DS toolkit for system libraries and arm-none-eabi-gcc linker.
2021-09-12Clarify difference of a help vs note diagnostic.Eric Huss-3/+7
2021-09-11correct ARM+MUSL notesoliverbr-2/+2
- use "with MUSL" style where applicable - add "hardfloat" suffix for "armv7-unknown-linux-musleabihf"
2021-09-10Fix typo `option` -> `options`.Gerd Zellweger-1/+1
2021-09-08remove ctag sectionAndrey Cherkashin-27/+0
2021-09-08Update suggested.mdAndrey Cherkashin-1/+0
2021-09-08Update SUMMARY.mdAndrey Cherkashin-1/+0
2021-09-08Move ctag section to "Suggested Workflow"Andrey Cherkashin-0/+28
2021-09-08Delete ctags.mdAndrey Cherkashin-26/+0
2021-09-08Clarify paragraph in "Keeping things up to date"Noah Lev-3/+3
2021-09-07Move documentation to the unstable bookdanakj-13/+24
2021-09-07remap-cwd-prefixdanakj-0/+13
2021-09-07Docs: added section on rustdocTimothy Maloney-0/+7
2021-09-07Docs: made suggested fixTimothy Maloney-1/+1
2021-09-07Docs: deleted copyTimothy Maloney-6/+0
2021-09-07Docs: added section discussing core ideasTimothy Maloney-1/+16
2021-09-07Docs: delete redundant use of correctnessTimothy Maloney-1/+1
2021-09-07Docs: consolidated parallelism informationTimothy Maloney-47/+47
2021-09-06Add links to overview.md (#1202)Dezhi Wu-7/+13
2021-09-05Spelling change intermidiate to intermediatesjud-2/+2
Very importent change.
2021-09-05Fix a typo (#1200)Dezhi Wu-1/+1
2021-09-01Documenting diagnostic items with their usage and naming conventions (#1192)Fridtjof Stoldt-0/+147
* Documenting diagnostic items with their usage and naming conventions * Fixed typos in diagnostic items documentation Co-authored-by: Camelid <camelidcamel@gmail.com> Co-authored-by: Camelid <camelidcamel@gmail.com>
2021-09-01Update cargo, booksEric Huss-0/+0
2021-09-01Rollup merge of #88350 - programmerjake:add-ppc-cr-xer-clobbers, r=AmanieuMara Bos-0/+4
add support for clobbering xer, cr, and cr[0-7] for asm! on OpenPower/PowerPC Fixes #88315
2021-08-31Add link to `Span`Noah Lev-1/+2
2021-08-31Add rustc-source to suggested rust-analyzer config (#1189)Joshua Nelson-0/+1
This allows loading the sources for crates loaded from the sysroot.
2021-08-31Fix typo, clarify backtick wording, and use inline codeNoah Lev-4/+4
2021-08-31ARMv6K Nintendo 3DS Tier 3 target addedMeziu-0/+1
2021-08-30update rustc cmdargs markdown sectionHTG-YT-1/+1
2021-08-30Auto merge of #88281 - asquared31415:asm-docs, r=Amanieubors-19/+20
Update unstable docs for `asm!` macro This adds documentation that SPIR-V is supported, expands on the restrictions for labels, and has some minor cleanups or clarifications. r? `@joshtriplett`
2021-08-28Trailing date comments in a line inside of a paragraph caused beginning of a ↵Frank Steffahn-4/+4
new paragraph. (#1196) This PR fixes the 2 occurrences of that. (I'm not sure if there's an underlying issue with mdbook or if this is working as intended.)
2021-08-28Fix warning "Renderer command uses a path relative to the renderer output ↵Frank Steffahn-1/+1
directory ..." (#1194)
2021-08-27Fix a code block containing ```rustFrank Steffahn-1/+1
This wasn't displayed correctly. Changing `` ```rust `` to `` ```rust`` made it a code block again, but the leading space was rendered as-well. (This may be an issue in mdbook, but I'm not sure.) This commit changes it to use HTML-syntax in order to get the desired result.
2021-08-26date-check: Recognize capitalized 'Date' as wellNoah Lev-1/+7
Now, if people use 'Date' instead of 'date', it won't be ignored.
2021-08-25add support for clobbering xer, cr, and cr[0-7] for asm! on OpenPower/PowerPCJacob Lifshay-0/+4
Fixes #88315
2021-08-25Rollup merge of #88277 - ehuss:update-books, r=ehussLéo Lanteri Thauvin-0/+0
Update books ## reference 1 commits in 4884fe45c14f8b22121760fb117181bb4da8dfe0..da6ea9b03f74cae0a292f40315723d7a3a973637 2021-07-28 21:31:28 -0700 to 2021-08-19 21:28:10 -0700 - Allow users to change status labels (rust-lang/reference#1083) ## book 7 commits in 7e49659102f0977d9142190e1ba23345c0f00eb1..687e21bde2ea10c261f79fa14797c5137425098d 2021-08-03 21:41:35 -0400 to 2021-08-18 20:48:38 -0400 - Small tweaks to Ferris size and position - Retain previous height: auto just in case - Shrink and move ferris when possible - Snapshot chapter 6 for nostarch - Demonstrate variable as catch-all for match. Fixes rust-lang/book#1868. - Improve the if let example to have a binding pattern. Fixes rust-lang/book#1401. - Fixes typo (rust-lang/book#2816) ## rust-by-example 1 commits in 0dc9cd4e89f00cb5230f120e1a083916386e422b..04f489c889235fe3b6dfe678ae5410d07deda958 2021-07-23 09:14:27 -0300 to 2021-08-17 08:01:20 -0300 - Grammar mistake (rust-lang/rust-by-example#1456) ## rustc-dev-guide 5 commits in c4644b427cbdaafc7a87be0ccdf5d8aaa07ac35f..cf0e151b7925a40f13fbc6573c6f97d5f94c7c17 2021-08-10 20:41:44 +0900 to 2021-08-22 11:47:02 -0300 - Fix typo “a Rc” → “an Rc” (rust-lang/rustc-dev-guide#1191) - Expand THIR section with more details (rust-lang/rustc-dev-guide#1183) - Remove docs for old -Z profile-queries flag - update mdbook version to latest - allow to quickly edit a page directly on github