Commit Graph

2650 Commits

Author SHA1 Message Date
Joren-vanGoethem 636c5b1a4d
Update about-this-guide.md 2025-01-28 07:43:16 +01:00
Eric Huss ae3a58a13a
Correct information on dylib compression
Compression of dylibs was removed in https://github.com/rust-lang/rust/pull/113695 (and decompression removed in https://github.com/rust-lang/rust/pull/132402).
2025-01-26 12:08:48 -08:00
许杰友 Jieyou Xu (Joe) a86a368f0f rustc-dev-guide: update bootstrap tracing docs 2025-01-27 01:24:53 +08:00
León Orell Valerian Liehr 3ffcf606a9
Remove accidental leading empty line in code block 2025-01-26 02:42:09 +01:00
Eric Huss 684424aeef Update boring lines to sync with rustdoc 2025-01-25 13:49:32 -08:00
Matthias Krüger eda1e03c12
Rollup merge of #135829 - Kobzol:rustc-push, r=jieyouxu
Rustc dev guide subtree update

r? ``@ghost``
2025-01-24 23:25:44 +01:00
Matthias Krüger 3dcb2ad5d9
Rollup merge of #135950 - Kobzol:tidy-python-improvements, r=onur-ozkan
Tidy Python improvements

Fixes display of Python formatting diffs in tidy, and refactors the code to make it simpler and more robust. Also documents Python formatting and linting in the Rustc dev guide.

Fixes: https://github.com/rust-lang/rust/issues/135942

r? `@onur-ozkan`
2025-01-24 16:25:44 +01:00
Matthias Krüger 2b37fbe050
Rollup merge of #135926 - jieyouxu:needs-subprocess-thread, r=oli-obk
Implement `needs-subprocess` directive, and cleanup a bunch of tests to use `needs-{subprocess,threads}`

### Summary

Closes #128295.

- Implements `//@ needs-subprocess` directive in compiletest as requested in #128295. However, compiletest is a host tool, so we can't just try to spawn process because that spawns the process on *host*, not the *target*, under cross-compilation scenarios.
    - The short-term solution is to add *Yet Another* list of allow-list targets.
    - The long-term solution is to first check if a `$target` supports std, then try to run a binary to do run-time capability detection *on the target*. But that is tricky because you have to build-and-run a binary *for the target*.
    - This PR picks the short-term solution, because the long-term solution is highly non-trivial, and it's already an improvement over individual `ignore-*`s all over the place.
    - Opened an issue about the long-term solution in #135928.
- Documents `//@ needs-subprocess` in rustc-dev-guide.
- Replace `ignore-{wasm,wasm32,emscripten,sgx}` with `needs-{subprocess,threads}` where suitable in tests.
- Some drive-by test changes as I was trying to figure out if I could use `needs-{subprocess,threads}` and found some bits needlessly distracting.

Count of tests that use `ignore-{wasm,wasm32,emscripten,sgx}` before and after this PR:

| State | `ignore-sgx` | `ignore-wasm` | `ignore-emscripten` |
| - | - | - | - |
| Before this PR | 96 | 88 | 207 |
| After this PR | 36 | 38 | 61 |

<details>
<summary>Commands used to find out locally</summary>

```
--- before

[17:40] Joe:rust (fresh) | rg --no-ignore -l "ignore-sgx" tests | wc -l
96
[17:40] Joe:rust (fresh) | rg --no-ignore -l "ignore-wasm" tests | wc -l
88
[17:40] Joe:rust (fresh) | rg --no-ignore -l "ignore-emscripten" tests | wc -l
207

--- after

[17:39] Joe:rust (needs-subprocess-thread) | rg --no-ignore -l "ignore-sgx" tests | wc -l
36
[17:39] Joe:rust (needs-subprocess-thread) | rg --no-ignore -l "ignore-wasm" tests | wc -l
38
[17:39] Joe:rust (needs-subprocess-thread) | rg --no-ignore -l "ignore-emscripten" tests | wc -l
61
```
</details>

### Review advice

- Best reviewed commit-by-commit.
- Non-trivial test changes (not mechanically simple replacements) are split into individual commits to help with review. Their individual commit messages give some basic description of the changes.
- I *could* split some test changes out into another PR, but I found that I needed to change some tests to `needs-threads`, some to `needs-subprocess`, and some needed to use *both*, so they might conflict and become very annoying.

---

r? ``@ghost`` (need to run try jobs)

try-job: x86_64-msvc-1
try-job: i686-msvc-1
try-job: i686-mingw
try-job: x86_64-mingw-1
try-job: x86_64-apple-1
try-job: aarch64-apple
try-job: aarch64-gnu
try-job: test-various
try-job: armhf-gnu
2025-01-24 16:25:43 +01:00
Mads Marquart 2e060866f0 Cross-link documentation for adding a new target
Both the target tier policy and the rustc-dev-guide has documentation on
this, let's make sure people see both.
2025-01-24 14:40:12 +01:00
Ada Alakbarova 168456e7a3
fix(solve/significant-changes): typo 2025-01-24 14:12:17 +01:00
Jakub Beránek 80aac13e78
Document Python formatting and linting in the rustc-dev-guide 2025-01-24 09:35:46 +01:00
Matthias Krüger 74962603cb
Rollup merge of #135489 - RalfJung:TryFromSliceError, r=tgross35
remove pointless allowed_through_unstable_modules on TryFromSliceError

This got added in https://github.com/rust-lang/rust/pull/132482 but the PR does not explain why. `@lukas-code` do you still remember? Also Cc `@Noratrieb` as reviewer of that PR.

If I understand the issue description correctly, all paths under which this type is exported are stable now: `core::array::TryFromSliceError` and `std::array::TryFromSliceError`. If that is the case, we shouldn't have the attribute; it's a terrible hack that should only be used when needed to maintain backward compatibility. Getting some historic information right is IMO *not* sufficient justification to risk accidentally exposing this type via more unstable paths today or in the future.
2025-01-24 08:08:06 +01:00
Matthias Krüger 520ca6b0da
Rollup merge of #135880 - bjorn3:misc_driver_refactors, r=oli-obk
Get rid of RunCompiler

The various `set_*` methods that have been removed can be replaced by setting the respective fields in the `Callbacks::config` implementation. `set_using_internal_features` was often forgotten and it's equivalent is now done automatically.
2025-01-23 19:54:26 +01:00
许杰友 Jieyou Xu (Joe) 0f175948cd rustc-dev-guide: document `needs-subprocess` directive 2025-01-23 20:51:28 +08:00
bjorn3 76f7584f6a Remove RunCompiler
It has become nothing other than a wrapper around run_compiler.
2025-01-23 09:38:58 +00:00
Jakub Beránek 3543f80951
Add test for checking used glibc symbols 2025-01-21 10:20:24 +01:00
Jakub Beránek 8c5b8fa814
Merge pull request #2215 from Kobzol/pull
rustc pull
2025-01-20 15:54:51 +01:00
Jakub Beránek 1e32114309 Merge from rustc 2025-01-20 14:12:41 +01:00
Jakub Beránek 0ae03351d2 Add portable SIMD to list of subtrees 2025-01-20 13:53:10 +01:00
Noratrieb 166fa3b79e Fix dev guide docs for error-pattern
I know it would have made more sense to make this PR to the dev guide
repo but I had already made the fix before I realized that.
2025-01-19 11:36:41 +01:00
Yuki Okushi c1b4cfaa96
Merge pull request #2211 from patrickoliveira15/patch/inference-invariance 2025-01-18 05:26:20 +09:00
Patrick Oliveira fbceffc7ca
remove outdated text about wfx implies 2025-01-17 12:04:42 -03:00
许杰友 Jieyou Xu (Joe) e9d9b29d06 compiletest: fix outdated `rustdoc-js` test suite name 2025-01-17 08:40:04 +08:00
lcnr 46458edee5 nyaa 2025-01-15 14:23:48 +01:00
Ryan Mehri b4940bbed6 fix some more typos 2025-01-14 23:01:42 -08:00
Noah Lev 7a4c3d3c30 Fix some broken links
* Rename `StringReader -> Lexer`
* Remove deleted `Query` struct
* Update some internal links
2025-01-14 21:52:33 -08:00
Ralf Jung 1cd70aaa2c rustc-dev-guide: add note about not adding rustc_allowed_through_unstable_modules to more items 2025-01-14 17:00:12 +01:00
许杰友 Jieyou Xu (Joe) a58b85a26c rustc-dev-guide: document `BOOTSTRAP_TRACING` and bootstrap `tracing` setup 2025-01-13 13:46:20 +08:00
onur-ozkan eecd68cf55 rustc-dev-guide: update outdated LLVM stamp filename
Signed-off-by: onur-ozkan <work@onurozkan.dev>
2025-01-12 08:47:57 +03:00
许杰友 Jieyou Xu (Joe) aca4d07e08
Merge pull request #2205 from ehuss/ci-config 2025-01-11 00:34:43 +08:00
Eric Huss cd9705f029 Fix calculate-job-matrix.py link 2025-01-10 08:26:52 -08:00
Eric Huss 42768820fe Document how to find the configuration used in CI
This documents how to determine which settings are used in CI, since I
see this question come up regularly. We currently don't have a great way
to answer the question, but at least there is something.
2025-01-10 08:16:37 -08:00
Samson 8789c2cf9b
Fix rib example
related zulip thread: https://rust-lang.zulipchat.com/#narrow/channel/182449-t-compiler.2Fhelp/topic/Ribs.20in.20name.20resolution
2025-01-07 21:29:45 +01:00
Jakub Beránek 280d73878a Update rustc-dev-guide 2025-01-07 19:10:03 +01:00
Max Heller 0fd52366ca
Fix broken raw HTML (#2198) 2025-01-07 16:00:59 +08:00
许杰友 Jieyou Xu (Joe) 32835d18d8 Only keep label description in Forge docs 2025-01-06 18:59:36 +02:00
Jakub Beránek 1dad69ebd4
Add rustc-dev-guide to the list of repositories managed by josh (#2197) 2025-01-06 18:30:59 +08:00
Boxy 885fd79971 Split stuff out of representing types, and rewrite early/late bound chapter (#2192) 2025-01-05 17:51:45 +01:00
Stuart Cook bb71c99918 Describe how to use rust-analyzer with `rmake.rs` (#2191) 2025-01-05 17:51:45 +01:00
Tshepang Mbambo 027bbb345c fix comment 2025-01-05 17:51:45 +01:00
Tshepang Mbambo b3b1d09278 make paragraph more readable 2025-01-05 17:51:45 +01:00
Tshepang Mbambo 7dbf25b2f8 repetition not needed 2025-01-05 17:51:45 +01:00
Jakub Beránek eb70681870 Document josh subtrees and update subtree repository list (#2182) 2025-01-05 17:51:45 +01:00
Onur Özkan 63548be44e comment out FIXMEs to not display them on UI (#2186) 2025-01-05 17:51:45 +01:00
Max Heller 08b4cd8efc Use `id` attribute for `<a>` tags instead of deprecated `name` attribute (#2184) 2024-12-31 22:02:50 +08:00
Stuart Cook 6637742182 Remove stale implementation details of coverage instrumentation (#2179)
This level of detail in the dev guide is a maintenance burden; better to leave
this sort of thing to in-tree comments.
2024-12-30 12:02:52 +11:00
Martin Liška ddff18e30a Add missing link for [Node] (#2177) 2024-12-30 04:34:34 +08:00
Martin Liška ecad0213d7 Fix 403 received for HEAD request (#2176) 2024-12-30 04:33:45 +08:00
clubby789 5f32a38a3d Document `x test --no-capture` (#2174) 2024-12-28 19:55:20 +08:00
Stuart Cook 9b22375c78 Remove the `-test` suffix from normalize directives (#2172) 2024-12-28 17:32:43 +08:00
bjorn3 e70f551db6 Rework the driver docs (#2162) 2024-12-27 20:40:32 +08:00
clubby789 4e746875ed Document `forbid-output` for UI tests (#2171) 2024-12-27 12:21:52 +00:00
clubby789 b746f63983 completions: Zsh is now supported (#2173) 2024-12-27 09:03:10 +08:00
lcnr 6af30f87b7 region-outlives propagation (#2169)
* region-outlives propagation

* woops

* gamer
2024-12-23 10:17:51 +01:00
clubby789 a49028cf1e Document the `--debugger` flag (#2170) 2024-12-23 08:43:28 +00:00
Marco Ieni b5529ca9ba document the public ci dashboard (#2167) 2024-12-18 19:53:17 +08:00
Chris Bloodsworth 6afff2e610 Fix trivial typo of "query-fied"
"Query-field" should be "Query-fied" - three instances.
2024-12-18 08:01:33 +02:00
Tshepang Mbambo ee9a5845e0 typo, pause 2024-12-18 07:56:30 +02:00
Ryan Mehri 421c7282e1 Fix some typos 2024-12-18 07:56:30 +02:00
Eric Huss 766fbbbe3d Add suggestion for `--keep-stage 0` (#2164) 2024-12-18 01:00:38 +08:00
Connor Tsui 8e495d4b93 specify what a CGU is (#2163) 2024-12-16 15:12:01 +08:00
Tshepang Mbambo 1f2c5e10ff functionality removed from codebase (part 2) (#2160) 2024-12-10 22:27:37 +08:00
Tshepang Mbambo 8f3bf55222 functionality removed from codebase (#2159) 2024-12-10 22:11:11 +08:00
Orion Gonzalez 3ca330e1c3 remove polymorphization 2024-12-10 13:29:13 +00:00
Ralf Jung fcadf9608b squashing: recommend --keep-base when squashing without a conflict (#2157) 2024-12-07 06:59:23 +08:00
lcnr 1f851c0fc5 update section even more (#2156) 2024-12-05 20:30:36 +08:00
lcnr fccf752c1c closure constraints (#2155) 2024-12-05 12:01:46 +01:00
许杰友 Jieyou Xu (Joe) 740947ed6d Remove `//@ compare-output-lines-by-subset` directive (#2151) 2024-12-05 13:02:11 +08:00
许杰友 Jieyou Xu (Joe) df234c0f0e Document `needs-target-has-atomic` directive (#2154) 2024-12-05 13:01:46 +08:00
许杰友 Jieyou Xu (Joe) 8df3580d08 Spell out `git submodule deinit -f --all` (#2153) 2024-12-02 12:45:30 +08:00
许杰友 Jieyou Xu (Joe) 54c6a86858 Explain how to deal with exploded git submodules (#2152) 2024-12-02 12:38:56 +08:00
许杰友 Jieyou Xu (Joe) 67054cce92 Update `//@ proc-macro` aux build directive docs (#2149)
Co-authored-by: Eric Huss <eric@huss.org>
2024-11-29 13:01:15 +08:00
许杰友 Jieyou Xu (Joe) 65a59a3398 Remove `pretty-expanded` as it no longer exists (#2147) 2024-11-28 09:27:28 +08:00
Keith Wansbrough 8d9b40183e Fix trivial typo
"And" should be "An" - one instance.
2024-11-27 18:31:18 -05:00
Camille Gillot 0962f0e058 Remove -Zfuel. (#2032) 2024-11-27 18:31:58 +08:00
Boxy c4737a8d01 Remove constants section as it is outdated 2024-11-22 11:17:57 +00:00
Boxy f71456b753 Flatten generic parameter defs section 2024-11-22 11:17:57 +00:00
Taylor Cramer 6ea822df54 Add instructions to test error code docs (#2145) 2024-11-21 10:58:56 -08:00
Boxy 47a3a1d261 Reorganize the "Source Code Representation" chapters (#2142) 2024-11-21 20:28:23 +08:00
Yutaro Ohno 16e30472c9 Make `Diag` a clickable link in Suggestion section (#2140) 2024-11-20 16:21:27 +08:00
Ralf Jung 544b1fc77d update for rustc_intrinsic_const_stable_indirect (#2138)
Update for rust-lang/rust#133142
2024-11-18 18:16:00 +01:00
许杰友 Jieyou Xu (Joe) 65e7344ebb Mention `RUSTC_BOOTSTRAP` for misc testing (#2136) 2024-11-18 16:18:15 +08:00
许杰友 Jieyou Xu (Joe) 1f42c533c9 Document how to acquire `cdb.exe` (#2137) 2024-11-16 16:53:42 +00:00
许杰友 Jieyou Xu (Joe) 7ed13a5faf Document `max-llvm-major-version` directive (#2129) 2024-11-14 22:16:16 +08:00
许杰友 Jieyou Xu (Joe) 530b2eb228 Document `exact-llvm-major-version` directive (#2135) 2024-11-14 17:38:14 +08:00
Sam Estep 67dc382ac5 Note Rustfmt for separate rust-analyzer directory (#2134) 2024-11-13 21:37:25 +08:00
Tshepang Mbambo 4ff8d9a171 still accurate (#2133) 2024-11-10 13:18:32 +08:00
Tshepang Mbambo aaa854803f typo (#2132) 2024-11-10 11:36:49 +08:00
Tshepang Mbambo 13ae69b254 add valid date-check marker 2024-11-09 22:39:14 +02:00
Tbkhi c423c5636d Update parallel-rustc.md (#1926)
Co-authored-by: SparrowLii <liyuan179@huawei.com>
Co-authored-by: Jieyou Xu <jieyouxu@outlook.com>
2024-11-08 16:59:36 +08:00
许杰友 Jieyou Xu (Joe) 5d7107b836 Rename `{ignore,only}-debug` -> `{ignore,needs}-{rustc,std}-debug-assertions` (#2101) 2024-11-08 15:06:55 +08:00
Ralf Jung 9532ff1e18 update const stability docs (#2111) 2024-11-05 17:26:56 +08:00
Barrett 6ef78e3691 diagnostics: lists should use the Oxford comma
we encountered this in https://github.com/rust-lang/rust/pull/131038

kinda felt like an unspoken rule so here's a more concrete
clarification.
2024-11-05 09:22:17 +02:00
Eric Huss a927b95352 Add a link for the `reference` compiletest header (#2096) 2024-11-04 22:40:57 +08:00
León Orell Valerian Liehr f0cba7ad09 Slightly fix up the glossary (#2127) 2024-11-04 13:03:02 +00:00
León Orell Valerian Liehr 117f9c526d Remove an mdbook workaround (#2124)
The original issue has been fixed, the workaround is no longer necessary.
2024-11-04 11:53:06 +00:00
Martin Liška be78802b46 Fix broken links (#2123) 2024-11-04 16:24:05 +08:00
Martin Liška b289220795 Fix minicore.rs link (#2122) 2024-11-04 16:17:28 +08:00
Nicholas Nethercote 2d1a0479a6 Update for recent dataflow simplifications. (#2121) 2024-11-04 15:57:00 +08:00
许杰友 Jieyou Xu (Joe) a54fe7590c Describe `minicore` test auxiliary and directive (#2097) 2024-11-04 14:26:20 +08:00
许杰友 Jieyou Xu (Joe) b088cb6d97 Fix and update docs for `needs-force-clang-based-tests` (#2085) 2024-11-04 14:17:37 +08:00
Martin Liška 6880243036 Fix borked links (#2119) 2024-11-03 15:58:43 +08:00
DianQK 168301374d Describe how to revert a PR (#2118)
Co-authored-by: Jieyou Xu <jieyouxu@outlook.com>
2024-11-03 14:32:15 +08:00
Michael Goulet c5287a80f4 Ok now linkify 2024-11-02 16:45:00 -04:00
Michael Goulet a98daf1038 Try to fix footnotes 2024-11-02 15:16:04 -04:00
Martin Liška cbd5436e1d Fix rustc-related links that are 404 right now (#2112) 2024-11-02 20:53:31 +08:00
Michael Goulet 30f861c671 fix permalinks 2024-11-02 15:27:40 +08:00
Michael Goulet c21a829aab Async closures chapter 2024-11-02 15:27:40 +08:00
David Wood 9e83adad73 update rfl ci job policy (#2108) 2024-11-01 01:46:24 +08:00
Thomas Nyman 1170f0de32 Fix internal and incomplete links (#2107)
* Fix broken link in syntax-intro.md

* Fix broken link in tests/compiletest.md

* Fix incorrectly formatted reference-style link in compiler-src.md

* Fix broken links to rustc-driver.md to point to rustc-driver/intro.md

* Define URLs for incomplete links to rustc sources in stabilization_guide.md

* Define link to coherence.md for incomplete link in solve/invariants.md
2024-10-31 11:13:57 +08:00
Stuart Cook 93738ab172 Describe why and how to use a separate build directory for rust-analyzer (#2106) 2024-10-29 18:16:11 +08:00
许杰友 Jieyou Xu (Joe) d4b49fd93f Update current status of diagnostics translation infra (#2105) 2024-10-28 17:37:50 +08:00
Ralf Jung c31d23bff7 update const stability docs (#2098) 2024-10-26 20:20:45 +08:00
Stuart Cook 7f82658877 Advice on auto-formatting C++ code (#2104) 2024-10-25 12:17:44 +08:00
lolbinarycat cd7464ce4b Update compiler-src.md (#2102)
fix conflicting link names that lead to the "chapter link" leading to rustdoc's source code instead.
2024-10-24 17:33:08 -03:00
Juniper Tyree 58b2b24c1d Add the WASM | WASI | Emscripten notification groups (#2100) 2024-10-21 10:30:07 +08:00
Tbkhi f1f5ec1b21 Update bootstrapping.md (#1900)
Co-authored-by: Jieyou Xu <39484203+jieyouxu@users.noreply.github.com>
Co-authored-by: Tbkhi <me.stole546@silomails.com>
2024-10-13 17:51:38 +08:00
Stuart Cook 0e2bebfe2d Rename `needs-profiler-support` to `needs-profiler-runtime` (#2095) 2024-10-10 09:27:13 +11:00
Stuart Cook f2eb9245ca Document compiletest directives `ignore-coverage-map` and `ignore-coverage-run` (#2094) 2024-10-09 10:21:58 +08:00
许杰友 Jieyou Xu (Joe) 6f4b909f69 Purge `run-pass-valgrind` mentions 2024-10-07 23:12:09 +02:00
Michael Howell 1e799684ee rustdoc: docs for search deduplication (#1850) 2024-10-07 23:09:03 +08:00
许杰友 Jieyou Xu (Joe) 58aeefcf0c Revise test naming advice to discourage using issue numbers alone
But accept test names that include non-prefix issue number.
2024-10-07 11:17:02 +02:00
Jakub Beránek e4eded33df Document `bootstrap` integration with `rustc-perf` (#2005) 2024-10-07 16:28:06 +08:00
Kajetan Puchalski ab71898fc7 building: Update instructions for ./x setup editor 2024-10-07 10:03:36 +02:00
许杰友 Jieyou Xu (Joe) 9bb0da343a [Testing 2/2] Revise revisions docs (#2089)
Co-authored-by: nora <48135649+Noratrieb@users.noreply.github.com>
2024-10-07 14:33:52 +08:00
许杰友 Jieyou Xu (Joe) 2b9274252f [Testing 1/2] Revise testing chapters excluding the directives chapter (#2088) 2024-10-07 10:39:22 +08:00
Yoh Deadfall 0a9b996970 Fixed links to rust-analyzer configs for Emacs and Helix (#2087) 2024-10-06 09:43:08 +09:00
Onur Özkan 454dc454c1 update `x install` documentation (#2084) 2024-10-04 00:43:40 +08:00
León Orell Valerian Liehr 5e8e9cc899 Rename "object safe" to "dyn compatible" (#2083) 2024-10-03 17:31:43 +08:00
León Orell Valerian Liehr 53514829de fixups (#2082) 2024-10-03 10:54:50 +08:00
Urgau 3022bf007e Add documentation for `{{rust-src-base}}` (#2079) 2024-09-29 14:21:45 +02:00
Kajetan Puchalski 34a13c2e52 building/suggested: Add instructions for Emacs & Helix (#2080)
Co-authored-by: 许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com>
2024-09-28 20:09:48 +08:00
Christopher Speir de2f32e59c Fix file paths to section 35.1 & 35.2 example code (#2078) 2024-09-25 22:18:50 +08:00
Noratrieb eca2a904d1 elaborate on warnings 2024-09-24 20:59:54 +02:00
Yuri Astrakhan 9303d5b017 Apply suggestions from code review
Co-authored-by: 许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com>
2024-09-24 20:59:54 +02:00
Yuri Astrakhan c923ae6187 Clarify how to disable warnings in deps 2024-09-24 20:59:54 +02:00
Tbkhi 8bac43ba1e Update compiler-src.md
Various link additions and minor edits for clarity.

revisions

fix line length

adding links

minor edits
2024-09-24 20:57:06 +02:00
León Orell Valerian Liehr b80083b5c0 Update rustdoc build instructions 2024-09-24 20:47:22 +02:00
Noratrieb 8a5ec724fd minor edits 2024-09-24 20:46:07 +02:00
Tbkhi dabf6dabde doc edits 2024-09-24 20:46:07 +02:00
Tbkhi 5658f05dfc Update salsa.md
Formatting updates.
2024-09-24 20:46:07 +02:00
Tbkhi f5594304c2 Update memory.md
Minor updates to formatting.

documentation updates

Update memory.md

minor edits
2024-09-24 20:43:37 +02:00
Noratrieb fa8e2b4794 minor edits 2024-09-24 20:33:04 +02:00
Tbkhi 6803fdb36b updates documentation 2024-09-24 20:33:04 +02:00
Tbkhi fb88f31f79 Update serialization.md
Minor documentation updates.
2024-09-24 20:33:04 +02:00
Tbkhi 1374a2ab4a improve rustc-driver.md
minor addition and adding links

Update rustc-driver.md

removing parens for functions

reorganized directory

reorganized directory

minor edits
2024-09-24 20:29:07 +02:00
Noratrieb f92166e2b5 minor edits 2024-09-24 20:21:23 +02:00
Tbkhi dc74644c7d Update syntax-intro.md 2024-09-24 20:21:23 +02:00
Noratrieb 58f95e3d49 minor edits 2024-09-24 20:19:59 +02:00
Tbkhi 763a2bee2f Update the-parser.md 2024-09-24 20:19:59 +02:00
Tbkhi 41c4e9c988 Update the-parser.md 2024-09-24 20:19:59 +02:00
Noratrieb 04480082ad Minor edits 2024-09-24 20:16:28 +02:00
Tbkhi b956638072 Update macro-expansion.md 2024-09-24 20:16:28 +02:00
Tbkhi c6fed1ee39 Update macro-expansion.md 2024-09-24 20:16:28 +02:00
Tbkhi 027c805e5c additional changes to links and some text 2024-09-24 20:16:28 +02:00
Tbkhi 07aa8b109f Update macro-expansion.md
removing parens
2024-09-24 20:16:28 +02:00
Tbkhi 5676ddd217 Update macro-expansion.md 2024-09-24 20:16:28 +02:00
Noah Lev f09dd295ae Use 2021 edition for example code playground link
The playground defaults to 2015. Might as well use the latest edition.
2024-09-24 20:15:12 +02:00
Noah Lev 25ad416da4 Move example code block to paragraph referencing it
Noticed by Mario Carneiro.
2024-09-24 20:15:12 +02:00
Noratrieb 70477c40f8 Minor edits
- un-codeblock some words
- uncomment the last paragraph (it's useful to know this)
2024-09-24 20:07:57 +02:00
Tbkhi 8b9408e49f Update name-resolution.md 2024-09-24 20:07:57 +02:00
Tbkhi 1cbd715177 Update name-resolution.md 2024-09-24 20:07:57 +02:00
Felix Rath cd32af3b6a feat: Add section about partial clones with `git clone --filter='blob:none'` 2024-09-24 19:59:44 +02:00
dianne a1c37098dc mention rustc's stable-through-unstable bug being fixed 2024-09-24 19:57:58 +02:00
trevyn 4040f38175 Fix `is_diagnostic_item()` example 2024-09-24 19:56:37 +02:00
许杰友 Jieyou Xu (Joe) f56b9b0a44 Revise wording to not imply *only* Python 3.10 can be installed 2024-09-24 19:55:07 +02:00
nora 15da3b9246 Update src/tests/compiletest.md 2024-09-24 19:54:06 +02:00
许杰友 Jieyou Xu (Joe) d871e70475 Document `crashes` test suite
Describe procedure for adding new crashes tests and removing crashes
tests when the crash is intentionally fixed.

Also mention setting `COMPILETEST_VERBOSE_CRASHES=1` env var for verbose
crashes test output.
2024-09-24 19:54:06 +02:00
Vetle Rasmussen 06f9ccf1f2 Fix getting diagnostics example 2024-09-24 19:53:51 +02:00
dianne c852d1c693 Document `#[rustc_default_body_unstable]` 2024-09-24 19:53:17 +02:00
许杰友 Jieyou Xu (Joe) e3451dc015 Describe `.git-blame-ignore-rev` 2024-09-24 19:51:44 +02:00
许杰友 Jieyou Xu (Joe) 6e8fc18158 Note lldb debuginfo requires `python310.dll` to be present in `PATH` 2024-09-24 19:49:14 +02:00
Marco Ieni a66f8b1a36 chore: add missing `.` (#2074) 2024-09-23 20:51:33 +08:00
许杰友 Jieyou Xu (Joe) baf5c020a3 Add remark on required free disk space (#2073) 2024-09-23 20:11:47 +08:00
Max Heller 5d8ddf98bb fix broken links (#2063) 2024-09-23 16:47:44 +08:00
许杰友 Jieyou Xu (Joe) 8d9a7a8b13 Add advice about submitting potentially hard-to-review PRs (#2036) 2024-09-23 16:46:49 +08:00
joculatrix 0810cd3c34 Edit a sentence for clarity (#2071) 2024-09-23 12:02:25 +08:00
adwin db6f8ad56d Emphasize how to run a single tool test (#2070) 2024-09-20 15:10:29 +08:00
Santiago Pastorino d80226941e Remove chalk is owned by WG-traits 2024-09-18 17:48:40 -04:00
Santiago Pastorino d6c5ed5c47 Fix conditions lowering text for enums with no fields (#2066) 2024-09-18 08:45:24 +08:00
lcnr acee479aee update proof tree chapter (#2054)
* update proof tree chapter

* uwu

* cool beans
2024-09-17 06:45:13 +02:00
Michael Howell 33731b7569 Further clarification 2024-09-15 14:53:28 -04:00
Michael Howell 41b9c6cc57 Specify, more explicitly, the default behavior 2024-09-15 14:53:28 -04:00
Michael Howell a233a7ddcb Update src/rustdoc-internals/search.md
Co-authored-by: Guillaume Gomez <guillaume1.gomez@gmail.com>
2024-09-15 14:53:28 -04:00
Michael Howell 6bf7f54861 Clean up misleading language 2024-09-15 14:53:28 -04:00
Michael Howell 305fbac89a Minor wording improvements 2024-09-15 14:53:28 -04:00
Michael Howell 953292a349 Add docs for JS tests 2024-09-15 14:53:28 -04:00
dianne c83a18cc76 Reflect `x.py test`'s `--rustc-args` option being renamed to `--compiletest-rustc-args` (#2062) 2024-09-12 09:58:27 +08:00
Tshepang Mbambo 3525f6f1aa we standardized on this more reliable command (#2061) 2024-09-11 02:58:06 +08:00
Veera 3d59d4f511 Fix Typo and Remove Outdated Line About C Variadics
This PR does two minor fixes:
1. Removes the line "c-variadic functions are declared with at least
one named argument" since it is no longer true since 124048 got
merged.

2. Fixes typo: "lingint" -> "linting".
2024-09-10 09:32:10 +02:00
cui fliter e012229e1e fix some comments (#2059)
Signed-off-by: cuishuang <imcusg@gmail.com>
2024-09-09 12:58:45 +02:00
Prashanth Mundkur 33c8ae55b7 Fix a link and create an implied internal link (#2051) 2024-09-09 00:15:41 +08:00
Tshepang Mbambo e22d05ae17 link to additional LLVM update PRs (#2055) 2024-09-09 00:13:44 +08:00
Tshepang Mbambo a8f2415953 fix/improve rdg contributing howto (#2056) 2024-09-09 00:13:14 +08:00
Bilal Khan 5b39f1293b fixed the typo (#2058) 2024-09-08 11:51:11 -04:00
jdonszelmann 9dea4cfc76 fix typo maker -> marker (thanks @lholten) 2024-09-08 14:01:27 +02:00
Jonathan Dönszelmann 4e0755f384 improve query system documentation (#2041)
* improve query system documentation

* fix typo messages => message

* Update src/queries/incremental-compilation-in-detail.md

Co-authored-by: lcnr <rust@lcnr.de>

---------

Co-authored-by: lcnr <rust@lcnr.de>
2024-09-06 16:23:23 +02:00
Jonathan Dönszelmann 1239ad3da0 add section on overlap checks (#2042)
* add section on overlap checks

* fix some typos

* merge piece on overlap checks with docs about coherence (based on review comments)

* fix comments after discussion
2024-09-06 16:03:43 +02:00
Ralf Jung 7a37519254 clarify the role of rustc_const_unstable 2024-08-31 15:02:08 +02:00
Marc Poulhiès 45e3b9d6b2 Fix x.py reference
Trivial fix to change `x.py` into `x`
2024-08-26 16:46:50 +02:00
Folkert de Vries 3f3aabc749 Update `stabilization_guide.md` (#2034) 2024-08-24 02:46:04 +08:00
León Orell Valerian Liehr 27bca443ca Explain the internal `#[rustc_*]` TEST attributes used for debugging and inside tests (#2046) 2024-08-24 01:58:50 +08:00
Tshepang Mbambo 80c0794aae missing char (#2047) 2024-08-22 22:43:28 +02:00
Prashanth Mundkur d196a77485 Replace direct http links to rustc-dev-guide.rust-lang.org to relative links to the corresponding md source files. (#2044)
Use relative links to the corresponding md source files; this helps local browsing of generated docs.
2024-08-21 11:54:39 -07:00
flash be6899e3fd fix typo (#2043)
line 320:
original: "valtree back a to MIR constant"
updated: "valtree back to a MIR constant"
2024-08-20 02:08:49 +08:00
Nikita Popov 9c427609af Update LLVM docs (#2039)
* Update LLVM docs

* Apply feedback
2024-08-12 18:07:49 -03:00
GabrieleC07 c156104dbe Added 'the' in chapter "Running test" subtitle "Run unit tests on the compiler/library" (#2040) 2024-08-09 01:54:27 +08:00
xFrednet bacd3c57b1 Review comments <3 2024-08-07 20:32:37 -07:00
xFrednet 91f2d11e9c Correct rust code block in *Dataflow Analysis* 2024-08-07 20:32:37 -07:00
riyueguang e6d8737cb1 chore: fix some comments
Signed-off-by: riyueguang <rustruby@outlook.com>
2024-07-30 08:04:13 +02:00
Martin Liška 9a13c75f11 linkcheck: fix reported broken links (part 2) (#2024)
* linkcheck: fix reported broken links (part 2)

* Apply suggestions from code review

Co-authored-by: León Orell Valerian Liehr <me@fmease.dev>

* Fix mir::Constant link target

* Fix borked links

* Fix one more link name

* Exclude 2 links from checking

* Fix exclude patterns in book.toml

* Fix comment

* Fix rmake-tests URL

* Apply suggestions from code review

Co-authored-by: León Orell Valerian Liehr <me@fmease.dev>

---------

Co-authored-by: León Orell Valerian Liehr <me@fmease.dev>
2024-07-27 14:45:57 +02:00
Tshepang Mbambo ab06b10c89 typo (#2029) 2024-07-26 15:31:20 -07:00
Stuart Cook 47b72731d7 Fix broken links in `llvm-coverage-instrumentation.md` (#2027) 2024-07-26 21:19:51 +08:00
Jakub Beránek 04317739eb Fix invalid link to toolstate documentation (#2021) 2024-07-24 20:02:10 +08:00
Martin Liška fb1d8b872c linkcheck: fix reported broken links (part 1) (#2022) 2024-07-24 20:01:25 +08:00
lcnr b48843216e fix link 2024-07-24 13:08:53 +02:00
Martin Liska 4ee24c9286 MIR docs: fix borked links and update style
Changes applied:
- updating-llvm.md: make consistent style in a listing
- CleanupNonCodegenStatements - renamed to CleanupPostBorrowck
- SimplifyCfg - fix link target (it is an enum now)
- LocalUseVisitor - replaced with another existing Visitor
- PGO in LLVM - embed link
2024-07-24 05:03:16 +02:00
10takla 2006cc8a83 Update adding.md (#2016)
Add `@' to the test header edition:2018
2024-07-19 15:15:12 +08:00
Jaic1 03dfd90ce5 refine mir passes doc 2024-07-15 17:16:43 +02:00
Jaic1 bd44a1714a Typo in src/mir/passes.md
accidently -> accidentally

Co-authored-by: Tshepang Mbambo <tshepang@gmail.com>
2024-07-15 17:16:43 +02:00
chj 2f8dd37f16 Improve doc of MIR queries & passes 2024-07-15 17:16:43 +02:00
Noah Lev 04ffdc24ec Fix typo: lists -> lints (#2011)
It's a bit of a tongue-twister it seems.
2024-07-08 21:28:55 +00:00
onur-ozkan 06ca6d1e6e use "bootstrap" instead of "rustbuild"
Let's stick with the single name "bootstrap" to refer to the bootstrap project to avoid confusion.

Signed-off-by: onur-ozkan <work@onurozkan.dev>
2024-07-06 23:28:20 +02:00
Arjun Patel 722e2539e6 Fix grammar issue in optimize-build.md (#2009) 2024-07-02 11:05:55 +08:00
Tyler Mandry 625c6a9cc9 Update name of Fuchsia builder (#2008) 2024-07-01 21:05:14 +02:00
Urgau 194f5fe227 Update new target check-cfg instructions 2024-07-01 12:51:26 +02:00
Jakub Beránek 8d3431a961 Add link to integration tests list 2024-07-01 00:31:56 +02:00
Jakub Beránek 304f99d079 Add Rust for Linux integration tests documentation 2024-07-01 00:31:56 +02:00
Tyler Mandry a8837a54bd Add docs for building Fuchsia locally and in CI (#1989) 2024-06-28 23:12:08 +02:00
DianQK 3f1e015a75 provide `libstdc++.so.6` through `LD_LIBRARY_PATH` 2024-06-27 16:15:59 +02:00
许杰友 Jieyou Xu (Joe) b97fd6c266 tests: document how to run `run-make` on Windows (#2002) 2024-06-24 05:21:15 +00:00
许杰友 Jieyou Xu (Joe) 46dc1c7033 tests/headers: document `needs-symlink` (#2001)
Added in <https://github.com/rust-lang/rust/pull/126862>.
2024-06-24 04:31:35 +00:00
Yosh 079c8d4d7a Rename `wasm32-wasi` to `wasm32-wasip1` 2024-06-23 20:21:42 +02:00
Aaron Hill f2000b880e Document inert vs active attributes (#1110)
* Document inert vs active attributes

This PR adds a subsection to the 'Syntax and AST' section describing
inert vs active attributes.

For consistency, I've also updated the '#[test] implementation' page to
stop referring to `#[test]' as a 'built in' attribute, since that has a
specific meaning defined on this page.

* Update src/attributes.md

Co-authored-by: Noah Lev <camelidcamel@gmail.com>

* Update src/attributes.md

Co-authored-by: Noah Lev <camelidcamel@gmail.com>

* Update src/attributes.md

Co-authored-by: Noah Lev <camelidcamel@gmail.com>

* Update src/attributes.md

Co-authored-by: Noah Lev <camelidcamel@gmail.com>

* Update src/attributes.md

Co-authored-by: pierwill <19642016+pierwill@users.noreply.github.com>

* Update src/test-implementation.md

Co-authored-by: pierwill <19642016+pierwill@users.noreply.github.com>

* Update src/attributes.md

Co-authored-by: pierwill <19642016+pierwill@users.noreply.github.com>

* Update src/test-implementation.md

* Update src/test-implementation.md

* Update src/test-implementation.md

---------

Co-authored-by: Nilstrieb <48135649+Nilstrieb@users.noreply.github.com>
Co-authored-by: Noah Lev <camelidcamel@gmail.com>
Co-authored-by: pierwill <19642016+pierwill@users.noreply.github.com>
2024-06-23 16:09:09 +02:00
许杰友 Jieyou Xu (Joe) e69bb74b2e docs: document hard-resetting submodules 2024-06-19 20:14:28 +02:00
León Orell Valerian Liehr de583d2b44 Fix note about compiletest header `rustfix-only-machine-applicable` (#1998) 2024-06-18 23:50:10 +01:00
许杰友 Jieyou Xu (Joe) 38b6a5cf3e docs: mention RUSTC_ICE=0 to suppress ICE file 2024-06-18 19:24:17 +01:00
onur-ozkan f3618f3dd5 tell about `STAGE0_MISSING_TARGETS` for new targets
We just realized that the bootstrap target sanity check isn't documented anywhere,
and it would be quite exhausting to learn this manually through a series of failing CI builds.

Signed-off-by: onur-ozkan <work@onurozkan.dev>
2024-06-16 08:39:57 +02:00
Jakub Beránek 265c59a42c Rewrite CI documentation 2024-06-13 15:14:55 +02:00
Stuart Cook c2eb5560d2 Compiletest docs for recently-added features (#1994)
* Docs for `needs-forced-clang-based-tests` (was `needs-matching-clang`)

* Docs for `aux-codegen-backend`

* Docs for `{{sysroot-base}}` and `{{target-linker}}`
2024-06-12 15:58:02 +01:00
Lukas Wirth 93acb2dd7f Add {{target}} to header substitutions 2024-06-12 15:59:20 +02:00
许杰友 Jieyou Xu (Joe) cf49c91585 run-make: add tip about quick-compile with stage0 rustc 2024-06-10 13:49:19 +02:00
erikdesjardins 8e290bc634 Mention `COMPILETEST_REQUIRE_ALL_LLVM_COMPONENTS` in `needs-llvm-components` documentation (#1990) 2024-06-10 12:41:47 +01:00
Jakub Beránek f369e78b56 Add run-make port initiative to the Recurring work section (#1992) 2024-06-09 09:57:13 +01:00
Stuart Cook 62990d0e5e Document the `//@ unused-revision-names:` test header (#1991) 2024-06-08 13:13:44 +01:00
听寒 c62f870bd9 Fix dead links (#1988)
* fix dead links in memory.md

* fix dead links in ty_module/generic_arguments.md

* Update src/memory.md

use .md instead of .html for self-links

Co-authored-by: Noah Lev <camelidcamel@gmail.com>

---------

Co-authored-by: Noah Lev <camelidcamel@gmail.com>
2024-06-03 23:15:15 -07:00
听寒 06a3f3bed1 should use `&` to load completions for PowerShell (#1978) 2024-06-04 06:31:05 +01:00
Boxy 43eaf6d559 Reviews 2024-05-31 01:27:28 +01:00
Boxy 89536d8e5b Rewrite the "representing types" section to be more comprehensive 2024-05-31 01:27:28 +01:00
Boxy fa325b1081 Introduce chapter for defining generic parameters 2024-05-31 01:27:28 +01:00
onur-ozkan 1f915f11d8 sync the stage0 filename
Signed-off-by: onur-ozkan <work@onurozkan.dev>
2024-05-25 15:42:06 -07:00
Jakub Beránek b9e2e86bbb Add Rust for Linux notification group entry 2024-05-25 15:40:04 -07:00
surechen e5c589981c fix some typos 2024-05-21 11:56:12 +02:00
Boxy f2754a4fa9 add a high level explanation, and remove a disclaimer (#1982) 2024-05-17 19:04:58 +02:00
David Archibald 4ab266716b Fix broken link to "Lowering" 2024-05-17 12:15:36 +02:00
gstjepan2 27f021bcb5 Fix broken link 2024-05-16 04:53:03 +02:00
Jakub Beránek 43e0bcae52 Add note about how to pick up abandoned PRs 2024-05-15 19:59:36 +02:00
Ardi 8b88776316 Toc here is overkill 2024-05-15 09:45:05 +02:00
许杰友 Jieyou Xu (Joe) 34b055b8f8 Link to lint L-* labels 2024-05-13 20:09:18 +02:00
Matthew Woodcraft 0bfce7989f Update the rustc_interface examples for current rustc (#1974) 2024-05-11 00:06:30 +01:00
surechen 4f5d764758 Edit `Parameter Environments`'s url as it has been edited in #1953 2024-05-09 15:22:03 +02:00
Urgau d0cd4f5dbb Improve FALSE sentence
Co-authored-by: Tshepang Mbambo <tshepang@gmail.com>
2024-05-06 08:48:21 +02:00
Urgau f4c400cdf2 Add documentation for check-cfg by-default in UI tests 2024-05-06 08:48:21 +02:00
Mads Marquart b07fb9546d Add Apple notification group (#1964) 2024-05-05 14:13:50 -04:00
Jakub Beránek 4874368185 Add an example how to add a job to PR CI 2024-05-04 08:04:25 +02:00
Jakub Beránek dff746fb9c Update CI documentation to avoid mentioning `expand-yaml-anchors` 2024-05-04 08:04:25 +02:00
Yutaro Ohno cbd09807b0 Rename `-Z verbose` to `-Z verbose-internals`
The `-Z verbose` option has been renamed to `-Z verbose-internals` in
commit  b5d83619 [1] (PR #119129 [2]). This commit updates the remaining
`-Z verbose` to `-Z verbose-internals`.

[1]: b5d8361909
[2]: https://github.com/rust-lang/rust/pull/119129
2024-04-30 10:15:49 +02:00
Emanuel Czirai 588fd8f4da typo traige->triage 2024-04-28 20:31:21 +02:00
Trevor Gross 34aaf19626 Add a note about checks with multiple revisions (#1963) 2024-04-13 16:16:44 +01:00
许杰友 Jieyou Xu (Joe) 75c164f9c5 compiletest: clarify that headers must be one header per line 2024-04-11 05:14:52 +02:00
needsure 2dd74894e8 chore: fix some typos in conments
Signed-off-by: needsure <qinzhipeng@outlook.com>
2024-04-09 10:59:59 +02:00
许杰友 Jieyou Xu (Joe) 43f390bed0 compiletest: specify which special env var and which particular CI job (#1960)
* compiletest: specify which special env var and which particular CI job

* compiletest: fix grammar and add link to Dockerfile
2024-04-08 21:00:54 +02:00
许杰友 Jieyou Xu (Joe) 1b1b3b4627 Explicitly mention compiletest directives are supported in rmake.rs (#1949) 2024-04-06 22:41:09 +02:00
Michael Howell c56637ddb2 Add docs for sharded descriptions 2024-04-06 22:17:41 +02:00
Martin Nordholts 4f4e8ee67d Add basic docs for the new `aux-bin` header (#1942) 2024-04-06 21:01:03 +01:00
Eric Huss 522ca9b495 Add needs-threads header command (#1943) 2024-04-06 20:57:34 +01:00
Prashanth Mundkur 4065bd5d9d Fix some broken links under bootstrapping. (#1958)
* Fix some broken links under bootstrapping.

* Fix more broken links for bootstrapping.
2024-04-06 20:55:06 +01:00
Tim Neumann ef095092e5 Replace -Zno-parallel-llvm with -Zno-parallel-backend
This was renamed by https://github.com/rust-lang/rust/pull/116791.
2024-04-05 07:05:33 +02:00
Boxy af587b635f Fix some broken links 2024-04-01 17:25:54 +01:00
Boxy 3c8a96562f Reorganise into subchapters and explain `Reveal` 2024-04-01 17:25:54 +01:00
Boxy a8dac4064c reviews 2024-04-01 17:25:54 +01:00
Boxy 43f38ca174 Change location in guide 2024-04-01 17:25:54 +01:00
Boxy 83bfea8e88 Initial rewrite 2024-04-01 17:25:54 +01:00
Nilstrieb cc608ba78e Add quickstart for how to build and run the compiler (#1951)
* Add quickstart for how to build and run the compiler

The chapter is quite long, and a lot of the information is, while
valuable, not very important for newcomers. I think it makes sense to
have a condensed version for anyone just wanting to get started with
only the most important information.

* A few improvements to quickstart
2024-03-31 06:23:21 +02:00
Nilstrieb 023c0f2592 Delete length check (#1952)
It's super annoying to be forced to use this bad convention, and
apparently everyone agrees. The only reason no improvements have been
done is because those were blocked on writing a better checker.

I strongly believe that no checker is better than a bad checker, so
let's just delete it in the meantime. I kindly asked anyone who sees
this to complain about overly long sentences in review in the future, I
think we can make this turn out fine.
2024-03-30 17:46:30 +01:00
JohnEndson 69c820a470 Fix some comments
Signed-off-by: JohnEndson <jiayuzhen@outlook.com>
2024-03-28 13:58:43 +02:00
Ali MJ Al-Nasrawy b93095aade summary: opaque-types-region-inference-restrictions 2024-03-27 09:49:05 +01:00
Ali MJ Al-Nasrawy 47293569fe add opaque-types-region-inference-restrictions 2024-03-27 09:49:05 +01:00
León Orell Valerian Liehr efcb2806af Rename AstConv to HIR ty lowering 2024-03-23 08:44:42 +01:00
lcnr d53598ae3f add chapter to summary 2024-03-22 12:46:08 +01:00
lcnr 2c12c0cae1 explain rigid aliases 2024-03-22 11:11:41 +00:00
lcnr 3c54328ea1 Update src/solve/significant-changes.md
Co-authored-by: Oli Scherer <github35764891676564198441@oli-obk.de>
2024-03-22 11:11:41 +00:00
lcnr 46a378f87e Update src/solve/significant-changes.md
Co-authored-by: Oli Scherer <github35764891676564198441@oli-obk.de>
2024-03-22 11:11:41 +00:00
lcnr 31dbcb4cef is this sensible? idk 2024-03-22 11:11:41 +00:00
lcnr 89110e1b69 explore significant changes with the new solver 2024-03-22 11:11:41 +00:00
lcnr 086da07147 canonicalization is out of date 2024-03-22 11:11:41 +00:00
Christopher B. Speir 562d701eb8 Fix broken link in chapter '1. How to build and run the compiler'
The 'read this chapter' link under the 'What is x.py?' section
returned a Document not found (404) error.
2024-03-22 10:49:12 +02:00
Tshepang Mbambo 9137b87dec typo 2024-03-19 19:12:28 +01:00
Seo Sanghyeon 2cf4220754 Reflect rustc_codegen_cranelift move 2024-03-18 20:37:35 +02:00
Tbkhi 2f7e0ceb36 Update rustdoc-internals.md (#1911)
* Update rustdoc-internals.md

Minor updates to syntax and some clarifications.

* updates

* Update rustdoc-internals.md
2024-03-13 18:56:14 -03:00