about summary refs log tree commit diff
path: root/src/stage0
AgeCommit message (Collapse)AuthorLines
2025-09-27Update stage0 per previous commmitMark Rousskov-500/+522
2025-09-26Bump stage0Mark Rousskov-500/+500
2025-09-05Bump stage0 rustfmtLeón Orell Valerian Liehr-121/+121
2025-08-06bump stage0Boxy-480/+500
2025-07-01Update stage0 to 1.89.0-beta.1Josh Stone-460/+480
2025-05-27Bump master `stage0` compilerJieyou Xu-460/+460
To include beta backport of revert <https://github.com/rust-lang/rust/pull/141024> which should undo linker warnings during bootstrapping of Windows MSVC targets due to <https://github.com/rust-lang/rust/pull/140176>.
2025-05-12update stage0 compilerPietro Albini-460/+460
2025-04-23Remove `git_repository` from the `stage0` fileJakub Beránek-1/+0
2025-04-12End all lines in src/stage0 with trailing newlineDavid Tolnay-1/+1
2025-04-09bump stage0Boxy-462/+460
2025-02-18bump stage0Josh Stone-463/+463
2025-02-08Update bootstrap compiler and rustfmtbjorn3-462/+462
The rustfmt version we previously used formats things differently from what the latest nightly rustfmt does. This causes issues for subtrees that get formatted both in-tree and in their own repo. Updating the rustfmt used in-tree solves those issues. Also bumped the bootstrap compiler as the stage0 update command always updates both at the same time.
2025-01-08bump stage0Pietro Albini-450/+462
2024-11-27bump stage0Boxy-450/+450
2024-10-15bump stage0 to 1.83.0-beta.1Josh Stone-450/+450
2024-09-22Bump stage0Michael Goulet-450/+450
2024-09-04bump stage0Boxy-442/+450
2024-07-30Bump src/stage0 with determinismJosh Stone-361/+361
2024-07-28Bump stage0 to 1.81 betaMark Rousskov-428/+442
2024-06-11bump stage0 compilerPietro Albini-428/+428
2024-05-29Bump the stage0 compiler to beta.7 (2024-05-25)Trevor Gross-428/+428
2024-05-24Bump bootstrap compiler to the latest beta compilerUrgau-428/+428
2024-05-11move comments position in `src/stage0`onur-ozkan-8/+8
Signed-off-by: onur-ozkan <work@onurozkan.dev>
2024-05-08use key-value format in stage0 fileonur-ozkan-0/+447
Currently, we are working on the python removal task on bootstrap. Which means we have to extract some data from the stage0 file using shell scripts. However, parsing values from the stage0.json file is painful because shell scripts don't have a built-in way to parse json files. This change simplifies the stage0 file format to key-value pairs, which makes it easily readable from any environment. Signed-off-by: onur-ozkan <work@onurozkan.dev>