<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
    <channel>
      <title>Onur Özkan</title>
      <link>https://onurozkan.dev</link>
      <description>System Software Engineer and Researcher working on Linux kernel, Rust, MAVLink, PX4, autonomous UAV systems, and low-level communications.</description>
      <generator>Zola</generator>
      <language>en</language>
      <atom:link href="https://onurozkan.dev/rss.xml" rel="self" type="application/rss+xml"/>
      <lastBuildDate>Wed, 17 Jun 2026 00:00:00 +0000</lastBuildDate>
      <item>
          <title>Becoming a Core Member of Rust-for-Linux</title>
          <pubDate>Wed, 17 Jun 2026 00:00:00 +0000</pubDate>
          <author>contact@onurozkan.dev</author>
          <link>https://onurozkan.dev/blog-posts/becoming-core-member-rust-for-linux-team/</link>
          <guid>https://onurozkan.dev/blog-posts/becoming-core-member-rust-for-linux-team/</guid>
          <description>&lt;h1 align=&quot;center&quot;&gt;Becoming a Core Member of Rust-for-Linux&lt;&#x2F;h1&gt;
&lt;p&gt;I want to share a small but very meaningful update, I have officially become a core member of Rust-for-Linux in the Linux kernel.&lt;&#x2F;p&gt;
&lt;p&gt;Since a year or so I have been working almost exclusively on the kernel, mostly on Tyr driver for Arm Mali GPUs, workqueue and synchronization primitives such as SRCU and wound&#x2F;wait Mutex.&lt;&#x2F;p&gt;
&lt;p&gt;Recently, I was added to the Rust-for-Linux organization on GitHub and added as a reviewer in the main kernel MAINTAINERS entry for this area. Before that, I was also picked as one of the reviewers for synchronization primitives.&lt;&#x2F;p&gt;
&lt;p&gt;Linux has been part of my life for more than half of it. It is a privilege to join such a group of talented engineers and to work together on one of the most sophisticated project powering billions of devices worldwide. I am willing to carry this responsibility for a long time and extend it when required.&lt;&#x2F;p&gt;
&lt;p&gt;Relevant commits:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;torvalds&#x2F;linux&#x2F;commit&#x2F;48b375e482027ba6566107cec40c1b21b453fa4e&quot;&gt;MAINTAINERS: add Onur Özkan as Rust reviewer&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;github.com&#x2F;torvalds&#x2F;linux&#x2F;commit&#x2F;4770880855359b345314ca1d0b28f9be8886eba8&quot;&gt;MAINTAINERS: Add RUST [SYNC] entry&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
</description>
      </item>
      <item>
          <title>The Cost of AI Coding for Open-Source Maintainers</title>
          <pubDate>Fri, 08 May 2026 00:00:00 +0000</pubDate>
          <author>contact@onurozkan.dev</author>
          <link>https://onurozkan.dev/blog-posts/the-cost-of-ai-coding-for-open-source-maintainers/</link>
          <guid>https://onurozkan.dev/blog-posts/the-cost-of-ai-coding-for-open-source-maintainers/</guid>
          <description>&lt;h1 align=&quot;center&quot;&gt;The Cost of AI Coding for Open-Source Maintainers&lt;&#x2F;h1&gt;
&lt;p&gt;I have been active in open-source development for many years on critical software projects such as the rust compiler, libp2p in the past and linux kernel, mavlink and px4 today. From what I have seen so far, one of the biggest costs of AI-coding is being pushed directly to open-source maintainers, especially the ones maintaining large and popular projects.&lt;&#x2F;p&gt;
&lt;p&gt;People often talk about how AI makes contributors faster. Maybe it does. But in open source, that speed usually does not remove work. It transfers it in the worst possible way.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;the-review-cost&quot;&gt;The Review Cost&lt;&#x2F;h3&gt;
&lt;p&gt;The pattern is very common now. Someone writes a prompt, gets some output, makes 1-2 commits and sends the PR right away.&lt;&#x2F;p&gt;
&lt;p&gt;But maintainers cannot merge things by magic. Someone has to verify that the change makes sense and is correct, does not introduce regressions, does not break things and is worth for what it&#x27;s doing.&lt;&#x2F;p&gt;
&lt;p&gt;Getting help from AI is not the problem by itself. The problem starts when the author does not understand what they submitted. In many cases, this is easy to notice: huge changes in very few commits, long PR descriptions full of unnecessary information, patches touching unrelated areas and weak answers in review. At that point, the missing effort is simply moved to the maintainer. Most of the time (if not always) it is much better to ask maintainers about the change rather than submitting random work and expecting maintainers to guide you from start to finish.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;the-actual-damage&quot;&gt;The Actual Damage&lt;&#x2F;h3&gt;
&lt;p&gt;Time is already one of the rarest resources in open source as most maintainers use their free time to keep projects healthy and even then they often cannot dedicate enough time to all the project&#x27;s plans and goals. Maintainers already deal with many different problems on their limited time like regressions, issue triage, design discussions, coding, release, etc. Filtering the AI slop add even more work on top of that and usually slows their other works on the project.&lt;&#x2F;p&gt;
&lt;p&gt;The damage is not only wasted time. It also hurts trust. When projects receive enough AI slop, maintainers become more defensive and real contributors get mixed into the same queue and the quality of communication drops.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;how-do-i-deal-with-this&quot;&gt;How Do I Deal With This&lt;&#x2F;h3&gt;
&lt;p&gt;When I see something that looks like AI-generated work, I do not review it immediately. I first check a few basic things:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;Does it solve a real and already known problem?&lt;&#x2F;li&gt;
&lt;li&gt;Is there a clear reason for the change?&lt;&#x2F;li&gt;
&lt;li&gt;Is the patch small enough to review properly?&lt;&#x2F;li&gt;
&lt;li&gt;Does it stay within one area instead of touching everything at once?&lt;&#x2F;li&gt;
&lt;li&gt;Can the author explain the design and tradeoffs?&lt;&#x2F;li&gt;
&lt;li&gt;Does the PR description contain useful information instead of a wall of text?&lt;&#x2F;li&gt;
&lt;li&gt;Is it improving something real or just rewriting working code for no reason?&lt;&#x2F;li&gt;
&lt;li&gt;Does it have a proper commit history?&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;If the answer to these questions is mostly no, I do not spend time reviewing it.&lt;&#x2F;p&gt;
&lt;p&gt;If a patch does not address an existing bug, an accepted feature request or a clearly defined problem, then my first question is simple: why should this be added at all? Complexity is already high enough in most serious projects.&lt;&#x2F;p&gt;
</description>
      </item>
      <item>
          <title>Inside the Hangar: Prototype A and B</title>
          <pubDate>Thu, 20 Nov 2025 00:00:00 +0000</pubDate>
          <author>contact@onurozkan.dev</author>
          <link>https://onurozkan.dev/blog-posts/inside-the-hangar-prototype-a-and-b/</link>
          <guid>https://onurozkan.dev/blog-posts/inside-the-hangar-prototype-a-and-b/</guid>
          <description>&lt;br&#x2F;&gt;
&lt;h1 align=&quot;center&quot;&gt;Inside the Hangar: Prototype A and B&lt;&#x2F;h1&gt;
&lt;br&#x2F;&gt;
&lt;p&gt;I am building two different prototypes simultaneously (from scratch, as you may remember from my previous post) right now. Prototype A (the left one) is 18 inches while Prototype B (the right one) measures 17. Both rely on the exact same software stack; the only difference is the physical capabilities (e.g., weight, lifting power, physical durability, etc).&lt;&#x2F;p&gt;
&lt;p&gt;&lt;img
    align=&quot;center&quot;
    src=&quot;&#x2F;media&#x2F;uav-prototypes.jpg&quot;
    alt=&quot;Prototype A (left) and Prototype B (right)&quot;
&#x2F;&gt;&lt;&#x2F;p&gt;
&lt;p&gt;They are nearly complete in terms of the physical setup. I may still add a logo on top of their head covers but mechanically they are almost (~85%) ready for real-world tests. Once I make them complete, I plan to design a third prototype (Prototype C) that is noticeably smaller than both of these airframes, something around 8 inches. This might take a while as I can only work on it one day per week.&lt;&#x2F;p&gt;
&lt;p&gt;Then the fun part will begin. I will let them fly and coordinate with each other for some special autonomous missions I assign to them and enjoy watching the magic they create together.&lt;&#x2F;p&gt;
</description>
      </item>
      <item>
          <title>Meet the Next UAV Challenger</title>
          <pubDate>Sun, 24 Aug 2025 00:00:00 +0000</pubDate>
          <author>contact@onurozkan.dev</author>
          <link>https://onurozkan.dev/blog-posts/meet-the-next-uav-challenger/</link>
          <guid>https://onurozkan.dev/blog-posts/meet-the-next-uav-challenger/</guid>
          <description>&lt;br&#x2F;&gt;
&lt;h1 align=&quot;center&quot;&gt;Meet the Next UAV Challenger&lt;&#x2F;h1&gt;
&lt;br&#x2F;&gt;
&lt;p&gt;After almost a year of work (mostly in my spare time, usually one day each weekend) on UAVs, I am excited to share the very first &lt;strong&gt;real-world test&lt;&#x2F;strong&gt; of my &lt;strong&gt;first prototype UAV model&lt;&#x2F;strong&gt;, built completely from scratch; including the software stack.&lt;&#x2F;p&gt;
&lt;video controls style=&quot;width: 100%; height: auto;&quot;&gt;
  &lt;source src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;first_uav_demo.mp4&quot; type=&quot;video&#x2F;mp4&quot;&gt;
  Your browser does not support the video tag.
&lt;&#x2F;video&gt;
&lt;p&gt;In the demo video, the UAV takes off in a quite windy area, flies rectangular patterns several times and lands &lt;strong&gt;fully autonomously&lt;&#x2F;strong&gt;. All of this is powered by an &lt;strong&gt;AI pilot&lt;&#x2F;strong&gt;, running &lt;strong&gt;entirely on-board&lt;&#x2F;strong&gt; with &lt;strong&gt;no GPS&lt;&#x2F;strong&gt; and &lt;strong&gt;no internet connection&lt;&#x2F;strong&gt;.&lt;&#x2F;p&gt;
&lt;p&gt;More soon.&lt;&#x2F;p&gt;
</description>
      </item>
      <item>
          <title>Do Non-Apple Laptops with Good Battery Life and Performance Exist?</title>
          <pubDate>Thu, 24 Oct 2024 00:00:00 +0000</pubDate>
          <author>contact@onurozkan.dev</author>
          <link>https://onurozkan.dev/blog-posts/do-non-apple-laptops-with-good-battery-life-and-performance-exist/</link>
          <guid>https://onurozkan.dev/blog-posts/do-non-apple-laptops-with-good-battery-life-and-performance-exist/</guid>
          <description>&lt;br&#x2F;&gt;
&lt;h1 align=&quot;center&quot;&gt;Do Non-Apple Laptops with Good Battery Life and Performance Exist?&lt;&#x2F;h1&gt;
&lt;br&#x2F;&gt;
&lt;h2 id=&quot;background-story&quot;&gt;Background Story&lt;&#x2F;h2&gt;
&lt;p&gt;I often take my laptop outside and work in random places, like a tent on a mountain. Yes, I&#x27;m serious (see &lt;a href=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;do-non-apple-laptops-with-good-battery-life-and-performance-exist&#x2F;2.jpeg&quot; target=&quot;_blank&quot;&gt;1&lt;&#x2F;a&gt; and &lt;a href=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;do-non-apple-laptops-with-good-battery-life-and-performance-exist&#x2F;1.jpeg&quot; target=&quot;_blank&quot;&gt;2&lt;&#x2F;a&gt;)! So, having good battery life is super important for me because finding a power outlet in those situations is not always possible.&lt;&#x2F;p&gt;
&lt;p&gt;I have used many different laptops over the past 10 years, and honestly I have &lt;em&gt;never&lt;&#x2F;em&gt; had a perfect, or even a good one. It&#x27;s always been a trade-off: either the battery lasts long but the performance is bad, or the performance is great but the battery drains fast. Some laptops overheat and sound like a jet engine, or even worse, all of these problems happen together! I have tried everything from undervolting the CPU to turning off all the extra laptop features for just one thing: to get more battery life.&lt;&#x2F;p&gt;
&lt;p&gt;Here are some of the laptops I have used in the last 3 years:&lt;&#x2F;p&gt;
&lt;h3 id=&quot;asus-rog-zephyrus-g14&quot;&gt;Asus ROG Zephyrus G14&lt;&#x2F;h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;CPU&lt;&#x2F;strong&gt;: AMD Ryzen 9 4900HS&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;GPU&lt;&#x2F;strong&gt;: RTX 2060&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Display&lt;&#x2F;strong&gt;: 14&amp;quot; 120Hz FHD&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;I disabled the Nvidia GPU and used TLP to turn off and slow down various of things. With that setup, I could get around 4.5 hours of battery life but performance wasn&#x27;t great due to the power limitations. If the CPU was working hard, laptop was being super hot and the fan noise was incredibly loud. Typing on the keyboard became uncomfortable because it was so hot! Even though it had an RTX 2060 GPU, I never used it as the battery would die quickly and the heat was too much already even without it.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;dell-xps-13-9315-i7-1250u&quot;&gt;Dell XPS 13 9315 (i7-1250U)&lt;&#x2F;h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;CPU&lt;&#x2F;strong&gt;: Intel i7-1250U&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;GPU&lt;&#x2F;strong&gt;: Integrated&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Display&lt;&#x2F;strong&gt;: 13&amp;quot; 60Hz FHD&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;This one didn&#x27;t have heat problems and the battery lasted around 6-6.5 hours. But I couldn&#x27;t do any heavy work on it. If I needed to compile big programs, I had to SSH into a remote server. That&#x27;s not a bad solution actually. I&#x27;m building my own server at home for this reason! I will do small tasks on the laptop and big tasks on the server. But still, you won&#x27;t always have access to a remote server. For a laptop with such low power, 6.5 hours of battery life was disappointing. But compare to Asus ROG Zephyrus G14 development experience was much better.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;lenovo-thinkpad-z16-ryzen-9-6950h&quot;&gt;Lenovo ThinkPad Z16 (Ryzen 9 6950H)&lt;&#x2F;h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;CPU&lt;&#x2F;strong&gt;: AMD Ryzen 9 Pro 6950H&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;GPU&lt;&#x2F;strong&gt;: AMD Radeon RX 6500M&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Display&lt;&#x2F;strong&gt;: 16&amp;quot; 60Hz 4K&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;What a piece of crap this computer was. Oh my god, I can&#x27;t believe I got rid of it. I have used more than 10 laptops so far and I have never seen a computer that&#x27;s this bad in every possible way. I felt like Lenovo made this computer just to scam me. Maybe they said &amp;quot;Make a ThinkPad that looks sweet like a MacBook but is absolutely useless&amp;quot;. This computer gathered all the worst things under one roof. Even if you were just watching videos, it would reach above-average temperatures. If it wasn&#x27;t plugged in, there was no way you could watch two movies in a row because your battery would die at the start of the second one! I set the screen from 4K down to 1920x1080, turned off everything like touchscreen, bluetooth, fingerprint and downclocked CPU to the lowest levels, yet the maximum battery life would be 3.5 hours (and that&#x27;s the best case; it would rarely make it to 3 hours), and the performance was terrible because I had downclocked the CPU (and even without downclocking, it would still be very bad at performance due to throttling).&lt;&#x2F;p&gt;
&lt;h3 id=&quot;today-lenovo-x1-carbon-gen-13&quot;&gt;Today: Lenovo X1 Carbon Gen 13&lt;&#x2F;h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;CPU&lt;&#x2F;strong&gt;: Intel Core Ultra 7 165U&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;GPU&lt;&#x2F;strong&gt;: Integrated&lt;&#x2F;li&gt;
&lt;li&gt;&lt;strong&gt;Display&lt;&#x2F;strong&gt;: 14&amp;quot; 60Hz FHD&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;p&gt;This is the best laptop I have ever experienced in my life. For casual tasks (when the CPU isn&#x27;t under heavy pressure), it lasts around 12 hours. When I&#x27;m developing (compiling big projects, browsing with hundreds of tabs), it still lasts around 9 hours. It never overheats. Even when the CPU hits 100°C, it cools itself down very quickly and computer never gets uncomfortable to use. It performs better than the Ryzen 9 because the Ryzen would start overheating and slow down, while this one keeps going. I have been using it for over 10 hours a day for the past week, and I have only heard the fan 5 or 6 times, and even then, it wasn&#x27;t loud. This is all with the laptop running on its default settings – amazing, right? I haven&#x27;t even done any tuning. If I wanted to, I could probably get an extra hour or two of battery life, but I&#x27;m already happy with it.&lt;&#x2F;p&gt;
&lt;h3 id=&quot;more-battery&quot;&gt;More Battery!&lt;&#x2F;h3&gt;
&lt;p&gt;~10 hours of battery life is great, but if you are traveling for more than a day, it&#x27;s still not enough. To fix that, I found an awesome power bank: Anker Prime 27,650mAh (250W). It can charge my laptop 1.5 times, which means I can use it for close to 30 hours without needing to find power outlet. After all the battery struggles I had, it feels like a dream come true. F*cking Z16... I am finally free...&lt;&#x2F;p&gt;
&lt;h3 id=&quot;lessons-learned-what-to-look-for-in-a-developer-laptop&quot;&gt;Lessons learned – What to look for in a developer laptop:&lt;&#x2F;h3&gt;
&lt;ol&gt;
&lt;li&gt;Avoid AMD CPUs. They&#x27;re terrible for laptops.&lt;&#x2F;li&gt;
&lt;li&gt;Stick to the first rule, stay away from AMD CPUs.&lt;&#x2F;li&gt;
&lt;li&gt;Go for Intel hybrid CPUs (e-core, p-core). Intel Core Ultra 7 165U is the actual reason how my current laptop can be very good in both performance and battery life.&lt;&#x2F;li&gt;
&lt;li&gt;Don&#x27;t buy a high-performance laptop. If you need high performance use a remote server instead. High-performance laptops overheat and throttle performance, so you never get what you are hoping for.&lt;&#x2F;li&gt;
&lt;li&gt;Don&#x27;t buy a laptop with a GPU. If you want to game, buy a console or build a desktop. For work, always choose a laptop without a GPU and find other ways to handle your GPU needs.&lt;&#x2F;li&gt;
&lt;&#x2F;ol&gt;
&lt;h3 id=&quot;final-words&quot;&gt;Final Words&lt;&#x2F;h3&gt;
&lt;p&gt;I want to thank Intel for doing excellent work on laptop CPU that provide amazing performance while still being power-efficient. And I want to thank Lenovo for making the incredible laptop (No, not Z16!) I just got. But Lenovo, you should stop making the Z16 series and deprecate that model. It&#x27;s awful!&lt;&#x2F;p&gt;
</description>
      </item>
      <item>
          <title>Rust Language Bootstrap Team Progress Report 2023</title>
          <pubDate>Sun, 31 Dec 2023 00:00:00 +0000</pubDate>
          <author>contact@onurozkan.dev</author>
          <link>https://onurozkan.dev/blog-posts/rust-language-bootstrap-team-progress-report-2023/</link>
          <guid>https://onurozkan.dev/blog-posts/rust-language-bootstrap-team-progress-report-2023/</guid>
          <description>&lt;br&#x2F;&gt;
&lt;h1 align=&quot;center&quot;&gt;Rust Language Bootstrap Team Progress Report 2023&lt;&#x2F;h1&gt;
&lt;br&#x2F;&gt;
&lt;h2 id=&quot;highlights-and-development-statistics-of-2023&quot;&gt;Highlights and Development Statistics of 2023&lt;&#x2F;h2&gt;
&lt;p&gt;&lt;strong&gt;This year with the Bootstrap Team label &lt;code&gt;T-Bootstrap&lt;&#x2F;code&gt;&lt;&#x2F;strong&gt;:&lt;&#x2F;p&gt;
&lt;details style=&quot;overflow-y: scroll; max-height: 750px;&quot;&gt;
  &lt;summary&gt;201 issues were reported&lt;&#x2F;summary&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;119442&quot;&gt;&lt;code&gt;x clippy&lt;&#x2F;code&gt; keeps nix-patching binaries&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;119296&quot;&gt;set &lt;code&gt;--change-id&lt;&#x2F;code&gt; in ci&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;119164&quot;&gt;Manifest issue with &amp;quot;preview&amp;quot; components&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;118930&quot;&gt;When running CI locally with src&#x2F;ci&#x2F;docker&#x2F;run.sh bootstrap can&#x27;t access git history, requires a local LLVM build&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;118918&quot;&gt;Bootstrap uses stage 1 artifacts in a stage 2 cross testing context  &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;118862&quot;&gt;error[E0599]: no method named &lt;code&gt;write_all&lt;&#x2F;code&gt; found for struct &lt;code&gt;File&lt;&#x2F;code&gt; in the current scope&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;118758&quot;&gt;give a better error when &lt;code&gt;origin&#x2F;HEAD&lt;&#x2F;code&gt; is vastly out of date&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;118630&quot;&gt;download-ci-llvm still builds compiler-rt&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;118629&quot;&gt;The build system doesn&#x27;t allow to customize compile&#x2F;linker&#x2F;cmake flags for sanitizers&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;118369&quot;&gt;Cannot use unstable flags in RUSTFLAGS_BOOTSTRAP&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;118233&quot;&gt;bootstrap: &amp;quot;test library&#x2F;core --stage 2&amp;quot; does not actually test stage 2&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;118129&quot;&gt;Bootstrap sometimes fails to build miri&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;118084&quot;&gt;LLVMRust symbols not defined when building with -Zcross-crate-inline-threshold=always&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;118061&quot;&gt;Mommy can&#x27;t check rust-analyzer if I ask her for debuginfo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117983&quot;&gt;bootstrap: fingerprinting is broken somehow&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117937&quot;&gt;Bootstrap: Build compiler crates that ought to compile on stable without &lt;code&gt;RUSTC_BOOTSTRAP=1&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117885&quot;&gt;bootstrap is broken in rust-1.75.0-beta with: thread &#x27;main&#x27; panicked at src&#x2F;core&#x2F;builder.rs:1795:26: std::fs::read_dir(registry_src) failed with No such file or directory (os error 2)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117762&quot;&gt;&lt;code&gt;x clean compiler&#x2F;rustc_middle&lt;&#x2F;code&gt; errors with a stability error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117721&quot;&gt;Some tests are incorrectly skipped for macOS CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117653&quot;&gt;Suggestion: Cache &lt;code&gt;x --help&lt;&#x2F;code&gt; so that it doesn&#x27;t rebuild to show help message&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117567&quot;&gt;Unable to build with on Windows 10 with MinGW nor MSVC&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117430&quot;&gt;CI: Bootstrap no longer documents compiler crates&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117366&quot;&gt;cranelift component broken?&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117361&quot;&gt;howto cross-compile to get to work for powerpc e500v2 &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117315&quot;&gt;bootstrap: cargo output is missing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117203&quot;&gt;rust-1.74.0-beta fails to execute x.py install with: thread &#x27;main&#x27; panicked at install.rs:59:17 - Failed the write access check for the current user. No such file or directory&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117067&quot;&gt;x.ps1 complains Python isn&#x27;t installed, even though it is installed and working&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;116552&quot;&gt;macOS: Building profiler runtime with system clang 15 gives &lt;code&gt;warning: argument unused during compilation: &#x27;-stdlib=libc++&#x27;&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;116538&quot;&gt;bootstrap sets &lt;code&gt;-Zunstable-options&lt;&#x2F;code&gt; on &amp;quot;check&amp;quot; but not &amp;quot;build&amp;quot;, leading to build script reruns&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;116398&quot;&gt;forcing unstable flags during bootstrap does not work&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;116397&quot;&gt;Unable to build LLVM with clang on master&#x2F;stable 1.73&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;116285&quot;&gt;Problem with build infrastucture after 4ea90af70f2211fb07a5b722f21850ce99f06cf8  commit&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;116101&quot;&gt;Bootstraping ignores make jobserver&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115679&quot;&gt;Rust fails to build cross target libraries when building on M1 Mac&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115675&quot;&gt;compiletest fails when rustc prints too much JSON&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115642&quot;&gt;Rust building and testing fails while bootstrapping it in poky&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115502&quot;&gt;config.toml generated by .&#x2F;configure does not include tools= definition anymore&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115275&quot;&gt;Invalid checksum in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115213&quot;&gt;&lt;code&gt;python3 x.py install&lt;&#x2F;code&gt; attempts to install some files multiple times and leaves &amp;quot;.old&amp;quot; files&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115171&quot;&gt;compiletest: &amp;quot;ignore-debug&amp;quot; tests are ignored even with debug-assertions-std = false&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115130&quot;&gt;x test --bless fails to run compiler-builtilns build script: &amp;quot;Failed to find tool. Is `` installed?&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115073&quot;&gt;bootstrap atop nix atop non-nix (old, Linux) OS fails with inscrutable errors&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115065&quot;&gt;Bumping rustc version in-tree causes Fuchsia builders to fail&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115041&quot;&gt;error: manifest path &lt;code&gt;&#x2F;public&#x2F;home&#x2F;litz&#x2F;mysw&#x2F;rust-31032ecb1550a402a726e9c244f6a716b214cc9d&#x2F;src&#x2F;tools&#x2F;cargo&#x2F;Cargo.toml&lt;&#x2F;code&gt; does not exist&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;114961&quot;&gt;Failed to link against LLVM libunwind when running library&#x2F;std tests with &lt;code&gt;llvm-libunwind = &#x27;in-tree&#x27;&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;114940&quot;&gt;Source installation tries to install LLVM sources even if system LLVM used&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;114609&quot;&gt;&lt;code&gt;--failed&lt;&#x2F;code&gt; flag for &lt;code&gt;x test&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;114444&quot;&gt;Cannot build Rust 1.71.1 with 1.71.0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;114338&quot;&gt;Bootstrap regression in 1.71.0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;114245&quot;&gt;&lt;code&gt;x.py fmt&lt;&#x2F;code&gt; counts untracked files as formatted?&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113963&quot;&gt;&lt;code&gt;.&#x2F;x.py test&lt;&#x2F;code&gt; panics&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113798&quot;&gt;x test error_index_generator triggers &#x27;nested groups are not supported by GHA&#x27; check&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113784&quot;&gt;bootstrap PGO artifact copies broken&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113728&quot;&gt;Compiler build toolchain does not respect build-dir for cargo bash completions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113678&quot;&gt;&lt;code&gt;.&#x2F;x.py dist&lt;&#x2F;code&gt; fails in &lt;code&gt;rust 1.71.0&lt;&#x2F;code&gt; on &lt;code&gt;lint-docs&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113642&quot;&gt;bootstrap.py does not support &lt;code&gt;--set&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113604&quot;&gt;Require (and potentially enforce) attribute-style &lt;code&gt;&#x2F;&#x2F; issue:12345&lt;&#x2F;code&gt; comments in issue-related tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113580&quot;&gt;bootstrap: sanity check install prefix and sysconfdir&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113250&quot;&gt;bootstrap: consider filtering &lt;code&gt;compiler&lt;&#x2F;code&gt; in the &lt;code&gt;git log&lt;&#x2F;code&gt; command for download-rustc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113222&quot;&gt;Suggest &lt;code&gt;x build library&lt;&#x2F;code&gt; for a custom toolchain that fails to load &lt;code&gt;core&lt;&#x2F;code&gt; &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113208&quot;&gt;bootstrap: --fail-fast doesn&#x27;t work anymore&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113178&quot;&gt;bootstrap: &lt;code&gt;rustc-args&lt;&#x2F;code&gt; is only passed to compiletest, not unit tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113109&quot;&gt;&lt;code&gt;clippy-driver +stage1&lt;&#x2F;code&gt; doesn&#x27;t work: &lt;code&gt;error while loading shared libraries: librustc_driver-2731d3486cc92946.so&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113085&quot;&gt;error: unused import - when building Rust on Solaris where isn&#x27;t fd-lock available&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112846&quot;&gt;x.py setup dist says it uses src&#x2F;bootstrap&#x2F;defaults&#x2F;config.dist.toml, which does not exist&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112785&quot;&gt;thread &#x27;main&#x27; panicked at &#x27;&lt;code&gt;rustc&lt;&#x2F;code&gt; not found in &#x2F;scratch&#x2F;rustc&#x2F;build&#x2F;sparcv9&#x2F;build&#x2F;bootstrap&#x2F;debug&#x2F;deps, run &lt;code&gt;cargo build --bins&lt;&#x2F;code&gt; before &lt;code&gt;cargo run&lt;&#x2F;code&gt;&#x27;, lib.rs:415:13&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112679&quot;&gt;bootstrap: Make &lt;code&gt;rust&lt;&#x2F;code&gt; options configurable per-stage&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112678&quot;&gt;bootstrap: Allow configuring the opt-level, not just debug vs release&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112544&quot;&gt;Bootstrap cannot remove host symlink on Windows if created from WSL2&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112445&quot;&gt;Don&#x27;t parse and reserialize toml in configure.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112440&quot;&gt;&lt;code&gt;x doc compiler --open&lt;&#x2F;code&gt; no longer opens any documentation&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112406&quot;&gt;liballoc built with &lt;code&gt;-Csplit-debuginfo=unpacked&lt;&#x2F;code&gt; despite not being supported on riscv32imc-unknown-none-elf&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112393&quot;&gt;.&#x2F;x.py check broken with vendored dependencies&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112391&quot;&gt;Vendoring broken with stable rustc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112287&quot;&gt;&lt;code&gt;x check&lt;&#x2F;code&gt; checks rust-analyzer by default&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112273&quot;&gt;Error when testing with x.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112271&quot;&gt;Invalid documentation path reference in rustfmt Cargo.toml&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112265&quot;&gt;windows-sys generated WinAPI bindings break ARM platforms&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112262&quot;&gt;Compile error with 1.70.0 - … InstrProfilingRuntime.cpp: C++ compiler not installed on this system&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112082&quot;&gt;the docs of rustdoc get overwritten by the bootstrap docs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112074&quot;&gt;bootstrap: Rename &lt;code&gt;profile = user&lt;&#x2F;code&gt; to &lt;code&gt;profile = dist&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112009&quot;&gt;We are not running std tests for wasm&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111894&quot;&gt;bootstrap: make &lt;code&gt;--exclude&lt;&#x2F;code&gt; consistent with &lt;code&gt;--skip&lt;&#x2F;code&gt; in libtest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111893&quot;&gt;bootstrap should rebuild LLVM when it changes&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111825&quot;&gt;.&#x2F;x.py test does not explain why a #[should_panic] test failed&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111766&quot;&gt;building from source does not like if you &lt;code&gt;git init&lt;&#x2F;code&gt; the tree.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111700&quot;&gt;&lt;code&gt;rustc&lt;&#x2F;code&gt; fails to build for target &lt;code&gt;riscv64gc-unknown-linux-musl&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111653&quot;&gt;Install bootstrap fails to use configured prefix due to Tarball add_renamed_file&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111340&quot;&gt;components missing from beta&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111142&quot;&gt;Invalid &lt;code&gt;aarch64-unknown-none&lt;&#x2F;code&gt; target produced if the &lt;code&gt;CC_aarch64_unknown_none&lt;&#x2F;code&gt; env var is not set&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111136&quot;&gt;x.ps1 does not fail the build&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111124&quot;&gt;nightly build fails with: error: failed to download from `https:&#x2F;&#x2F;crates.io&#x2F;api&#x2F;v1&#x2F;crates&#x2F;opener&#x2F;0.5.2&#x2F;download&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111046&quot;&gt;Failed to run &lt;code&gt;x&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110995&quot;&gt;Bootstrap outputs some progress messages on stdout&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110910&quot;&gt;Test &lt;code&gt;x.py install&lt;&#x2F;code&gt; in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110742&quot;&gt;rustbuild: x.py install: &lt;code&gt;error: manifest path .. cargo&#x2F;crates&#x2F;credential&#x2F;cargo-credential-1password&#x2F;Cargo.toml&lt;&#x2F;code&gt; does not exist`&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110692&quot;&gt;&lt;code&gt;x build&lt;&#x2F;code&gt; lives blissfully assuming llvm does not exist&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110625&quot;&gt;symlinking is not working as expected on &lt;code&gt;x build&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110570&quot;&gt;&lt;code&gt;x test --stage 1 tests&#x2F;rustdoc{,-ui}&lt;&#x2F;code&gt; fails when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110537&quot;&gt;Allow bootstrap to use custom test runner commands&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110511&quot;&gt;&amp;quot;cannot produce dylib for &lt;code&gt;rustc_driver v0.0.0 ...&lt;&#x2F;code&gt; as the target &lt;code&gt;riscv64gc-unknown-linux-musl&lt;&#x2F;code&gt; does not support these crate types&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110506&quot;&gt;rustbuild: some x.py targets no longer print their dependencies being built&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110479&quot;&gt;Purge Python&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110474&quot;&gt;The LLVM we ship in &lt;code&gt;rust-dev&lt;&#x2F;code&gt; doesn&#x27;t match the LLVM we ship in the &lt;code&gt;rustc&lt;&#x2F;code&gt; component&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110471&quot;&gt;&lt;code&gt;x setup&lt;&#x2F;code&gt; no longer goes through all setup steps before checking if config.toml exists&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110411&quot;&gt;&lt;code&gt;download-rustc&lt;&#x2F;code&gt; should support a cross-compiled &lt;code&gt;host&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110357&quot;&gt;&lt;code&gt;x test tests&#x2F;run-make&#x2F;translation&lt;&#x2F;code&gt; fails when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110355&quot;&gt;&lt;code&gt;x test src&#x2F;tools&#x2F;rust-analyzer&lt;&#x2F;code&gt; fails when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110354&quot;&gt;&lt;code&gt;x test src&#x2F;tools&#x2F;lint-docs&lt;&#x2F;code&gt; fails when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110352&quot;&gt;&lt;code&gt;x test core&lt;&#x2F;code&gt; fails when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110296&quot;&gt;Cross-compiling &lt;code&gt;rustc&lt;&#x2F;code&gt; with LTO enabled results in error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110226&quot;&gt;&lt;code&gt;build-pass&lt;&#x2F;code&gt; tests in &lt;code&gt;tests&#x2F;ui-fulldeps&lt;&#x2F;code&gt; fail when cross-compiling and download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110225&quot;&gt;&lt;code&gt;run-pass&lt;&#x2F;code&gt; tests in &lt;code&gt;tests&#x2F;ui-fulldeps&#x2F;&lt;&#x2F;code&gt; fall when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110178&quot;&gt;bootstrap doesn&#x27;t retry downloads that fail with a non-HTTP error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110163&quot;&gt;&amp;quot;Alternatively, use the pre-vendored &lt;code&gt;rustc-src&lt;&#x2F;code&gt; dist component&amp;quot; is confusing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110120&quot;&gt;E0460 long description is too optimistic about cargo&#x27;s abilities&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110109&quot;&gt;&lt;code&gt;.&#x2F;configure&lt;&#x2F;code&gt; should not silently overwrite an existing config.toml&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110102&quot;&gt;Miri UI tests aren&#x27;t run on CI (or locally)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110087&quot;&gt;Add a new &lt;code&gt;download-ci-llvm = if-unchanged&lt;&#x2F;code&gt; option and enable it by default for &lt;code&gt;profile = codegen&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110071&quot;&gt;bootstrap panic generating rustc docs while cross-compiling with &lt;code&gt;x.py dist&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110067&quot;&gt;Confusing diagnostics for unstable features when building Rust with stable rustc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110020&quot;&gt;Rename &lt;code&gt;ignore-git&lt;&#x2F;code&gt; to &lt;code&gt;omit-git-hash&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110015&quot;&gt;Run tests via miri for compiler crates that use &lt;code&gt;unsafe&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109987&quot;&gt;LLVM submodule isn&#x27;t checked out when building &lt;code&gt;riscv64gc-unknown-linux-musl&lt;&#x2F;code&gt; target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109967&quot;&gt;bootstrap: build locking doesn&#x27;t work any more&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109933&quot;&gt;Tracking Issue for &lt;code&gt;x suggest&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109859&quot;&gt;Tracking Issue for removing unsafe code from bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109712&quot;&gt;Pass -Werror when building LLVM in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109630&quot;&gt;Access Denied Error when &lt;code&gt;x.py&lt;&#x2F;code&gt; tries to rebuild bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109610&quot;&gt;&lt;code&gt;rust.codegen-backends&lt;&#x2F;code&gt; interacts confusingly with paths&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109492&quot;&gt;Rust build failure on Solaris SPARC - error[E0093]: unrecognized intrinsic function: &lt;code&gt;read_via_copy&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109407&quot;&gt;Allow passing the --nocapture flag to compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109398&quot;&gt;bootstrap: Ensure that all Steps are exercised in &lt;code&gt;--dry-run&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109316&quot;&gt;&lt;code&gt;.&#x2F;configure&lt;&#x2F;code&gt; doesn&#x27;t support lists&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109315&quot;&gt;&lt;code&gt;codegen-backends = [&amp;quot;rustc_codegen_cranelift&amp;quot;]&lt;&#x2F;code&gt; should give a better error message&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109314&quot;&gt;&lt;code&gt;x test rustc_interface --stage 0&lt;&#x2F;code&gt; is broken again&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109313&quot;&gt;&lt;code&gt;x clean --stage 1&lt;&#x2F;code&gt; silently does the wrong thing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109308&quot;&gt;bootstrap: consider lowering &#x2F; skipping compression when &lt;code&gt;x.py install&lt;&#x2F;code&gt;ing artifacts&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109286&quot;&gt;bootstrap: Error: Unable to find the stamp file&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109262&quot;&gt;Use working debugger for debuginfo tests &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109194&quot;&gt;build: bootstrap panics when using the --llvm-root option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109190&quot;&gt;bootstrap: document how to reproduce broken intra-doc links locally&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109132&quot;&gt;run-make with target wasm32-unknown-unknown has hard-to-diagnose errors&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109120&quot;&gt;add bootstrap tests for detecting src and out&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109103&quot;&gt;build: bootstrap fails when using --enable-local-rust option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109070&quot;&gt;LLVM update detection only works with bors merge commit&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108966&quot;&gt;Tracking Issue for decoupling from github actions environment variables in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108959&quot;&gt;rust bootstrap in CI failing for 1.68.0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108948&quot;&gt;rust 1.68.0 install fails with &lt;code&gt;missing llvm-tools&lt;&#x2F;code&gt; if using external llvm&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108928&quot;&gt;.&#x2F;configure still doesn&#x27;t work on top-level keys&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108914&quot;&gt;Testing a cross-compiled toolchain&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108864&quot;&gt;Inconsistent path separators when trying to list paths using &lt;code&gt;doc --help --verbose&lt;&#x2F;code&gt; on mingw&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108779&quot;&gt;compiletest overwrites PYTHONPATH&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108768&quot;&gt;&lt;code&gt;x test --stage 2 std&lt;&#x2F;code&gt; uses the wrong stage when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108767&quot;&gt;&lt;code&gt;tests&#x2F;ui&#x2F;allocator&#x2F;no_std-alloc-error-handler*&lt;&#x2F;code&gt; fail when &lt;code&gt;download-rustc&lt;&#x2F;code&gt; is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108766&quot;&gt; Dogfood CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108622&quot;&gt;Get rid of &lt;code&gt;llvm.allow-old-toolchain&lt;&#x2F;code&gt; option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108621&quot;&gt;&lt;code&gt;.&#x2F;configure&lt;&#x2F;code&gt; doesn&#x27;t allow setting hashmap toml values&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108614&quot;&gt;Rename &lt;code&gt;src&#x2F;etc&#x2F;vscode_settings.json&lt;&#x2F;code&gt; -&amp;gt; &lt;code&gt;rust_analyzer_settings.json&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108612&quot;&gt;Omit commented-out options in &lt;code&gt;configure.py&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108565&quot;&gt;Reorganize config.toml.example so that unsupported options don&#x27;t come first in the list&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108517&quot;&gt;&lt;code&gt;x clean library&#x2F;std&lt;&#x2F;code&gt; fails with an unexpected argument error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108426&quot;&gt;thread &#x27;rustc&#x27; panicked at &#x27;expected expression&#x27;, compiler&#x2F;rustc_expand&#x2F;src&#x2F;base.rs:176:18&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108261&quot;&gt;&lt;code&gt;x.py test&lt;&#x2F;code&gt; ignores &lt;code&gt;--no-fail-fast&lt;&#x2F;code&gt; in some tool testsuites.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108240&quot;&gt;Rename &lt;code&gt;src&#x2F;bootstrap&#x2F;native.rs&lt;&#x2F;code&gt; to &lt;code&gt;llvm.rs&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108210&quot;&gt;rustfmt breaks when &lt;code&gt;rustc&lt;&#x2F;code&gt; is set in &lt;code&gt;config.toml&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108111&quot;&gt;&lt;code&gt;x dist --stage 0&lt;&#x2F;code&gt; does not check out submodules automatically&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108051&quot;&gt;Improve &amp;quot;Building compiler artifacts&amp;quot; output&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108004&quot;&gt;support &lt;code&gt;x fmt&lt;&#x2F;code&gt; for sub and outside of rust directories&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107974&quot;&gt;Run Miri on tests (ui? stdlib? vote now on your phones)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107944&quot;&gt;&lt;code&gt;.\x fmt std&lt;&#x2F;code&gt; panics&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107907&quot;&gt;&lt;code&gt;src&#x2F;tools&#x2F;x&lt;&#x2F;code&gt; doesn&#x27;t work on old checkouts of the compiler&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107832&quot;&gt;&lt;code&gt;x check --json-output&lt;&#x2F;code&gt; doesn&#x27;t use JSON output for building bootstrap itself&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107804&quot;&gt;Bootstrap no longer prints &amp;quot;Build completed unsuccessfully when it exits with an error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108535&quot;&gt;&lt;code&gt;rust-docs&lt;&#x2F;code&gt; and &lt;code&gt;rustc-docs&lt;&#x2F;code&gt; components conflict at &lt;code&gt;share&#x2F;doc&#x2F;rust&#x2F;html&#x2F;rustc&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107722&quot;&gt;x.py fails all downloads that use a tempdir with snap curl&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107703&quot;&gt;Create &lt;code&gt;.vscode&lt;&#x2F;code&gt; directory in &lt;code&gt;x.py setup&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107676&quot;&gt;x fmt broken on NixOS since stage0 update&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107668&quot;&gt;bootstrap: &amp;quot;download-ci-llvm = true&amp;quot; doesn&#x27;t work on x86_64-pc-windows-gnu with lld&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107547&quot;&gt;Suggested rust-analyzer config can&#x27;t run rustfmt&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107506&quot;&gt;Confusing error message with &lt;code&gt;download-ci-llvm&lt;&#x2F;code&gt; on old checkout&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107501&quot;&gt;x.py fix is broken&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107450&quot;&gt;rustbuild: x.py dist  should interleave tool builds &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107392&quot;&gt;Confusing error message when using &lt;code&gt;--keep-stage-std&lt;&#x2F;code&gt; after cleaning&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107375&quot;&gt;bootstrap: Support &lt;code&gt;--&lt;&#x2F;code&gt; as an alternative to &lt;code&gt;--args&lt;&#x2F;code&gt; and &lt;code&gt;--test-args&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107230&quot;&gt;Wording during bootstrap is inconsistent&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107225&quot;&gt;bootstrap: &lt;code&gt;download-ci-llvm = &amp;quot;if-available&amp;quot;&lt;&#x2F;code&gt; tries to download alt artifacts that don&#x27;t exist on tier 2 platforms&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107202&quot;&gt;Add support for &lt;code&gt;rust.lto=off&lt;&#x2F;code&gt; to bootstrap for faster dev builds&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107094&quot;&gt;&lt;code&gt;rustdoc --version --verbose&lt;&#x2F;code&gt; no longer displays commit hashes + date since beta 1.67&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107077&quot;&gt;&amp;quot;build directory locked&amp;quot; should say which process is holding the lock&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107050&quot;&gt;&lt;code&gt;.&#x2F;configure&lt;&#x2F;code&gt; should set &lt;code&gt;profile = &amp;quot;user&amp;quot;&lt;&#x2F;code&gt; by default&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107049&quot;&gt;&lt;code&gt;.&#x2F;configure --set changelog-seen=2&lt;&#x2F;code&gt; doesn&#x27;t work&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107019&quot;&gt;bootstrap: Don&#x27;t use panics to report user errors&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107018&quot;&gt;Bootstrap fails to wipe the sysroot directory on Windows if proc-macro-server is being used&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106972&quot;&gt;warning: unused variable &#x27;RCSrc&#x27; [-Wunused-variable] (and several others) while executing &lt;code&gt;.&#x2F;x.py build &amp;amp;&amp;amp; .&#x2F;x.py install&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106941&quot;&gt;Option &#x27;&#x27; given more than once when building clippy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106920&quot;&gt;&lt;code&gt;x.py fmt&lt;&#x2F;code&gt; is extremely noisy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106803&quot;&gt;Document tidy and bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106651&quot;&gt;x.py fails with custom Git remote name&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106469&quot;&gt;tidy tries to run unrelated &lt;code&gt;x&lt;&#x2F;code&gt; binary&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106345&quot;&gt;&lt;code&gt;tidy&lt;&#x2F;code&gt; output unorganised and unclear&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;&#x2F;details&gt;
&lt;details style=&quot;overflow-y: scroll; max-height: 750px;&quot;&gt;
  &lt;summary&gt;222 issues were closed&lt;&#x2F;summary&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;118930&quot;&gt;When running CI locally with src&#x2F;ci&#x2F;docker&#x2F;run.sh bootstrap can&#x27;t access git history, requires a local LLVM build&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;118862&quot;&gt;error[E0599]: no method named &lt;code&gt;write_all&lt;&#x2F;code&gt; found for struct &lt;code&gt;File&lt;&#x2F;code&gt; in the current scope&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;118084&quot;&gt;LLVMRust symbols not defined when building with -Zcross-crate-inline-threshold=always&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;118061&quot;&gt;Mommy can&#x27;t check rust-analyzer if I ask her for debuginfo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117983&quot;&gt;bootstrap: fingerprinting is broken somehow&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117762&quot;&gt;&lt;code&gt;x clean compiler&#x2F;rustc_middle&lt;&#x2F;code&gt; errors with a stability error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117653&quot;&gt;Suggestion: Cache &lt;code&gt;x --help&lt;&#x2F;code&gt; so that it doesn&#x27;t rebuild to show help message&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117430&quot;&gt;CI: Bootstrap no longer documents compiler crates&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117366&quot;&gt;cranelift component broken?&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117315&quot;&gt;bootstrap: cargo output is missing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117203&quot;&gt;rust-1.74.0-beta fails to execute x.py install with: thread &#x27;main&#x27; panicked at install.rs:59:17 - Failed the write access check for the current user. No such file or directory&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;117067&quot;&gt;x.ps1 complains Python isn&#x27;t installed, even though it is installed and working&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;116538&quot;&gt;bootstrap sets &lt;code&gt;-Zunstable-options&lt;&#x2F;code&gt; on &amp;quot;check&amp;quot; but not &amp;quot;build&amp;quot;, leading to build script reruns&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;116398&quot;&gt;forcing unstable flags during bootstrap does not work&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;116397&quot;&gt;Unable to build LLVM with clang on master&#x2F;stable 1.73&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;116285&quot;&gt;Problem with build infrastucture after 4ea90af70f2211fb07a5b722f21850ce99f06cf8  commit&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115675&quot;&gt;compiletest fails when rustc prints too much JSON&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115502&quot;&gt;config.toml generated by .&#x2F;configure does not include tools= definition anymore&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115275&quot;&gt;Invalid checksum in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115171&quot;&gt;compiletest: &amp;quot;ignore-debug&amp;quot; tests are ignored even with debug-assertions-std = false&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115073&quot;&gt;bootstrap atop nix atop non-nix (old, Linux) OS fails with inscrutable errors&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115065&quot;&gt;Bumping rustc version in-tree causes Fuchsia builders to fail&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;115041&quot;&gt;error: manifest path &lt;code&gt;&#x2F;public&#x2F;home&#x2F;litz&#x2F;mysw&#x2F;rust-31032ecb1550a402a726e9c244f6a716b214cc9d&#x2F;src&#x2F;tools&#x2F;cargo&#x2F;Cargo.toml&lt;&#x2F;code&gt; does not exist&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;114609&quot;&gt;&lt;code&gt;--failed&lt;&#x2F;code&gt; flag for &lt;code&gt;x test&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;114444&quot;&gt;Cannot build Rust 1.71.1 with 1.71.0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;114245&quot;&gt;&lt;code&gt;x.py fmt&lt;&#x2F;code&gt; counts untracked files as formatted?&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113963&quot;&gt;&lt;code&gt;.&#x2F;x.py test&lt;&#x2F;code&gt; panics&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113798&quot;&gt;x test error_index_generator triggers &#x27;nested groups are not supported by GHA&#x27; check&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113784&quot;&gt;bootstrap PGO artifact copies broken&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113678&quot;&gt;&lt;code&gt;.&#x2F;x.py dist&lt;&#x2F;code&gt; fails in &lt;code&gt;rust 1.71.0&lt;&#x2F;code&gt; on &lt;code&gt;lint-docs&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113580&quot;&gt;bootstrap: sanity check install prefix and sysconfdir&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113222&quot;&gt;Suggest &lt;code&gt;x build library&lt;&#x2F;code&gt; for a custom toolchain that fails to load &lt;code&gt;core&lt;&#x2F;code&gt; &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113208&quot;&gt;bootstrap: --fail-fast doesn&#x27;t work anymore&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113178&quot;&gt;bootstrap: &lt;code&gt;rustc-args&lt;&#x2F;code&gt; is only passed to compiletest, not unit tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;113085&quot;&gt;error: unused import - when building Rust on Solaris where isn&#x27;t fd-lock available&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112846&quot;&gt;x.py setup dist says it uses src&#x2F;bootstrap&#x2F;defaults&#x2F;config.dist.toml, which does not exist&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112678&quot;&gt;bootstrap: Allow configuring the opt-level, not just debug vs release&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112440&quot;&gt;&lt;code&gt;x doc compiler --open&lt;&#x2F;code&gt; no longer opens any documentation&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112393&quot;&gt;.&#x2F;x.py check broken with vendored dependencies&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112287&quot;&gt;&lt;code&gt;x check&lt;&#x2F;code&gt; checks rust-analyzer by default&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112273&quot;&gt;Error when testing with x.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112271&quot;&gt;Invalid documentation path reference in rustfmt Cargo.toml&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112265&quot;&gt;windows-sys generated WinAPI bindings break ARM platforms&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112262&quot;&gt;Compile error with 1.70.0 - … InstrProfilingRuntime.cpp: C++ compiler not installed on this system&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112082&quot;&gt;the docs of rustdoc get overwritten by the bootstrap docs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112074&quot;&gt;bootstrap: Rename &lt;code&gt;profile = user&lt;&#x2F;code&gt; to &lt;code&gt;profile = dist&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111894&quot;&gt;bootstrap: make &lt;code&gt;--exclude&lt;&#x2F;code&gt; consistent with &lt;code&gt;--skip&lt;&#x2F;code&gt; in libtest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111893&quot;&gt;bootstrap should rebuild LLVM when it changes&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111825&quot;&gt;.&#x2F;x.py test does not explain why a #[should_panic] test failed&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111653&quot;&gt;Install bootstrap fails to use configured prefix due to Tarball add_renamed_file&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111340&quot;&gt;components missing from beta&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111136&quot;&gt;x.ps1 does not fail the build&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111124&quot;&gt;nightly build fails with: error: failed to download from `https:&#x2F;&#x2F;crates.io&#x2F;api&#x2F;v1&#x2F;crates&#x2F;opener&#x2F;0.5.2&#x2F;download&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;111046&quot;&gt;Failed to run &lt;code&gt;x&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110995&quot;&gt;Bootstrap outputs some progress messages on stdout&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110742&quot;&gt;rustbuild: x.py install: &lt;code&gt;error: manifest path .. cargo&#x2F;crates&#x2F;credential&#x2F;cargo-credential-1password&#x2F;Cargo.toml&lt;&#x2F;code&gt; does not exist`&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110625&quot;&gt;symlinking is not working as expected on &lt;code&gt;x build&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110506&quot;&gt;rustbuild: some x.py targets no longer print their dependencies being built&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110474&quot;&gt;The LLVM we ship in &lt;code&gt;rust-dev&lt;&#x2F;code&gt; doesn&#x27;t match the LLVM we ship in the &lt;code&gt;rustc&lt;&#x2F;code&gt; component&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110471&quot;&gt;&lt;code&gt;x setup&lt;&#x2F;code&gt; no longer goes through all setup steps before checking if config.toml exists&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110357&quot;&gt;&lt;code&gt;x test tests&#x2F;run-make&#x2F;translation&lt;&#x2F;code&gt; fails when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110355&quot;&gt;&lt;code&gt;x test src&#x2F;tools&#x2F;rust-analyzer&lt;&#x2F;code&gt; fails when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110354&quot;&gt;&lt;code&gt;x test src&#x2F;tools&#x2F;lint-docs&lt;&#x2F;code&gt; fails when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110352&quot;&gt;&lt;code&gt;x test core&lt;&#x2F;code&gt; fails when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110296&quot;&gt;Cross-compiling &lt;code&gt;rustc&lt;&#x2F;code&gt; with LTO enabled results in error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110226&quot;&gt;&lt;code&gt;build-pass&lt;&#x2F;code&gt; tests in &lt;code&gt;tests&#x2F;ui-fulldeps&lt;&#x2F;code&gt; fail when cross-compiling and download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110225&quot;&gt;&lt;code&gt;run-pass&lt;&#x2F;code&gt; tests in &lt;code&gt;tests&#x2F;ui-fulldeps&#x2F;&lt;&#x2F;code&gt; fall when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110109&quot;&gt;&lt;code&gt;.&#x2F;configure&lt;&#x2F;code&gt; should not silently overwrite an existing config.toml&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110102&quot;&gt;Miri UI tests aren&#x27;t run on CI (or locally)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110087&quot;&gt;Add a new &lt;code&gt;download-ci-llvm = if-unchanged&lt;&#x2F;code&gt; option and enable it by default for &lt;code&gt;profile = codegen&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110067&quot;&gt;Confusing diagnostics for unstable features when building Rust with stable rustc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110020&quot;&gt;Rename &lt;code&gt;ignore-git&lt;&#x2F;code&gt; to &lt;code&gt;omit-git-hash&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109987&quot;&gt;LLVM submodule isn&#x27;t checked out when building &lt;code&gt;riscv64gc-unknown-linux-musl&lt;&#x2F;code&gt; target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109967&quot;&gt;bootstrap: build locking doesn&#x27;t work any more&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109610&quot;&gt;&lt;code&gt;rust.codegen-backends&lt;&#x2F;code&gt; interacts confusingly with paths&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109492&quot;&gt;Rust build failure on Solaris SPARC - error[E0093]: unrecognized intrinsic function: &lt;code&gt;read_via_copy&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109407&quot;&gt;Allow passing the --nocapture flag to compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109316&quot;&gt;&lt;code&gt;.&#x2F;configure&lt;&#x2F;code&gt; doesn&#x27;t support lists&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109315&quot;&gt;&lt;code&gt;codegen-backends = [&amp;quot;rustc_codegen_cranelift&amp;quot;]&lt;&#x2F;code&gt; should give a better error message&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109314&quot;&gt;&lt;code&gt;x test rustc_interface --stage 0&lt;&#x2F;code&gt; is broken again&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109313&quot;&gt;&lt;code&gt;x clean --stage 1&lt;&#x2F;code&gt; silently does the wrong thing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109286&quot;&gt;bootstrap: Error: Unable to find the stamp file&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109194&quot;&gt;build: bootstrap panics when using the --llvm-root option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;109103&quot;&gt;build: bootstrap fails when using --enable-local-rust option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108959&quot;&gt;rust bootstrap in CI failing for 1.68.0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108948&quot;&gt;rust 1.68.0 install fails with &lt;code&gt;missing llvm-tools&lt;&#x2F;code&gt; if using external llvm&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108928&quot;&gt;.&#x2F;configure still doesn&#x27;t work on top-level keys&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108779&quot;&gt;compiletest overwrites PYTHONPATH&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108768&quot;&gt;&lt;code&gt;x test --stage 2 std&lt;&#x2F;code&gt; uses the wrong stage when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108767&quot;&gt;&lt;code&gt;tests&#x2F;ui&#x2F;allocator&#x2F;no_std-alloc-error-handler*&lt;&#x2F;code&gt; fail when &lt;code&gt;download-rustc&lt;&#x2F;code&gt; is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108766&quot;&gt; Dogfood CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108622&quot;&gt;Get rid of &lt;code&gt;llvm.allow-old-toolchain&lt;&#x2F;code&gt; option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108621&quot;&gt;&lt;code&gt;.&#x2F;configure&lt;&#x2F;code&gt; doesn&#x27;t allow setting hashmap toml values&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108614&quot;&gt;Rename &lt;code&gt;src&#x2F;etc&#x2F;vscode_settings.json&lt;&#x2F;code&gt; -&amp;gt; &lt;code&gt;rust_analyzer_settings.json&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108612&quot;&gt;Omit commented-out options in &lt;code&gt;configure.py&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108517&quot;&gt;&lt;code&gt;x clean library&#x2F;std&lt;&#x2F;code&gt; fails with an unexpected argument error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108426&quot;&gt;thread &#x27;rustc&#x27; panicked at &#x27;expected expression&#x27;, compiler&#x2F;rustc_expand&#x2F;src&#x2F;base.rs:176:18&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108261&quot;&gt;&lt;code&gt;x.py test&lt;&#x2F;code&gt; ignores &lt;code&gt;--no-fail-fast&lt;&#x2F;code&gt; in some tool testsuites.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108240&quot;&gt;Rename &lt;code&gt;src&#x2F;bootstrap&#x2F;native.rs&lt;&#x2F;code&gt; to &lt;code&gt;llvm.rs&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108210&quot;&gt;rustfmt breaks when &lt;code&gt;rustc&lt;&#x2F;code&gt; is set in &lt;code&gt;config.toml&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108111&quot;&gt;&lt;code&gt;x dist --stage 0&lt;&#x2F;code&gt; does not check out submodules automatically&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108051&quot;&gt;Improve &amp;quot;Building compiler artifacts&amp;quot; output&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108004&quot;&gt;support &lt;code&gt;x fmt&lt;&#x2F;code&gt; for sub and outside of rust directories&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107944&quot;&gt;&lt;code&gt;.\x fmt std&lt;&#x2F;code&gt; panics&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107907&quot;&gt;&lt;code&gt;src&#x2F;tools&#x2F;x&lt;&#x2F;code&gt; doesn&#x27;t work on old checkouts of the compiler&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107832&quot;&gt;&lt;code&gt;x check --json-output&lt;&#x2F;code&gt; doesn&#x27;t use JSON output for building bootstrap itself&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107804&quot;&gt;Bootstrap no longer prints &amp;quot;Build completed unsuccessfully when it exits with an error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;108535&quot;&gt;&lt;code&gt;rust-docs&lt;&#x2F;code&gt; and &lt;code&gt;rustc-docs&lt;&#x2F;code&gt; components conflict at &lt;code&gt;share&#x2F;doc&#x2F;rust&#x2F;html&#x2F;rustc&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107722&quot;&gt;x.py fails all downloads that use a tempdir with snap curl&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107703&quot;&gt;Create &lt;code&gt;.vscode&lt;&#x2F;code&gt; directory in &lt;code&gt;x.py setup&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107676&quot;&gt;x fmt broken on NixOS since stage0 update&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107668&quot;&gt;bootstrap: &amp;quot;download-ci-llvm = true&amp;quot; doesn&#x27;t work on x86_64-pc-windows-gnu with lld&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107547&quot;&gt;Suggested rust-analyzer config can&#x27;t run rustfmt&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107506&quot;&gt;Confusing error message with &lt;code&gt;download-ci-llvm&lt;&#x2F;code&gt; on old checkout&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107501&quot;&gt;x.py fix is broken&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107392&quot;&gt;Confusing error message when using &lt;code&gt;--keep-stage-std&lt;&#x2F;code&gt; after cleaning&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107375&quot;&gt;bootstrap: Support &lt;code&gt;--&lt;&#x2F;code&gt; as an alternative to &lt;code&gt;--args&lt;&#x2F;code&gt; and &lt;code&gt;--test-args&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107230&quot;&gt;Wording during bootstrap is inconsistent&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107225&quot;&gt;bootstrap: &lt;code&gt;download-ci-llvm = &amp;quot;if-available&amp;quot;&lt;&#x2F;code&gt; tries to download alt artifacts that don&#x27;t exist on tier 2 platforms&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107202&quot;&gt;Add support for &lt;code&gt;rust.lto=off&lt;&#x2F;code&gt; to bootstrap for faster dev builds&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107094&quot;&gt;&lt;code&gt;rustdoc --version --verbose&lt;&#x2F;code&gt; no longer displays commit hashes + date since beta 1.67&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107077&quot;&gt;&amp;quot;build directory locked&amp;quot; should say which process is holding the lock&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107050&quot;&gt;&lt;code&gt;.&#x2F;configure&lt;&#x2F;code&gt; should set &lt;code&gt;profile = &amp;quot;user&amp;quot;&lt;&#x2F;code&gt; by default&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107049&quot;&gt;&lt;code&gt;.&#x2F;configure --set changelog-seen=2&lt;&#x2F;code&gt; doesn&#x27;t work&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;107018&quot;&gt;Bootstrap fails to wipe the sysroot directory on Windows if proc-macro-server is being used&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106972&quot;&gt;warning: unused variable &#x27;RCSrc&#x27; [-Wunused-variable] (and several others) while executing &lt;code&gt;.&#x2F;x.py build &amp;amp;&amp;amp; .&#x2F;x.py install&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106941&quot;&gt;Option &#x27;&#x27; given more than once when building clippy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106920&quot;&gt;&lt;code&gt;x.py fmt&lt;&#x2F;code&gt; is extremely noisy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106803&quot;&gt;Document tidy and bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106651&quot;&gt;x.py fails with custom Git remote name&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106469&quot;&gt;tidy tries to run unrelated &lt;code&gt;x&lt;&#x2F;code&gt; binary&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106206&quot;&gt;Tidy should detect unreachable modules in &lt;code&gt;compiler&#x2F;&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106086&quot;&gt;Enable ELIDED_LIFETIMES_IN_PATHS lint in doctests for the compiler&#x2F;libstd&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;106019&quot;&gt;bootstrap.py doesn&#x27;t work with vendoring and CARGO_HOME environment variable&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;105706&quot;&gt;Test that the compiler&#x2F;library builds with -Zmir-opt-level=3 -Zvalidate-mir&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;104723&quot;&gt;bootstrap should not use &lt;code&gt;rustc --version&lt;&#x2F;code&gt; to detect the build triple on on Mac Apple Silicon M1 arm64&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;104198&quot;&gt;Unify test code in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;103697&quot;&gt;x setup generates config.toml into root even when run outside of root.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;103630&quot;&gt;rust 1.64 now uses fd-lock-&amp;gt;rustix-&amp;gt;flock() for bootstraping where flock() is not available on Solaris&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;103201&quot;&gt;Simplify --exclude syntax and make it more useful&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;102003&quot;&gt;Make the status messages emitted by bootstrap more clear&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;101907&quot;&gt;Merge commits break LLVM CI download&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;101691&quot;&gt;Copy stage0 binaries into stage0-sysroot&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;101144&quot;&gt;&lt;code&gt;x.py&lt;&#x2F;code&gt; submodule handling breaks when tracking upstream as &lt;code&gt;upstream&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;101070&quot;&gt;rust-analyzer doesn&#x27;t work on bootstrap anymore&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;100657&quot;&gt;Build fails with &lt;code&gt;-Csplit-debuginfo&lt;&#x2F;code&gt; is unstable on this platform&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;98340&quot;&gt;Building with lld and download-ci-llvm&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;97762&quot;&gt;&lt;code&gt;x build src&#x2F;tools&#x2F;miri&lt;&#x2F;code&gt; doesn&#x27;t install miri as part of the built toolchain&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;96643&quot;&gt;Building and testing rustc on *BSD fails on -C split-debuginfo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;96188&quot;&gt;rustc build broken after #95906&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;96049&quot;&gt;&lt;code&gt;x setup -h -v&lt;&#x2F;code&gt; should work&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;95988&quot;&gt;Fix &lt;code&gt;x.py clippy&lt;&#x2F;code&gt; to be less janky&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;94782&quot;&gt;rustc-src target does not include vendor&#x2F; when re-building rustc-src&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;94275&quot;&gt;multiple definition of `llvm:: cl ::Option::anchor()&#x27; when running x.py build&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;94234&quot;&gt;bootstrap: RUSTFLAGS_BOOTSTRAP does not affect building bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;90686&quot;&gt;Consolidate bootstrap documentation&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;90244&quot;&gt;&lt;code&gt;x.py&lt;&#x2F;code&gt; panics when trying to build &amp;quot;stage3&amp;quot; compiler&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;89296&quot;&gt;ICE generated when attempting to bootstrap on x86_64-unknown-linux-gnu with a local libc checkout&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;88607&quot;&gt;Building errors on macos 10.13.6&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;88488&quot;&gt;ICE: &amp;quot;no entry found for key&amp;quot; while building stage0 tools&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;85751&quot;&gt;Problem linking libunwind when compiling clippy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;83970&quot;&gt;Native bootstrap for RISC-V on Gentoo Linux (failure)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;81930&quot;&gt;Follow-up work for &lt;code&gt;download-rustc&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;81613&quot;&gt;Unable to build with cmake on Windows: missing: Python3_EXECUTABLE Interpreter&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;81431&quot;&gt;&lt;code&gt;cargo fmt&lt;&#x2F;code&gt; and other tools don&#x27;t work for a linked toolchain.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;81381&quot;&gt;Unresolved LLVM symbols when linking rustc_driver.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;81155&quot;&gt;&lt;code&gt;.&#x2F;x.py fmt&lt;&#x2F;code&gt; uses incorrect rustfmt with download-ci-llvm=true and custom rustc (not stage0&#x2F;beta)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;79854&quot;&gt;Add a new cygwin target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;79249&quot;&gt;Remove &lt;code&gt;missing_tools&lt;&#x2F;code&gt; config&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;78734&quot;&gt;unable to run &lt;code&gt;.&#x2F;x.py check&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;78440&quot;&gt;.&#x2F;x.py fmt is not supported on this channel when not using stage0 toolchain rustc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;77620&quot;&gt;x.py breaks submodule state when run in a pre-commit hook from a worktree&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;77394&quot;&gt;Undefined reference to _Unwind_Resume while building rust&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;77370&quot;&gt;x.py: Add color to diffs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;76805&quot;&gt;bootstrap: &lt;code&gt;--warnings warn&lt;&#x2F;code&gt; doesn&#x27;t apply to bootstrap itself&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;76720&quot;&gt;ICE: stage2 builds of rustc itself see metadata serialized by a different rustc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;76470&quot;&gt;rustbuild: is llvm always built with AVR backend?&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;74545&quot;&gt;missing-tools broken when tools are explicitly selected&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;73132&quot;&gt;&amp;quot;x.py dist&amp;quot; build fails in llvm when DESTDIR is set&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;71743&quot;&gt;1.43.0 x.py &amp;quot;dist&amp;quot; build fails in LlvmTools build&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;71062&quot;&gt;&lt;code&gt;.&#x2F;x.py test &amp;lt;test_path&amp;gt; --target foo&lt;&#x2F;code&gt; does not work&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;69552&quot;&gt;compile requires zlib.h in default location&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;67109&quot;&gt;Debug build of libLLVM.so is enormous&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;67061&quot;&gt;Make librustc_error_code dynamically linked so it doesn&#x27;t rebuild everything every time&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;66458&quot;&gt;bootstrap&#x2F;rustbuild: &lt;code&gt;--test-args&lt;&#x2F;code&gt; has no effect for cargo tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;65509&quot;&gt;Running target llvm-config on host&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;65060&quot;&gt;&lt;code&gt;incremental = true&lt;&#x2F;code&gt; as the default in config.toml?&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;65000&quot;&gt;FCP for toolstate changes&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;64903&quot;&gt;rust-1.38: bootstrap linker=clang: error: failed to run custom build command for &lt;code&gt;ryu v1.0.0&lt;&#x2F;code&gt; &#x2F;&#x2F; Caused by: process didn&#x27;t exit successfully: &lt;code&gt;...&#x2F;work&#x2F;rustc-1.38.0-src&#x2F;build&#x2F;bootstrap&#x2F;debug&#x2F;build&#x2F;ryu-deb3460cf2bb47d1&#x2F;build-script-build&lt;&#x2F;code&gt; (signal: 11, SIGSEGV [...]&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;63915&quot;&gt;Default sysconfdir&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;61282&quot;&gt;rust-gdbgui script is not installed&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;59884&quot;&gt;tidy should skip files based on mtime.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;59332&quot;&gt;Get &lt;code&gt;x.py test&lt;&#x2F;code&gt; output in human-readable format&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;56228&quot;&gt;Building libstd without any features does not work&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;54619&quot;&gt;&amp;quot;ld: archive has no table of contents file&amp;quot; when compiling rustc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;54264&quot;&gt;rust 1.28.0 build fails - test failure&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;53658&quot;&gt;x.py: config.toml&#x27;s codegen-units overridden by RUSTFLAGS&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;53650&quot;&gt;&lt;code&gt;.&#x2F;x.py test&lt;&#x2F;code&gt; deletes &lt;code&gt;rustc_private&lt;&#x2F;code&gt; artifacts from the sysroot&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;52565&quot;&gt;Bootstrap deletes the sysroot directory when alternating between check and build, breaking --keep-stage&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;52112&quot;&gt;configure: not canonicalizing relative directories&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;51698&quot;&gt;Rustbuild: Building stage0 with system installed rust with rustlib in &#x2F;usr&#x2F;lib64 fails&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;51295&quot;&gt;ui test failures (segfaults and nested panics) since libbacktrace update&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;50341&quot;&gt;Build fails if &amp;quot;make&amp;quot; is not gnu make&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;49952&quot;&gt;Print message that clarifies some components are allowed to fail during build.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;49413&quot;&gt;lightweight submodule landing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;49180&quot;&gt;Build released compiler artifacts as optimized as possible&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;48940&quot;&gt;swallowed output line visible only upon second compile invocation&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;47872&quot;&gt;configure: Give a better error when the local rustc version is too old&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;45686&quot;&gt;bootstrap fails on NetBSD&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;44914&quot;&gt;&lt;code&gt;x.py build&lt;&#x2F;code&gt; fails to find bootstrap if global cargo config has target set&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;42404&quot;&gt;[rustbuild] should not rollback the submodules most of the time&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;40534&quot;&gt;Setting cxx in cargo.toml doesn&#x27;t pass through to build.rs scripts such as in rustc_llvm&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;40485&quot;&gt;tidy doesn&#x27;t play nicely with autocrlf&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;39951&quot;&gt;fakeroot invalidates build cache&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;39584&quot;&gt;ppc64le: Fails to build 1.14.0 with lots of E0554 and a Segmentation Fault on Ubuntu&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;38678&quot;&gt;TAGS targets (for emacs and vi integration) disappeared from Makefile&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;38575&quot;&gt;rustbuild: copy libs for stage1 from stage0 when using incremental and enable-local-rust&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;38553&quot;&gt;[rustbuild] test src&#x2F;serialize is no-op if target is provided&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;38212&quot;&gt;Add ability to pass CFLAGS and LIBS into bootstrap toml&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;36773&quot;&gt;Rustc version does not match manifest version&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;36253&quot;&gt;[rustbuild] cross-compiling does not pass target through to the C compiler&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;13983&quot;&gt;rustdoc could use some LD_LIBRARY_PATH handling cleanup&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;&#x2F;details&gt;
&lt;details style=&quot;overflow-y: scroll; max-height: 750px;&quot;&gt;
  &lt;summary&gt;896 pull requests were opened&lt;&#x2F;summary&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119448&quot;&gt;annotate-snippets: update to 0.10&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119445&quot;&gt;Handle non-existent&#x2F;empty .cargo&#x2F;registry&#x2F;src and empty env vars&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119441&quot;&gt;Simplify bootstrap &lt;code&gt;--check-cfg&lt;&#x2F;code&gt; arguments&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119440&quot;&gt;[perf experiment] Enable overflow checks for not-std&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119414&quot;&gt;bootstrap: Move -Clto= setting from Rustc::run to rustc_cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119413&quot;&gt;solaris support on bootstrap lock&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119378&quot;&gt;utilize the unused &lt;code&gt;llvm-tools&lt;&#x2F;code&gt; option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119373&quot;&gt;Remove usage of deprecated &lt;code&gt;missing-tools&lt;&#x2F;code&gt; bootstrap flag&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119303&quot;&gt;Update sysinfo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119298&quot;&gt;suppress change-tracker warnings in CI containers&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119294&quot;&gt;fix &lt;code&gt;.&#x2F;configure --set change-id&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119292&quot;&gt;bootstrap: use same make flags with rustdoc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119279&quot;&gt;[debugging] do not merge&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119248&quot;&gt;remove dead inferred outlives testing code&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119232&quot;&gt;Fix doc typos&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119227&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119211&quot;&gt;Bump stage0 to 1.76 beta&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119199&quot;&gt;Add arm64ec-pc-windows-msvc target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119184&quot;&gt;Switch from using &lt;code&gt;&#x2F;&#x2F;~ERROR&lt;&#x2F;code&gt; annotations with &lt;code&gt;--error-format&lt;&#x2F;code&gt; to &lt;code&gt;error-pattern&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119182&quot;&gt;Update sysinfo version to 0.30.0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119147&quot;&gt;[DO NOT MERGE] experiment CI with doctest-xcompile&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119124&quot;&gt;don&#x27;t build &lt;code&gt;rust-analyzer-proc-macro-srv&lt;&#x2F;code&gt; on def config &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119080&quot;&gt;Comment out &lt;code&gt;change-id&lt;&#x2F;code&gt; in &lt;code&gt;config.example.toml&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119077&quot;&gt;Separate MIR lints from validation&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119040&quot;&gt;Rearrange &lt;code&gt;config.codegen.toml&lt;&#x2F;code&gt; to match &lt;code&gt;config.compiler.toml&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119035&quot;&gt;[WIP] Run Miri and mir-opt tests without a target linker&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119034&quot;&gt;Allow coverage tests to ignore test modes, and to enable color in coverage reports&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119020&quot;&gt;remove &lt;code&gt;hex&lt;&#x2F;code&gt; dependency in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119017&quot;&gt;[perf experiment] (crudely) implement MIR-only rlibs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118999&quot;&gt;force current stage when &lt;code&gt;--stage&lt;&#x2F;code&gt; is expilicitly used&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118947&quot;&gt;Delegation implementation: step 1&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118946&quot;&gt;fix &lt;code&gt;x clean&lt;&#x2F;code&gt; for cross-compiled artifacts&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118943&quot;&gt;update &lt;code&gt;measureme&lt;&#x2F;code&gt; to 10.1.2 to deduplicate &lt;code&gt;parking_lot&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118937&quot;&gt;&lt;code&gt;-Ztrait-solver=next&lt;&#x2F;code&gt; to &lt;code&gt;-Znext-solver&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118936&quot;&gt;Update to LLVM 17.0.6&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118906&quot;&gt;Fix LLD thread flags in bootstrap on Windows&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118895&quot;&gt;merge spelling&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118894&quot;&gt;Unbreak non-unix non-windows bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118861&quot;&gt;Set the &lt;code&gt;in-rust-tree&lt;&#x2F;code&gt; feature for all rust-analyzer{-proc-macro-srv} steps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118854&quot;&gt;[DO NOT MERGE] Introduce mechanism to write compiler metrics to disk&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118842&quot;&gt;Make exhaustiveness usable outside of rustc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118817&quot;&gt;Subtree update of &lt;code&gt;rust-analyzer&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118810&quot;&gt;Revert using MCP510 in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118789&quot;&gt;fix --dry-run when the change-id warning is printed&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118782&quot;&gt;use &lt;code&gt;&amp;amp;&lt;&#x2F;code&gt; instead of start-process in x.ps1&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118769&quot;&gt;Range experiment&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118756&quot;&gt;use bold magenta instead of bold white for highlighting&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118747&quot;&gt;Remove extra check cfg handled by libc directly&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118738&quot;&gt;Netbsd10 update&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118737&quot;&gt;Extend tidy alphabetical checking to &lt;code&gt;tests&#x2F;&lt;&#x2F;code&gt;.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118724&quot;&gt;speed up &lt;code&gt;x install&lt;&#x2F;code&gt; by skipping archiving and compression&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118708&quot;&gt;tests: add sanity-check assembly test for every target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118703&quot;&gt;Remove unused bootstrap config option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118680&quot;&gt;Add support for shell argfiles&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118650&quot;&gt;add comment about keeping flags in sync between bootstrap.py and bootstrap.rs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118647&quot;&gt;dump bootstrap shims&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118642&quot;&gt;bootstrap(builder.rs): Don&#x27;t explicitly warn against &lt;code&gt;semicolon_in_expressions_from_macros&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118606&quot;&gt;Fix &lt;code&gt;x&lt;&#x2F;code&gt; not to quit after &lt;code&gt;x&lt;&#x2F;code&gt; prints &lt;code&gt;settings.json&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118566&quot;&gt;use c literals in compiler and library&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118546&quot;&gt;update hashbrown&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118539&quot;&gt;move packed-struct tests into packed&#x2F; folder&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118535&quot;&gt;better build locks for bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118528&quot;&gt;replace &lt;code&gt;once_cell::sync::OnceCell&lt;&#x2F;code&gt; with std &lt;code&gt;OnceLock&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118521&quot;&gt;Enable address sanitizer for MSVC targets using INFERASANLIBS linker flag&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118500&quot;&gt;Move some methods from &lt;code&gt;tcx.hir()&lt;&#x2F;code&gt; to &lt;code&gt;tcx&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118417&quot;&gt;Add unstable &lt;code&gt;-Zdefault-hidden-visibility&lt;&#x2F;code&gt; cmdline flag for &lt;code&gt;rustc&lt;&#x2F;code&gt;.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118375&quot;&gt;Add -Zunpretty=stable-mir output test&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118365&quot;&gt;Subtree update of &lt;code&gt;rust-analyzer&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118364&quot;&gt;Fix misc printing issues in &lt;code&gt;emit=stable_mir&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118352&quot;&gt;bootstrap: Memoize the LLVM rebuild hash to avoid very slow &lt;code&gt;x check&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118351&quot;&gt;do not generate llvm stamp when invoked from outside of tty&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118324&quot;&gt;compile-time evaluation: detect writes through immutable pointers&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118323&quot;&gt;give dev-friendly error message for incorrect config profiles&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118322&quot;&gt;skip {tidy,compiletest,rustdoc-gui} based tests for &lt;code&gt;DocTests::Only&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118305&quot;&gt;Draft of branch coverage support&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118301&quot;&gt;docs: publish nightly doc for &lt;code&gt;rustfix&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118297&quot;&gt;Merge &lt;code&gt;unused_tuple_struct_fields&lt;&#x2F;code&gt; into &lt;code&gt;dead_code&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118275&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118257&quot;&gt;Make traits &#x2F; trait methods detected by the dead code lint&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118253&quot;&gt;Replace &lt;code&gt;option.map(cond) == Some(true)&lt;&#x2F;code&gt; with &lt;code&gt;option.is_some_and(cond)&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118235&quot;&gt;Fix build on Solaris after #117815.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118220&quot;&gt;general improvements&#x2F;fixes on bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118187&quot;&gt;Recompile LLVM when it changes in the git sources&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118149&quot;&gt;Implement RFC 3127 sysroot path handling changes&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118132&quot;&gt;utilize stdlib debug assertion status in compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118083&quot;&gt;Remove i686-apple-darwin cross-testing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118071&quot;&gt;Remove &lt;code&gt;feature&lt;&#x2F;code&gt; from the list of well known check-cfg name&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118069&quot;&gt;allow bypassing the build directory lock&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118059&quot;&gt;Explicitly unset $CARGO for compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118050&quot;&gt;perform sanity checks before initiating cross-compilation in &lt;code&gt;MirOpt&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118042&quot;&gt;[beta] backport &amp;amp; bootstrap bump&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118036&quot;&gt;Add thinlto support to codegen, assembly and coverage tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118029&quot;&gt;Expand Miri&#x27;s BorTag GC to a Provenance GC&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118014&quot;&gt;Remove unnecessary -fembed-bitcode usage now that it&#x27;s deprecated&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118013&quot;&gt;Enable Rust to use the EHCont security feature of Windows&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117982&quot;&gt;bootstrap: only show PGO warnings when verbose&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117971&quot;&gt;[perf] test size reduction from compressing libstd&#x27;s debuginfo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117966&quot;&gt;add safe compilation options&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117958&quot;&gt;riscv32im-risc0-zkvm-elf: add target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117947&quot;&gt;Update the minimum external LLVM to 16.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117914&quot;&gt;On borrow return type, suggest borrowing from arg or owned return type&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117900&quot;&gt;Fix Python interpreter issues in configure and&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117888&quot;&gt;doc: add release notes to standalone doc bundle&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117875&quot;&gt;Bootstrap bump&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117873&quot;&gt;Add emulated TLS support&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117872&quot;&gt;Cranelift isn&#x27;t available on non-nightly channels&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117868&quot;&gt;Set &lt;code&gt;CFG_OMIT_GIT_HASH=1&lt;&#x2F;code&gt; during builds when &lt;code&gt;omit-git-hash&lt;&#x2F;code&gt; is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117867&quot;&gt;New attribute macros format for diagnostic structs without fluent slug&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117850&quot;&gt;bootstrap: simplify setting unstable-options for tools&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117842&quot;&gt;[beta] 1.75.0 promotion&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117833&quot;&gt;Fix bootstrap issue with git on MSYS + Experimental CI testing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117815&quot;&gt;improve bootstrap change-tracking system&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117813&quot;&gt;deprecate &lt;code&gt;if-available&lt;&#x2F;code&gt; value of &lt;code&gt;download-ci-llvm&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117809&quot;&gt;bootstrap: please document why a config change requires migration&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117797&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117792&quot;&gt;Add two tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117782&quot;&gt;Fix tidy tripping up on  untracked files with special characters in their name&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117771&quot;&gt;Build Fuchsia in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117765&quot;&gt;enable unstable feature on &lt;code&gt;x clean [PATH]&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117750&quot;&gt;bump few ICU4X leftover deps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117744&quot;&gt;Add -Zuse-sync-unwind&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117724&quot;&gt;Restore rustc shim error message&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117723&quot;&gt;speed up &lt;code&gt;x clean&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117708&quot;&gt;check config file before prompts on &lt;code&gt;x setup&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117701&quot;&gt;Subtree update of &lt;code&gt;rust-analyzer&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117700&quot;&gt;coverage: Rename the &lt;code&gt;run-coverage&lt;&#x2F;code&gt; test mode to &lt;code&gt;coverage-run&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117684&quot;&gt;crater: test enabling MCP510&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117673&quot;&gt;Stabilize THIR unsafeck&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117667&quot;&gt;Document clippy_config in nightly-rustc docs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117663&quot;&gt;bump some deps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117644&quot;&gt;[beta] backports&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117632&quot;&gt;Update ICU4X&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117612&quot;&gt;Prevent mixing deprecated check-cfg syntax with new one&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117595&quot;&gt;x clippy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117574&quot;&gt;improve compiler&amp;amp;tool documenting and re-enable cranelift on CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117566&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117556&quot;&gt;Disallow reference to &lt;code&gt;static mut&lt;&#x2F;code&gt; and adding &lt;code&gt;static_mut_ref&lt;&#x2F;code&gt; lint&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117540&quot;&gt;clone less&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117535&quot;&gt;Revert &amp;quot;Auto merge of #117328 - lqd:cranelift-rocket, r=Mark-Simulacrum&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117533&quot;&gt;Revert &amp;quot;bootstrap: do not purge docs on CI environment&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117524&quot;&gt;bootstrap&#x2F;setup: create hooks directory if non-existing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117509&quot;&gt;Remove support for alias &lt;code&gt;-Z symbol-mangling-version&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117484&quot;&gt;coverage: Unify &lt;code&gt;tests&#x2F;coverage-map&lt;&#x2F;code&gt; and &lt;code&gt;tests&#x2F;run-coverage&lt;&#x2F;code&gt; into &lt;code&gt;tests&#x2F;coverage&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117471&quot;&gt;bootstrap: do not purge docs on CI environment&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117458&quot;&gt;Embedded linker: Alternative approach to the current ptx-linker&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117435&quot;&gt;enable parallel rustc front end in nightly builds&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117410&quot;&gt;Use derivative for &lt;code&gt;Hash&lt;&#x2F;code&gt; in &lt;code&gt;rustc_type_ir&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117409&quot;&gt;Use derivative for &lt;code&gt;PartialOrd&lt;&#x2F;code&gt;&#x2F;&lt;code&gt;Ord&lt;&#x2F;code&gt; in &lt;code&gt;rustc_type_ir&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117408&quot;&gt;[dont commit] Use derivative for &lt;code&gt;PartialEq&lt;&#x2F;code&gt;&#x2F;&lt;code&gt;Eq&lt;&#x2F;code&gt; in &lt;code&gt;rustc_type_ir&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117407&quot;&gt;Use derivative for &lt;code&gt;Clone&lt;&#x2F;code&gt;&#x2F;&lt;code&gt;PartialOrd&lt;&#x2F;code&gt;&#x2F;&lt;code&gt;Ord&lt;&#x2F;code&gt;&#x2F;&lt;code&gt;Hash&lt;&#x2F;code&gt; in &lt;code&gt;rustc_type_ir&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117383&quot;&gt;improve and fix &lt;code&gt;x install&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117356&quot;&gt;Add support for mipsel-unknown-netbsd, 32-bit LE mips.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117341&quot;&gt;Old master&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117340&quot;&gt;coverage: Harmonize the &lt;code&gt;coverage-map&lt;&#x2F;code&gt; and &lt;code&gt;run-coverage&lt;&#x2F;code&gt; test directories&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117338&quot;&gt;Remove asmjs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117328&quot;&gt;pass &lt;code&gt;CODEGEN_BACKENDS&lt;&#x2F;code&gt; to docker&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117322&quot;&gt;change default output mode of &lt;code&gt;BootstrapCommand&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117313&quot;&gt;Run part of &lt;code&gt;rustc_codegen_gcc&lt;&#x2F;code&gt;&#x27;s tests in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117287&quot;&gt;fix miri target information for Test step&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117263&quot;&gt;handle the case when the change-id isn&#x27;t found&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117229&quot;&gt;Thir unsafeck fixes&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117197&quot;&gt;Avoid unnecessary builds&#x2F;rebuilds of &lt;code&gt;rust-demangler&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117184&quot;&gt;[DO NOT COMMIT] Use derivative to simplify impls in &lt;code&gt;rustc_type_ir&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117163&quot;&gt;compiletest: Display compilation errors in mir-opt tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117149&quot;&gt;tidy: add unit tests for alphabetical checks&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117122&quot;&gt;Allow configuring the parent GitHub repository&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117117&quot;&gt;Revert &amp;quot;Improve android-ndk property interface&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117105&quot;&gt;remove change-id assertion in bootstrap test&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117072&quot;&gt;Use &lt;code&gt;unwinding&lt;&#x2F;code&gt; crate for unwinding on Xous platform&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117069&quot;&gt;x.ps1: remove the check for Python from Windows Store&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117068&quot;&gt;Clean up &lt;code&gt;compiler&#x2F;rustc*&#x2F;Cargo.toml&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117050&quot;&gt;[&lt;code&gt;RFC 3086&lt;&#x2F;code&gt;] Attempt to try to resolve blocking concerns  &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117043&quot;&gt;add bootstrap flag &lt;code&gt;--skip-stage0-validation&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117040&quot;&gt;coverage: Add UI tests for values accepted by &lt;code&gt;-Cinstrument-coverage&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117032&quot;&gt;Enable cg_clif tests for riscv64gc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117005&quot;&gt;[beta] backports and stage0 bump&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116998&quot;&gt;Improve android-ndk property interface&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116986&quot;&gt;Add comment&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116983&quot;&gt;Prepare the &lt;code&gt;bootstrap&lt;&#x2F;code&gt; tool for the new check-cfg syntax&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116954&quot;&gt;Use shell parsing for response files&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116939&quot;&gt;bootstrap: bump fd-lock, clap and windows&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116921&quot;&gt;fix(bootstrap) info message show correct path now&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116881&quot;&gt;Add a new &lt;code&gt;download-ci-llvm = if-unchanged&lt;&#x2F;code&gt; option and enable it by default for &lt;code&gt;profile = codegen&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116810&quot;&gt;Add FileCheck annotations to mir-opt tests.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116767&quot;&gt;Normalize alloc-id in tests.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116732&quot;&gt;Make x capable of resolving symlinks&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116701&quot;&gt;bootstrap: Add in-code hint about MAGIC_EXTRA_RUSTFLAGS&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116697&quot;&gt;Allow bootstrap cache path to be set by environment variable&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116685&quot;&gt;demo of moving std::io::Error to core&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116644&quot;&gt;remove outdated bootstrap FIXME&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116643&quot;&gt;x.py zsh completion support&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116635&quot;&gt;optimize file read in &lt;code&gt;Config::verify&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116603&quot;&gt;Reorganize &lt;code&gt;bootstrap&#x2F;Cargo.toml&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116590&quot;&gt;Update x.ps1&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116581&quot;&gt;Centralize command running in boostrap (part one)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116577&quot;&gt;add &lt;code&gt;SAFETY&lt;&#x2F;code&gt; block on the usage of unsafe &lt;code&gt;getuid&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116556&quot;&gt;Sync rustc_codegen_cranelift&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116550&quot;&gt;Cleanup &lt;code&gt;rustc_features&lt;&#x2F;code&gt; some more&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116532&quot;&gt;Add RUSTFLAGS_BOOTSTRAP to RUSTFLAGS for bootstrap compilation&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116514&quot;&gt;linker: Remove &lt;code&gt;-Zgcc-ld&lt;&#x2F;code&gt; option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116508&quot;&gt;Miri subtree update&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116477&quot;&gt;Use tidy to enforce alphabetical dependency ordering&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116476&quot;&gt;Replace unsafe getuid with nix impl of Uid&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116449&quot;&gt;Pass flags to &lt;code&gt;rustdoc&lt;&#x2F;code&gt; shim without env. vars&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116448&quot;&gt;Pass rustc shim flags using environment variable&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116430&quot;&gt;vendoring in tarball sources&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116407&quot;&gt;Bump bootstrap compiler to just-released beta&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116404&quot;&gt;CFI: Fix (3) of core and std have explict CFI violations&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116365&quot;&gt;bootstrap: make copying linker binaries conditional&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116362&quot;&gt;[beta] promote release&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116352&quot;&gt;Optimize &lt;code&gt;librustc_driver.so&lt;&#x2F;code&gt; with BOLT &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116349&quot;&gt;ensure the parent path&#x27;s existence on &lt;code&gt;x install&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116343&quot;&gt;Stop mentioning internal lang items in no_std binary errors&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116323&quot;&gt;Turn &lt;code&gt;cfg_match&lt;&#x2F;code&gt; into a builtin&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116312&quot;&gt;Initiate the inner usage of &lt;code&gt;cfg_match&lt;&#x2F;code&gt; (Compiler)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116292&quot;&gt;warn if source is not either a git clone or a dist tarball&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116278&quot;&gt;Generalize LLD usage in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116276&quot;&gt;bootstrap: copy self-contained linking components to &lt;code&gt;stage0-sysroot&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116263&quot;&gt;More fixes for running the test suite on a bare metal target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116244&quot;&gt;Apply structured suggestion that allows test to work since 1.64&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116223&quot;&gt;Fix misuses of a vs an&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116197&quot;&gt;bootstrap: do not invoke global &lt;code&gt;lld&lt;&#x2F;code&gt; binary&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116196&quot;&gt;reorganize&#x2F;refactor bootstrap codebase&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116189&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116182&quot;&gt;WIP: bootstrap: remove use-lld&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116160&quot;&gt;quote argument to sh -n&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116136&quot;&gt;:arrow_up: &lt;code&gt;rust-analyzer&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116133&quot;&gt;ref(bootstrap.py): add &lt;code&gt;eprint&lt;&#x2F;code&gt; function&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116127&quot;&gt;add sanity checks for user write access on &lt;code&gt;x install&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116108&quot;&gt;Pass &lt;code&gt;-jN&lt;&#x2F;code&gt; from Make to &lt;code&gt;BOOTSTRAP_ARGS&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116067&quot;&gt;Open the FileEncoder file for reading and writing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116029&quot;&gt;Update crates for better MIPS R6 support&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116021&quot;&gt;Add GNU&#x2F;Hurd target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116017&quot;&gt;Don&#x27;t pass &lt;code&gt;-stdlib=libc++&lt;&#x2F;code&gt; when building C files on macOS&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116009&quot;&gt;Fix &lt;code&gt;ui-fulldeps --stage=1&lt;&#x2F;code&gt; with &lt;code&gt;-Zignore-directory-in-diagnostics-source-blocks&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116004&quot;&gt;target tier policy compliance&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115975&quot;&gt;dependencies: reduce the amount of crates pulling in atty&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115957&quot;&gt;fix mismatched symbols&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115951&quot;&gt;Enz update&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115948&quot;&gt;rustdoc: show crate name beside smaller logo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115943&quot;&gt;compiletest: Don&#x27;t swallow some error messages.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115934&quot;&gt;Split out the stable part of smir into its own crate to prevent accidental usage of forever unstable things&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115898&quot;&gt;bootstrap major change detection implementation&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115872&quot;&gt;Remap Cargo dependencies to &#x2F;rust&#x2F;deps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115869&quot;&gt;Avoid blessing cargo deps&#x27;s source code in ui tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115863&quot;&gt;Add check_unused_messages in tidy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115836&quot;&gt;update rust_analyzer_settings.json&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115829&quot;&gt;rustdoc: merge theme css into rustdoc.css&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115818&quot;&gt;fix r-a rustfmt command&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115811&quot;&gt;Make AIX known by bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115706&quot;&gt;Make compiletest output truncation less disruptive&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115695&quot;&gt;compiletest: load supported sanitizers from target spec&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115694&quot;&gt;Add &lt;code&gt;std::hash::{DefaultHasher, RandomState}&lt;&#x2F;code&gt; exports (needs FCP)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115644&quot;&gt;Enable ASAN&#x2F;LSAN&#x2F;TSAN for *-apple-ios-macabi&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115613&quot;&gt;Make create_def a side effect instead of marking the entire query as always red&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115598&quot;&gt;Fix log formatting in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115558&quot;&gt;issue has since been fixed&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115544&quot;&gt;support &lt;code&gt;{disable,enable}-patch-binaries-for-nix&lt;&#x2F;code&gt; in configure.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115539&quot;&gt;Pr 96475 ci test&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115530&quot;&gt;update &lt;code&gt;build.extended&lt;&#x2F;code&gt; comments in &lt;code&gt;config.example.toml&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115526&quot;&gt;Add arm64e-apple-ios &amp;amp; arm64e-apple-darwin targets&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115514&quot;&gt;optimize and cleanup bootstrap source&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115506&quot;&gt;&lt;code&gt;target_os = &amp;quot;custom&amp;quot;&lt;&#x2F;code&gt;: selecting&#x2F;swapping platform-specific parts of the libstd at runtime&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115494&quot;&gt;get rid of duplicate primitive_docs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115471&quot;&gt;also skip musl checks when BOOTSTRAP_SKIP_TARGET_SANITY is set&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115448&quot;&gt;optimize bootstrap dep tree&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115440&quot;&gt;bootstrap&#x2F;format: remove unnecessary paths.push&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115409&quot;&gt;bootstrap: use git merge-base for LLVM CI download logic&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115381&quot;&gt;Wasix ci&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115323&quot;&gt;avoid stdout redirection on &lt;code&gt;curl&lt;&#x2F;code&gt; executions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115320&quot;&gt;[TEST] Enable the parallel compiler with 8 threads&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115293&quot;&gt;Remove -Zfuel.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115278&quot;&gt;tell people what to do when removing an error code&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115274&quot;&gt;Run tidy license checker on more workspaces&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115261&quot;&gt;replace outdated github username &#x27;ozkanonur&#x27;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115253&quot;&gt;Implement &lt;code&gt;PROBLEMATIC_CONSTS&lt;&#x2F;code&gt; generalization &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115235&quot;&gt;test for parallel compiler by default&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115230&quot;&gt;added support for GNU&#x2F;Hurd&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115195&quot;&gt;[beta] backport and stage0 bump&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115186&quot;&gt;don&#x27;t use force-unstable-if-unmarked with x test in standard library doctests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115174&quot;&gt;tests: add test for #67992&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115170&quot;&gt;Move Coverage Regions &#x2F; Expressions to a side table&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115154&quot;&gt;Move some ui tests to subdirectories&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115136&quot;&gt;lto: use the &lt;code&gt;object&lt;&#x2F;code&gt; crate to load bitcode sections&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115134&quot;&gt;Generalize Coverage Expression simplification&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115128&quot;&gt;tests: re-enable pretty-std-collections on macOS&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115120&quot;&gt;Limit &lt;code&gt;-C strip&lt;&#x2F;code&gt; on MSVC&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115117&quot;&gt;Detect and report nix shell&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115111&quot;&gt;compile rust-anaylzer with &lt;code&gt;x check&lt;&#x2F;code&gt; if it&#x27;s enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115109&quot;&gt;Skip ExpandYamlAnchors when the config is missing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115103&quot;&gt;Disable bootstrap rustc version check&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115094&quot;&gt;Update bootstrap compiler to 1.73.0 beta&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115090&quot;&gt;Always use &lt;code&gt;os-release&lt;&#x2F;code&gt; rather than &lt;code&gt;&#x2F;lib&lt;&#x2F;code&gt; to detect &lt;code&gt;NixOS&lt;&#x2F;code&gt; (bootstrap)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115088&quot;&gt;Fix Step Skipping Caused by Using the &lt;code&gt;--exclude&lt;&#x2F;code&gt; Option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115086&quot;&gt;bootstrap&#x2F;miri: respect config_locked_deps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115076&quot;&gt;Download pre-compiled bootstrap from CI &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115061&quot;&gt;Add a new CoverageKind::Branch to MIR&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115045&quot;&gt;when terminating during unwinding, show the reason why&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115032&quot;&gt;Fix standard library not compiling with dependency cc v1.0.80+&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115011&quot;&gt;Warn on elided lifetimes in associated constants (&lt;code&gt;ELIDED_LIFETIMES_IN_ASSOCIATED_CONSTANT&lt;&#x2F;code&gt;)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114917&quot;&gt;Dummy PR to test coverage test changes in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114875&quot;&gt;coverage: Anonymize line numbers in &lt;code&gt;run-coverage&lt;&#x2F;code&gt; test snapshots&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114843&quot;&gt;coverage: Explicitly test the coverage maps produced by codegen&#x2F;LLVM&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114816&quot;&gt;Enable constant folding across crates (weak linkage + comdat)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114775&quot;&gt;Adds a &lt;code&gt;--failed&lt;&#x2F;code&gt; flag to &lt;code&gt;x test&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114748&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114652&quot;&gt;Keep printing extra comments in MIR dumps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114615&quot;&gt;interpret: remove incomplete protection against invalid where clauses&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114613&quot;&gt;Prevent constant rebuilds of &lt;code&gt;rustc-main&lt;&#x2F;code&gt; (and thus everything else)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114607&quot;&gt;Add &lt;code&gt;f16&lt;&#x2F;code&gt; and &lt;code&gt;f128&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114559&quot;&gt;remove blanket-Freeze for PhantomData&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114551&quot;&gt;llvm: use -Bsymbolic-functions with -fno-semantic-interposition&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114535&quot;&gt;bump schannel, miow to drop windows-sys 0.42&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114498&quot;&gt;Print tidy command with bless tidy check failure&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114482&quot;&gt;Fix ui-fulldeps missing the &lt;code&gt;internal_features&lt;&#x2F;code&gt; lint on stage 0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114480&quot;&gt;copy the correct version of LLVM into the stage0 sysroot&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114440&quot;&gt;bootstrap: config: fix version comparison bug&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114434&quot;&gt;Improve spans for indexing expressions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114429&quot;&gt;compiletest: Handle non-utf8 paths (fix FIXME)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114415&quot;&gt;Skip checking of &lt;code&gt;rustc_codegen_gcc&lt;&#x2F;code&gt; with vendoring enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114347&quot;&gt;x.py print more detailed format files and untracked files count&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114345&quot;&gt;Revert #113588 to fix bootstrap timings&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114321&quot;&gt;get auto traits for parallel rustc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114305&quot;&gt;Strip unexpected debuginfo from &lt;code&gt;libLLVM.so&lt;&#x2F;code&gt; and &lt;code&gt;librustc_driver.so&lt;&#x2F;code&gt; when not requesting any debuginfo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114297&quot;&gt;Update x64 Linux host compiler to LLVM 17&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114284&quot;&gt;Prepare Rust 1.71.1&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114278&quot;&gt;better error handling for &lt;code&gt;rust.codegen-backends&lt;&#x2F;code&gt; on deserialization&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114259&quot;&gt;Allow stripping debuginfo from LLVM&#x27;s shared library&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114253&quot;&gt;Compute variances for lazy type aliases&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114228&quot;&gt;Check lazy type aliases for well-formedness&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114227&quot;&gt;Add tidy check for stray rustfix files&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114209&quot;&gt;tidy watcher&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114193&quot;&gt;Update lexer emoji diagnostics to Unicode 15.0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114175&quot;&gt;Check if we can strip debuginfo prior to bolting libLLVM.so&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114148&quot;&gt;Update the minimum external LLVM to 15&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114143&quot;&gt;Rename tests&#x2F;ui&#x2F;issues&#x2F;issue-100605.rs to ..&#x2F;type&#x2F;option-ref-advice.rs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114141&quot;&gt;Change LLVM BOLT flags&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114133&quot;&gt;Revert &amp;quot;add tidy check that forbids issue ui test filenames&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114126&quot;&gt;clean stage-specific artifacts using &lt;code&gt;x clean --stage&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114118&quot;&gt;Put inline functions in only one CGU&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114104&quot;&gt;Lots of tiny incremental simplifications of &lt;code&gt;EmitterWriter&lt;&#x2F;code&gt; internals&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114102&quot;&gt;Dont pass &lt;code&gt;-Zwrite-long-types-to-disk=no&lt;&#x2F;code&gt; for &lt;code&gt;ui-fulldeps --stage=1&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114092&quot;&gt;Add UI test for issue #35144&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114090&quot;&gt;compiletest: remove ci-specific remap-path-prefix&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114069&quot;&gt;Allow using external builds of the compiler-rt profile lib&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114066&quot;&gt;bootstrap: inline format!() args (0)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114058&quot;&gt;Add help for crate arg when crate name is invalid&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114054&quot;&gt;Split some functions with many arguments into builder pattern functions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114048&quot;&gt;Update to LLVM 17&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114032&quot;&gt;typos&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114027&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114001&quot;&gt;fix(bootstrap): rename exclude flag to skip 🐛&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113996&quot;&gt;Define CMAKE_SYSTEM_NAME on a cross build targeting DragonFly.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113965&quot;&gt;Fix test panics for submodule of book is not updated&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113960&quot;&gt;Sync rustc_codegen_cranelift&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113948&quot;&gt;Fix rustc-args passing issue in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113940&quot;&gt;rust-installer: Use env(1) in the shebang.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113938&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113906&quot;&gt;etc: add &lt;code&gt;RUSTC_BOOTSTRAP&lt;&#x2F;code&gt; to rust-analyzer config&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113893&quot;&gt;new unstable option: -Zwrite-long-types-to-disk&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113888&quot;&gt;Add RUSTC_PROGRESS env var to show the current queries and their arguments&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113843&quot;&gt;Replace in-tree &lt;code&gt;rustc_apfloat&lt;&#x2F;code&gt; with the new version of the crate&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113822&quot;&gt;Experiment: Try making all compiler-builtins intrinsics weak symbols&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113807&quot;&gt;Tests crash from inappropriate use of common linkage&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113800&quot;&gt;Avoid another gha group nesting&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113761&quot;&gt;Add &lt;code&gt;if-identical&lt;&#x2F;code&gt; mode for &lt;code&gt;download-ci-llvm&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113733&quot;&gt;Respect &lt;code&gt;prefix&lt;&#x2F;code&gt; when &lt;code&gt;sysconfdir&lt;&#x2F;code&gt; isn&#x27;t set in config.toml&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113731&quot;&gt;Remove unused &lt;code&gt;bootstrap::util::CiEnv&lt;&#x2F;code&gt; enum&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113730&quot;&gt;Report errors in jobserver inherited through environment variables&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113725&quot;&gt;Move MinGW linker dist option to proper section&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113710&quot;&gt;Fix rpath for libdir is specified&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113706&quot;&gt;Fix compiletest windows path finding with spaces&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113686&quot;&gt;Update Clippy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113683&quot;&gt;remove outdated &lt;code&gt;FIXME&lt;&#x2F;code&gt;s in bootstrap internals&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113661&quot;&gt;Double check that hidden types match the expected hidden type&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113658&quot;&gt;add a csky-unknown-linux-gnuabiv2 target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113644&quot;&gt;misc bootstrap cleanups&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113643&quot;&gt;bootstrap: Clean up try_run&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113640&quot;&gt;Make &lt;code&gt;nodejs&lt;&#x2F;code&gt; control the default for RustdocJs tests instead of a hard-off switch&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113637&quot;&gt;Bump bootstrap to 1.72 beta&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113616&quot;&gt;Fix bootstrap.py uname error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113611&quot;&gt;Remap paths for ~&#x2F;.cargo in UI tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113603&quot;&gt;Test simd-wide-sum for codegen error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113598&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113592&quot;&gt;Move BOLT from &lt;code&gt;bootstrap&lt;&#x2F;code&gt; to &lt;code&gt;opt-dist&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113591&quot;&gt;refactor(rustc_middle): Substs -&amp;gt; GenericArg&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113588&quot;&gt;bootstrap: use git merge-base for LLVM CI download logic&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113583&quot;&gt;add tidy check that forbids issue-XXXX test filenames&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113579&quot;&gt;Revert &amp;quot;fix: :bug: etc&#x2F;bash_complettion -&amp;gt; src&#x2F;etc&#x2F;... to avoid copy …&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113571&quot;&gt;bootstrap: Don&#x27;t break on &lt;code&gt;uname -p&lt;&#x2F;code&gt; != &lt;code&gt;unknown&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113551&quot;&gt;bootstrap: Don&#x27;t print &amp;quot;Skipping&amp;quot; twice&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113526&quot;&gt;Rollup of 0 pull requests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113524&quot;&gt;Remove the library&#x2F;term exception in tidy&#x27;s pal checker code&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113522&quot;&gt;Implement generic const items&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113518&quot;&gt;bootstrap&#x2F;libtest: print test name eagerly on failure even with &lt;code&gt;verbose-tests=false&lt;&#x2F;code&gt; &#x2F; &lt;code&gt;--quiet&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113514&quot;&gt;Add even more GHA log groups&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113492&quot;&gt;Add CL and CMD into to pdb debug info&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113480&quot;&gt;add aarch64-unknown-teeos target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113479&quot;&gt;add aarch64-teeos-target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113477&quot;&gt;add aarch64-teeos-target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113476&quot;&gt;Reimplement C-str literals&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113450&quot;&gt;Fail the build if clippy tests don&#x27;t pass&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113449&quot;&gt;tidy: remove filtering for wasm32 deps, as this don&#x27;t work&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113440&quot;&gt;Try to improve rustdoc performance by reducing the number of allocations of pulldown-cmark&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113433&quot;&gt;Disable building &lt;code&gt;rustc&lt;&#x2F;code&gt; with (Thin)LTO on Windows&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113432&quot;&gt;reduce deps for windows-msvc targets for backtrace&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113411&quot;&gt;Add &lt;code&gt;x86_64-unikraft-linux-musl&lt;&#x2F;code&gt; target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113398&quot;&gt;(do not merge) test chasing down debuginfo failures for rc&#x2F;arc allocator&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113382&quot;&gt;[perf] test MCP510&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113373&quot;&gt;various download-rustc fixes&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113371&quot;&gt;Fix submodule handling when the current branch is named after a tag&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113356&quot;&gt;Add support for NetBSD&#x2F;riscv64 aka. riscv64gc-unknown-netbsd.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113353&quot;&gt;Implement selection for &lt;code&gt;Unsize&lt;&#x2F;code&gt; for better coercion behavior&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113341&quot;&gt;Copy stage0 &lt;code&gt;rustc&lt;&#x2F;code&gt; binaries to &lt;code&gt;stage0-sysroot&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113334&quot;&gt;Revert the lexing of &lt;code&gt;c&amp;quot;…&amp;quot;&lt;&#x2F;code&gt; string literals&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113306&quot;&gt;Update debuginfo test runner to provide more useful output&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113303&quot;&gt;Remove chalk support from the compiler&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113298&quot;&gt;Unite bless environment variables under &lt;code&gt;RUST_BLESS&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113284&quot;&gt;Enable type privacy lints in rustc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113276&quot;&gt;Update rustix&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113275&quot;&gt;link to PERMITTED_DEPENDENCIES in tidy error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113273&quot;&gt;Use String or Int to set the opt level&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113269&quot;&gt;Update compiler builtins&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113260&quot;&gt;Update Clippy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113246&quot;&gt;fix compiletest crash&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113244&quot;&gt;Make Rust Analyzer tests faster by compiling less code&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113234&quot;&gt;Don&#x27;t pass --test-args to &lt;code&gt;python -m unitest&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113226&quot;&gt;Fix try builds on the msvc builder&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113214&quot;&gt;Don&#x27;t fail early if &lt;code&gt;try_run&lt;&#x2F;code&gt; returns an error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113200&quot;&gt;Fix loading target specs in compiletest not working with custom targets&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113189&quot;&gt;compiletest: Only trim the end of process output&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113185&quot;&gt;Set &lt;code&gt;channel = nightly&lt;&#x2F;code&gt; in dist profile&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113167&quot;&gt;rustdoc: Add lint &lt;code&gt;redundant_explicit_links&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113123&quot;&gt;Revert behaviour change for bootstrap doc command&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113099&quot;&gt;fix(resolve): update the ambiguity glob binding as warning recursively&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113068&quot;&gt;bootstrap: rename &#x27;user&#x27; profile to &#x27;dist&#x27;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113061&quot;&gt;Add x86_64-unknown-linux-ohos target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113048&quot;&gt;Fix build on Solaris where fd-lock cannot be used.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113046&quot;&gt;cargo update&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113034&quot;&gt;Switch some more Steps to &lt;code&gt;builder.msg&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113032&quot;&gt;[wip] ship rustc debuginfo on linux&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113026&quot;&gt;Introduce &lt;code&gt;run-make&lt;&#x2F;code&gt; V2 infrastructure, a &lt;code&gt;run_make_support&lt;&#x2F;code&gt; library and port over 2 tests as example&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113010&quot;&gt;rust-installer &amp;amp; rls: remove exclusion from rustfmt &amp;amp; tidy &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113008&quot;&gt;Move some docs from the README to the dev-guide&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113003&quot;&gt;Fix old python deprecation check in x.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113002&quot;&gt;bootstrap: Backup &lt;code&gt;settings.json&lt;&#x2F;code&gt; to the correct filename&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112982&quot;&gt;bootstrap: update defaults for &lt;code&gt;compiler&lt;&#x2F;code&gt; and &lt;code&gt;library&lt;&#x2F;code&gt; aliases&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112980&quot;&gt;[DONT MERGE], only for windows perf log&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112962&quot;&gt;Fix rustdoc gui tester&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112931&quot;&gt;Enable zlib in LLVM on aarch64-apple-darwin&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112922&quot;&gt;WASI threads, implementation of wasm32-wasi-preview1-threads target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112921&quot;&gt;Make tidy not traverse untracked directories&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112918&quot;&gt;display PID of process holding lock&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112916&quot;&gt;Add more context to &lt;code&gt;quit_if_file_exists&lt;&#x2F;code&gt; in &lt;code&gt;configure.py&lt;&#x2F;code&gt; &amp;amp; delete config.toml in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112887&quot;&gt;&lt;code&gt;hir&lt;&#x2F;code&gt;: Add &lt;code&gt;Become&lt;&#x2F;code&gt; expression kind (explicit tail calls experiment)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112886&quot;&gt;Revert &#x27;Rename profile=user to profile=dist&#x27;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112884&quot;&gt;rust-installer: migrate to clap 4.2, change to 2021 edition and fix few clippy lints&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112859&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112813&quot;&gt;Add --llvm-targets option to bootstrap configure script&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112812&quot;&gt;bootstrap: Add and use -Z absolute-file-paths&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112791&quot;&gt;llvm ffi: Expose &lt;code&gt;CallInst-&amp;gt;setTailCallKind&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112775&quot;&gt;Move tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112756&quot;&gt;Use RustOptimize to set optimize&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112753&quot;&gt;Don&#x27;t try to auto-bless 32-bit &lt;code&gt;mir-opt&lt;&#x2F;code&gt; tests on ARM Mac hosts&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112722&quot;&gt;bootstrap: check for dry run when copying env vars for msvc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112701&quot;&gt;Run part of cg_clif&#x27;s tests in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112697&quot;&gt;Add simple markdown formatting to &lt;code&gt;rustc --explain&lt;&#x2F;code&gt; output&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112671&quot;&gt;Sync rustc_codegen_cranelift&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112668&quot;&gt;Test &lt;code&gt;x.ps1&lt;&#x2F;code&gt; in &lt;code&gt;msvc&lt;&#x2F;code&gt; CI job&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112663&quot;&gt;cleanup azure leftovers&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112657&quot;&gt;Implement explicit tail calls&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112645&quot;&gt;CI: merge &lt;code&gt;mingw&lt;&#x2F;code&gt; test CI jobs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112633&quot;&gt;CI: merge &lt;code&gt;msvc&lt;&#x2F;code&gt; test CI jobs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112601&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112598&quot;&gt;Download pre-compiled bootstrap from CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112562&quot;&gt;rustdoc-gui: allow running on Windows&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112541&quot;&gt;implement stdout streaming in &lt;code&gt;render_tests::Renderer&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112528&quot;&gt;bootstrap: Don&#x27;t override &lt;code&gt;debuginfo-level = 1&lt;&#x2F;code&gt; to mean &lt;code&gt;line-tables-only&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112514&quot;&gt;Dummy PR to test coverage test changes in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112499&quot;&gt;Fix python linting errors&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112487&quot;&gt;Update documentation for &lt;code&gt;tools&lt;&#x2F;code&gt; defaults&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112483&quot;&gt;Add deprecation warning to python versions &amp;lt;3.6 in x.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112482&quot;&gt;Add support for tidy linting via external tools for non-rust files&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112477&quot;&gt;Give more helpful progress messages in &lt;code&gt;Assemble&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112467&quot;&gt;Document rustc_driver by default&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112454&quot;&gt;Make compiletest aware of targets without dynamic linking&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112435&quot;&gt;Allow overwriting the sysroot compile flag via --rustc-args&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112418&quot;&gt;Add support for targets without unwinding in &lt;code&gt;mir-opt&lt;&#x2F;code&gt;, and improve &lt;code&gt;--bless&lt;&#x2F;code&gt; for it&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112382&quot;&gt;download-rustc: Fix &lt;code&gt;x test core&lt;&#x2F;code&gt; on MacOS&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112374&quot;&gt;add mips64r6 and mips32r6 as target_arch values&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112365&quot;&gt;[experiment] Use new solver in MIR validator subtyping checks&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112346&quot;&gt;Remove comments from mir-opt MIR dumps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112339&quot;&gt;Fix rust-analyzer proc macro server&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112309&quot;&gt;bootstrap: remove dependency &lt;code&gt;is-terminal&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112300&quot;&gt;Convert &lt;code&gt;run-make&#x2F;coverage-reports&lt;&#x2F;code&gt; tests to use a custom compiletest mode&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112299&quot;&gt;Don&#x27;t double-print status messages in GHA&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112297&quot;&gt;bootstrap: Disallow &lt;code&gt;--exclude test::std&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112295&quot;&gt;Fix the tests-listing-format-json test on Windows&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112291&quot;&gt;Disable RustAnalyzer check by default, run Rustfmt check before&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112281&quot;&gt;Test the cargo args generated by bootstrap.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112277&quot;&gt;Don&#x27;t require the output from libtest to be valid UTF-8&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112267&quot;&gt;Build &lt;code&gt;rustc&lt;&#x2F;code&gt; with 1CGU on &lt;code&gt;x86_64-pc-windows-msvc&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112256&quot;&gt;Don&#x27;t compile rustc to self-test compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112247&quot;&gt;rust-lld: add rpath entry to the correct &lt;code&gt;lib&lt;&#x2F;code&gt; folder&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112246&quot;&gt;[beta] backports + stage0 bump&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112235&quot;&gt;Port PGO&#x2F;LTO&#x2F;BOLT optimized build pipeline to Rust&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112234&quot;&gt;refactor &lt;code&gt;tool_doc!&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112231&quot;&gt;Make sure the build.rustc version is either the same or 1 apart (revised)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112217&quot;&gt;Update dependencies with reported vulnerabilities&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112211&quot;&gt;pass &lt;code&gt;--lib&lt;&#x2F;code&gt; to &lt;code&gt;x doc&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112197&quot;&gt;Erase regions even if normalization fails in writeback (in new solver)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112176&quot;&gt;Print the full arguments passed to &lt;code&gt;.&#x2F;configure&lt;&#x2F;code&gt; in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112160&quot;&gt;[experiment] Deny noop_method_call&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112152&quot;&gt;Fix the progress message for &lt;code&gt;x doc rustc&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112143&quot;&gt;Use &lt;code&gt;download-rustc = &amp;quot;if-unchanged&amp;quot;&lt;&#x2F;code&gt; in &lt;code&gt;x86_64-gnu&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112122&quot;&gt;Add &lt;code&gt;-Ztrait-solver=next-coherence&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112120&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112109&quot;&gt;Don&#x27;t print unsupported split-debuginfo modes with &lt;code&gt;-Zunstable-options&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112103&quot;&gt;Bootstrap update to 1.71 beta&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112089&quot;&gt;Add &lt;code&gt;--warnings warn&lt;&#x2F;code&gt; flag to &lt;code&gt;x.py&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112084&quot;&gt;enhancements on  build_helper utilization and rustdoc-gui-test&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112078&quot;&gt;bootstrap: Rename profile = user to profile = dist&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112077&quot;&gt;Patch-1&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112071&quot;&gt;Group rfcs tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112068&quot;&gt;Move tests from &lt;code&gt;ui&#x2F;discrim&lt;&#x2F;code&gt; dir&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112049&quot;&gt;[do not merge] CI experiments&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112023&quot;&gt;Bump to 1.72.0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112012&quot;&gt;Avoid one &lt;code&gt;rustc&lt;&#x2F;code&gt; rebuild in the optimized build pipeline&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112000&quot;&gt;Add support for LLVM SafeStack&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111998&quot;&gt;Add other workspaces to &lt;code&gt;linkedProjects&lt;&#x2F;code&gt; in rust_analyzer_settings&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111989&quot;&gt;deps: bump crates&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111982&quot;&gt;Revert &amp;quot;Enable incremental independent of stage&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111979&quot;&gt;Respect CARGOFLAGS in bootstrap.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111978&quot;&gt;Use a single codegen unit for fully optimized builds.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111977&quot;&gt;Make errors from &lt;code&gt;x doc&lt;&#x2F;code&gt; less verbose&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111976&quot;&gt;Generate docs for bootstrap itself&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111975&quot;&gt;Stop normalizing so many different prefixes&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111969&quot;&gt;bootstrap: Make &lt;code&gt;clean&lt;&#x2F;code&gt; respect &lt;code&gt;dry-run&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111955&quot;&gt;bootstrap: Various Step refactors&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111936&quot;&gt;Include test suite metadata in the build metrics&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111924&quot;&gt;[experiment] Enable debug-logging by default&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111916&quot;&gt;make &lt;code&gt;noop_method_call&lt;&#x2F;code&gt; warn by default&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111881&quot;&gt;refactor and cleanup the leak check, add it to new solver&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111858&quot;&gt;Ensure Fluent messages are in alphabetical order&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111826&quot;&gt;Render test messages from bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111813&quot;&gt;MIR: opt-in normalization of &lt;code&gt;BasicBlock&lt;&#x2F;code&gt; and &lt;code&gt;Local&lt;&#x2F;code&gt; numbering&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111809&quot;&gt;Unset MIRI_BLESS for mir-opt-level 4 miri tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111806&quot;&gt;Use CS PGO for LLVM&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111802&quot;&gt;Make &lt;code&gt;x test --dry-run&lt;&#x2F;code&gt; less verbose&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111780&quot;&gt;Diagnostic namespace&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111772&quot;&gt;Fix linkage for large binaries on mips64 platforms&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111771&quot;&gt;add &lt;code&gt;--remote-time&lt;&#x2F;code&gt; flag to curl for bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111770&quot;&gt;Read beta version from the version file if building from a source tarball&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111769&quot;&gt;Print a backtrace in const eval if interrupted&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111734&quot;&gt;bootstrap: (half) merge cp_r and cp_filtered&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111718&quot;&gt;use git ls-tree --format instead of manually carving hashes&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111701&quot;&gt;Bump &lt;code&gt;cc&lt;&#x2F;code&gt; for &lt;code&gt;bootstrap&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111685&quot;&gt;Fix typo in bootstrap command description&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111666&quot;&gt;Reduce the default number of CGUs for incremental.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111658&quot;&gt;Refactor pre-getopts command line argument handling&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111647&quot;&gt;use c literals in compiler and library&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111641&quot;&gt;Fix dependency tracking for debugger visualizers&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111606&quot;&gt;very minor cleanups&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111571&quot;&gt;Implement proposed API for &lt;code&gt;proc_macro_span&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111566&quot;&gt;Override config.toml options from command line&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111562&quot;&gt;Improve startup time of bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111561&quot;&gt;Include better context for &amp;quot;already exists&amp;quot; error in compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111558&quot;&gt;Move tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111550&quot;&gt;Don&#x27;t clean bootstrap by default&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111538&quot;&gt;Make sure the build.rustc version is either the same or 1 apart&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111506&quot;&gt;update Miri&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111495&quot;&gt;Run tests on PGO&#x2F;LTO&#x2F;BOLT optimized dist artifacts&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111472&quot;&gt;Get current target config from&lt;code&gt; --print=cfg&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111454&quot;&gt;update Miri&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111413&quot;&gt;Bump object and thorin-dwp&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111398&quot;&gt;add lib module to &lt;code&gt;src&#x2F;tool&#x2F;compiletest&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111393&quot;&gt;bump windows crate 0.46 -&amp;gt; 0.48&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111388&quot;&gt;Generate shell completions for bootstrap with Clap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111384&quot;&gt;Fix linking Mac Catalyst by including LC_BUILD_VERSION in object files&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111363&quot;&gt;Add a tidy check to find unexpected files in UI tests, and clean up the results&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111351&quot;&gt;Prevent using the default &lt;code&gt;cc&lt;&#x2F;code&gt; when that&#x27;d result in a broken build&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111348&quot;&gt;new tool &lt;code&gt;rustdoc-gui-test&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111345&quot;&gt;Only depend on CFG_VERSION in rustc_interface&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111329&quot;&gt;Load only the crate header for &lt;code&gt;locator::crate_matches&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111326&quot;&gt;Add support for NetBSD&#x2F;aarch64-be (big-endian arm64).&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111323&quot;&gt;Give a more helpful error when running the rustc shim directly&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111290&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111251&quot;&gt;Issue 109502 follow up, remove unnecessary Vec::new() from compile_test()&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111242&quot;&gt;support set &lt;code&gt;rpath&lt;&#x2F;code&gt; option  for each target independently&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111223&quot;&gt;Use &lt;code&gt;free-args&lt;&#x2F;code&gt; consistently in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111218&quot;&gt;Add CI step to prevent new untranslatable diagnostics being added&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111201&quot;&gt;bootstrap: add .gitmodules to the sources&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111187&quot;&gt;bootstrap: add llvm-project&#x2F;runtimes to the sources&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111179&quot;&gt;Fix instrument-coverage tests by using Python to sort instantiation groups&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111160&quot;&gt;Update serde in workspace and non-synced dependencies&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111151&quot;&gt;check bootstrap scripts syntax&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111141&quot;&gt;Return error code from x.ps1&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111118&quot;&gt;Suggest struct when we get colon in fileds in enum&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111076&quot;&gt;diagnostics: exclude indirect private deps from trait impl suggest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111069&quot;&gt;remove pointless &lt;code&gt;FIXME&lt;&#x2F;code&gt; in &lt;code&gt;bootstrap::download&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111067&quot;&gt;Make x.py work again in most (all?) cases&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111049&quot;&gt;Wrap all of &lt;code&gt;x.py&lt;&#x2F;code&gt; in &lt;code&gt;if __name__ == &#x27;__main__&#x27;:&lt;&#x2F;code&gt; to avoid problems with &lt;code&gt;multiprocessing&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111021&quot;&gt;Move some tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110999&quot;&gt;Output some bootstrap messages on stderr&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110996&quot;&gt;bootstrap: Fix compile error: unused-mut&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110992&quot;&gt;Sync rustc_codegen_cranelift&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110979&quot;&gt;windows: kill rust-analyzer-proc-macro-srv before deleting stage0 directory&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110970&quot;&gt;tidy: remove ENTRY_LIMIT maximum checking and set it to 900&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110936&quot;&gt;Promote loongarch64-unknown-linux-gnu to Tier 2 with host tools&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110909&quot;&gt;Skip &lt;code&gt;rustc&lt;&#x2F;code&gt; version detection on macOS&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110906&quot;&gt;fix: :bug: etc&#x2F;bash_complettion -&amp;gt; src&#x2F;etc&#x2F;... to avoid copy error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110871&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110854&quot;&gt;Rustc shim is now a wrapper&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110853&quot;&gt;compiletest: add bpf-linker assembly support&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110851&quot;&gt;compiletest: emit assembly-output header in error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110795&quot;&gt;[WIP] Try packing hot type flags in the &lt;code&gt;Ty&lt;&#x2F;code&gt; (pointer)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110790&quot;&gt;add tracking UI test for upstream LLVM issue&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110779&quot;&gt;configure.py: add flag for riscv{64,32}gc musl-root&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110773&quot;&gt;Reduce MIR dump file count for MIR-opt tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110744&quot;&gt;bootstrap: update paths cargo-credential crate&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110701&quot;&gt;Fix &lt;code&gt;x test core&lt;&#x2F;code&gt; when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110699&quot;&gt;Apply simulate-remapped-rust-src-base even if remap-debuginfo is set in config.toml&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110694&quot;&gt;Implement builtin # syntax and use it for offset_of!(...)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110693&quot;&gt;Migrate bootstrap to Clap-based argument parsing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110664&quot;&gt;stop &lt;code&gt;x fmt&lt;&#x2F;code&gt; formatting untracked directories&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110644&quot;&gt;Update tests for libtest &lt;code&gt;--format json&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110643&quot;&gt;[master] Bump stage0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110639&quot;&gt;enable PGO on x86_64-apple-darwin&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110637&quot;&gt;Group some sections of our logs in github actions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110619&quot;&gt;Tidy: Allow inline tests in the compiler&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110596&quot;&gt;Rename &lt;code&gt;wasm32-wasi&lt;&#x2F;code&gt; to &lt;code&gt;wasm32-wasi-preview1&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110584&quot;&gt;Allow overwriting the sysroot compile flag in compile tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110576&quot;&gt;bootstrap: Unify test argument handling&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110574&quot;&gt; fix out-of-date comment about rpath in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110541&quot;&gt;Fix various configure bugs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110526&quot;&gt;Skip installing rustc stage 0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110521&quot;&gt;Fix &lt;code&gt;x test lint-docs linkchecker&lt;&#x2F;code&gt; when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110519&quot;&gt;ci: Add support for dist-loongarch64-linux&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110516&quot;&gt;bootstrap: Update linux-raw-sys to 0.3.2&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110515&quot;&gt;Don&#x27;t special-case download-rustc in &lt;code&gt;maybe_install_llvm&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110507&quot;&gt;boostrap: print output during building tools&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110490&quot;&gt;Bump &lt;code&gt;download-ci-llvm-stamp&lt;&#x2F;code&gt; for loong support&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110485&quot;&gt;Fix bootstrap locking&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110478&quot;&gt;Support &lt;code&gt;x test --stage 1 ui-fulldeps&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110454&quot;&gt;Require impl Trait in associated types to appear in method signatures&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110444&quot;&gt;Add compare-output-lines-by-subset flag to compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110442&quot;&gt;Avoid including dry run steps in the build metrics&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110439&quot;&gt;Require Python 3 in bootstrap.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110437&quot;&gt;Add unused pre-interned symbols tidy check&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110429&quot;&gt;Spelling src bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110427&quot;&gt;Parallelize initial Rust download in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110414&quot;&gt;[beta] Prepare Rust 1.70.0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110403&quot;&gt;bolt: remove deprecated option value for split-functions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110392&quot;&gt;Spelling&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110370&quot;&gt;Move test files&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110369&quot;&gt;Start using &lt;code&gt;gix&lt;&#x2F;code&gt; in &lt;code&gt;bootstrap&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110365&quot;&gt;ship tools with sysroot&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110356&quot;&gt;Fix &lt;code&gt;x test rust-installer&lt;&#x2F;code&gt; when &lt;code&gt;cargo&lt;&#x2F;code&gt; is set to a relative path&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110319&quot;&gt;[compiletest] Add more test ignore reasons, &lt;code&gt;needs-&lt;&#x2F;code&gt; validation, and improved error messages&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110316&quot;&gt;run tidy&#x27;s style check from the root path&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110284&quot;&gt;test for the default parallel compiler on threads=8&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110265&quot;&gt;Automatically update the LLVM submodule for musl target (and other places)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110263&quot;&gt;Add &lt;code&gt;libLLVM.so&lt;&#x2F;code&gt; to the target libdir when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110245&quot;&gt;fix: use &lt;code&gt;--retry-connrefused&lt;&#x2F;code&gt; in curl invocations of bootstrap download&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110244&quot;&gt;Remove some unneeded imports &#x2F; qualified paths&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110241&quot;&gt;tidy: Issue an error when UI test limits are too high&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110235&quot;&gt;Fix &lt;code&gt;--extend-css&lt;&#x2F;code&gt; option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110229&quot;&gt;Fix no_std tests that load libc from the sysroot when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110227&quot;&gt;bootstrap: drop some windows features&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110221&quot;&gt;Greatly decrease the size of &lt;code&gt;rustc_driver.so&lt;&#x2F;code&gt; when debuginfo is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110213&quot;&gt;Add additional information to note for referencing packed field diagnostic&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110197&quot;&gt;Do not attempt to commute comparison and cast to codegen discriminants&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110188&quot;&gt;Remove orphaned remove_dir_all implementation from rust-installer&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110186&quot;&gt;Update chrono&#x2F;spdx-rs&#x2F;time&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110177&quot;&gt;fix running Miri tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110155&quot;&gt;Fix typos in librustdoc, tools and config files&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110152&quot;&gt;Start using &lt;code&gt;windows sys&lt;&#x2F;code&gt; for Windows FFI bindings in std&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110150&quot;&gt;Fix typos&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110123&quot;&gt;&#x27;.&#x2F;configure&#x27; now checks if &#x27;config.toml&#x27; exists before writing to that destination&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110122&quot;&gt;Fix x check --stage 1 when download-ci-llvm=false&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110121&quot;&gt;Fix &lt;code&gt;x check --stage 1&lt;&#x2F;code&gt; when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110118&quot;&gt;download-rustc: Give a better error message if artifacts can&#x27;t be dowloaded&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110115&quot;&gt;compiletest: Use remap-path-prefix only in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110114&quot;&gt;compiletest: Give a better error message if &lt;code&gt;node&lt;&#x2F;code&gt; isn&#x27;t installed&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110113&quot;&gt;Fix &lt;code&gt;x test ui --target foo&lt;&#x2F;code&gt; when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110108&quot;&gt;Add renaming of ignore-git to changelog&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110077&quot;&gt;bump treewide clap to 4.2.1&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110075&quot;&gt;Fix a typo in &lt;code&gt;config.example.toml&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110074&quot;&gt;Make the &amp;quot;codegen&amp;quot; profile of &lt;code&gt;config.toml&lt;&#x2F;code&gt; download and build llvm from source.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110059&quot;&gt;ignore_git → omit_git_hash&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110026&quot;&gt;Updating Wake example to use new &#x27;pin!&#x27; macro&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110018&quot;&gt;Pass host linker to compiletest.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110008&quot;&gt;bump few deps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110004&quot;&gt;add &lt;code&gt;dont_check_failure_status&lt;&#x2F;code&gt; option in the compiler test&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109981&quot;&gt;Set commit information environment variables when building tools&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109960&quot;&gt;Fix buffer overrun in bootstrap and (test-only) symlink_junction&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109945&quot;&gt;Remove the use of &lt;code&gt;-use-gnu-stack&lt;&#x2F;code&gt; when BOLTing LLVM&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109888&quot;&gt;Remove optimal xz settings from CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109880&quot;&gt;Fix macOS and Windows installers when rust-docs is not available.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109875&quot;&gt;Move most ui-fulldeps tests to ui&#x2F;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109871&quot;&gt;Include invocation start times&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109848&quot;&gt;submodule detection for proper fix on #96188&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109842&quot;&gt;uplift &lt;code&gt;clippy::clone_double_ref&lt;&#x2F;code&gt; to rustc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109833&quot;&gt;bootstrap: replace &lt;code&gt;atty&lt;&#x2F;code&gt; with &lt;code&gt;is-terminal&lt;&#x2F;code&gt;, dedupe deps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109811&quot;&gt;Replace any existing &lt;code&gt;build&#x2F;host&lt;&#x2F;code&gt; symlink&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109776&quot;&gt;test the parallel compiler&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109761&quot;&gt;Drop binutils on powerpc-unknown-freebsd&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109741&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109702&quot;&gt;configure --set support list as arguments&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109677&quot;&gt;Stabilize raw-dylib, link_ordinal, import_name_type and -Cdlltool&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109667&quot;&gt;Always set &lt;code&gt;RUSTC_BOOTSTRAP&lt;&#x2F;code&gt; with &lt;code&gt;x doc&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109649&quot;&gt;moving TestHelpers to test.rs and renaming native.rs to llvm.rs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109642&quot;&gt;check for missing codegen backeng config&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109577&quot;&gt;[rust-installer] Allow long link names in tar files&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109574&quot;&gt;bootstrap: create directory junction target if it does not exist&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109526&quot;&gt;LIBPATH is used as dylib&#x27;s path environment variable on AIX&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109525&quot;&gt;Rpath is not supported on AIX&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109484&quot;&gt;Bugfix: avoid panic on invalid json output from libtest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109448&quot;&gt;Download beta compiler toolchain in bootstrap if it doesn&#x27;t yet exist&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109444&quot;&gt;Change tidy error message for TODOs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109421&quot;&gt;Add &lt;code&gt;force&lt;&#x2F;code&gt; option for &lt;code&gt;--extern&lt;&#x2F;code&gt; flag&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109418&quot;&gt;Rename &#x27;src&#x2F;bootstrap&#x2F;native.rs&#x27; to llvm.rs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109373&quot;&gt;Set LLVM &lt;code&gt;LLVM_UNREACHABLE_OPTIMIZE&lt;&#x2F;code&gt; to &lt;code&gt;OFF&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109335&quot;&gt;[stable] 1.68.1 release&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109326&quot;&gt;Revert &amp;quot;Auto merge of #107224 - nikic:llvm-16, r=cuviper&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109295&quot;&gt;refactor &lt;code&gt;fn bootstrap::builder::Builder::compiler_for&lt;&#x2F;code&gt; logic&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109267&quot;&gt;Add tests for configure.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109256&quot;&gt;Check for llvm-tools before install&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109196&quot;&gt;bootstrap: skip llvm-tools install when externally provided&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109175&quot;&gt;Use write_str() instead of write!() when possible&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109170&quot;&gt;Set &lt;code&gt;CMAKE_SYSTEM_NAME&lt;&#x2F;code&gt; for Linux targets&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109162&quot;&gt;extend &lt;code&gt;detect_src_and_out&lt;&#x2F;code&gt; test&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109138&quot;&gt;#108240 Rename &#x27;src&#x2F;bootstrap&#x2F;native.rs&#x27; to llvm.rs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109133&quot;&gt;Make cargo a workspace&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109124&quot;&gt;Add &lt;code&gt;dist.compression-profile&lt;&#x2F;code&gt; option to control compression speed&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109111&quot;&gt;Create dirs for build_triple&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109055&quot;&gt;create &lt;code&gt;config::tests::detect_src_and_out&lt;&#x2F;code&gt; test for bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109044&quot;&gt;Prevent stable &lt;code&gt;libtest&lt;&#x2F;code&gt; from supporting &lt;code&gt;-Zunstable-options&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109033&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109031&quot;&gt;Rename &lt;code&gt;config.toml.example&lt;&#x2F;code&gt; to &lt;code&gt;config.example.toml&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108991&quot;&gt;add &lt;code&gt;enable-warnings&lt;&#x2F;code&gt; flag for llvm, and disable it by default.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108984&quot;&gt;bootstrap: document tidy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108963&quot;&gt;only call git on git checkouts during bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108955&quot;&gt;Add &lt;code&gt;internal_features&lt;&#x2F;code&gt; lint&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108905&quot;&gt;Validate &lt;code&gt;ignore&lt;&#x2F;code&gt; and &lt;code&gt;only&lt;&#x2F;code&gt; compiletest directive, and add human-readable ignore reasons&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108898&quot;&gt;Set &lt;code&gt;LIBC_CHECK_CFG=1&lt;&#x2F;code&gt; when building Rust code in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108871&quot;&gt;Decouple &lt;code&gt;test&lt;&#x2F;code&gt; and &lt;code&gt;proc_macro&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108866&quot;&gt;Force to use the stage 2 compiler  when config.download_rustc is set&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108865&quot;&gt;Add a &lt;code&gt;sysroot&lt;&#x2F;code&gt; crate to represent the standard library crates&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108862&quot;&gt;Bump bootstrap compiler to 1.69 beta&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108811&quot;&gt;Dogfood CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108802&quot;&gt;Update host compiler to LLVM 16&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108796&quot;&gt;move personality to sys&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108792&quot;&gt;Add OpenHarmony targets&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108778&quot;&gt;x fmt: Don&#x27;t print all modified files if there&#x27;s more than 10&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108776&quot;&gt;Make &lt;code&gt;x test tidy&lt;&#x2F;code&gt; less noisy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108773&quot;&gt;x fmt: Only check modified files locally&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108772&quot;&gt;Speed up tidy quite a lot&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108714&quot;&gt;On nightly, dump ICE backtraces to disk&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108670&quot;&gt;[beta] stage0 bump and backports&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108665&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108659&quot;&gt;Include executed tests in the build metrics (and use a custom test display impl)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108644&quot;&gt;Allow setting hashmap toml values in &lt;code&gt;.&#x2F;configure&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108638&quot;&gt;Use dynamic dispatch for queries&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108632&quot;&gt;Omit unchanged options from config.toml in &lt;code&gt;configure.py&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108631&quot;&gt;[PERF EXPERIMENT] Enable the parallel compiler.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108625&quot;&gt;More config.toml.example cleanups&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108619&quot;&gt;Remove the option to disable &lt;code&gt;llvm-version-check&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108618&quot;&gt;Rename &lt;code&gt;src&#x2F;etc&#x2F;vscode_settings.json&lt;&#x2F;code&gt; to &lt;code&gt;rust_analyzer_settings.json&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108616&quot;&gt;Sync codegen defaults with compiler defaults and add a ping message so they stay in sync&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108613&quot;&gt;Remove &lt;code&gt;llvm.skip-rebuild&lt;&#x2F;code&gt; option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108607&quot;&gt;Don&#x27;t use fd-lock on Solaris in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108581&quot;&gt;Add a new config flag, dist.include-mingw-linker.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108564&quot;&gt;Fix &lt;code&gt;x clean&lt;&#x2F;code&gt; with specific paths&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108534&quot;&gt;Import rust-installer &amp;amp; adjust compression settings&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108497&quot;&gt;[EXPERIMENT] Enable frame pointers for rustc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108485&quot;&gt;move pal cfgs in f32 and f64 to sys&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108463&quot;&gt;bootstrap: Update the output of the &lt;code&gt;check&lt;&#x2F;code&gt; descriptions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108404&quot;&gt;support &lt;code&gt;x fmt&lt;&#x2F;code&gt; for sub and outside of rust directories&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108394&quot;&gt;Make &lt;code&gt;x doc --open&lt;&#x2F;code&gt; work on every book&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108366&quot;&gt;Teach bootstrap system to export target specific rustflags&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108365&quot;&gt;Add RUSTC_EMIT option to pass on --emit to crates during bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108316&quot;&gt;fix rustfmt symlink exists check in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108308&quot;&gt;Allow building serde and serde_derive in parallel&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108303&quot;&gt;Revert &amp;quot;Copy &lt;code&gt;bin&#x2F;*&lt;&#x2F;code&gt; and &lt;code&gt;lib&#x2F;*.dylib&lt;&#x2F;code&gt; files to &lt;code&gt;stage0-sysroot&lt;&#x2F;code&gt;&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108302&quot;&gt;Revert #107834&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108288&quot;&gt;fix &lt;code&gt;build --stage 2 compiler&#x2F;rustc&lt;&#x2F;code&gt; panic&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108280&quot;&gt;Revert &amp;quot;Copy &lt;code&gt;bin&#x2F;*&lt;&#x2F;code&gt; and &lt;code&gt;lib&#x2F;*.dylib&lt;&#x2F;code&gt; files to &lt;code&gt;stage0-sysroot&lt;&#x2F;code&gt;&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108264&quot;&gt;no-fail-fast support for tool testsuites&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108262&quot;&gt;Distribute libntdll.a with windows-gnu toolchains&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108247&quot;&gt;move TestHelpers to test.rs and rename native.rs to llvm.rs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108229&quot;&gt;[107049] Recognise top level keys in config.toml.example&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108212&quot;&gt;Download rustfmt regardless of rustc being set in config.toml&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108188&quot;&gt;Change src&#x2F;etc&#x2F;vscode_settings.json to always treat .&#x2F;library as the sysroot source&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108171&quot;&gt;Improve building compiler artifacts output&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108161&quot;&gt;Add &lt;code&gt;ConstParamTy&lt;&#x2F;code&gt; trait&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108153&quot;&gt;Rollup of 3 pull requests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108140&quot;&gt;Respect config.lld_enabled when building windows-gnu.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108135&quot;&gt;Split &lt;code&gt;x setup&lt;&#x2F;code&gt; sub-actions to CLI arguments (Clap edition)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108107&quot;&gt;Display pid of process holding lock&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108083&quot;&gt;Migrate &lt;code&gt;x&lt;&#x2F;code&gt; to using &lt;code&gt;clap&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108037&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108026&quot;&gt;Intern &lt;code&gt;SimplifyCfg&lt;&#x2F;code&gt; into enum variants&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108021&quot;&gt;make x look for x.py if shell script does not exist&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107956&quot;&gt;Copy &lt;code&gt;bin&#x2F;*&lt;&#x2F;code&gt; and &lt;code&gt;lib&#x2F;*.dylib&lt;&#x2F;code&gt; files to &lt;code&gt;stage0-sysroot&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107948&quot;&gt;Allow shortcuts to directories to be used for .&#x2F;x.py fmt&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107905&quot;&gt;Pass arguments to &lt;code&gt;x&lt;&#x2F;code&gt; subcommands with &lt;code&gt;--&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107879&quot;&gt;Update LLVM submodule&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107876&quot;&gt;create symlink only for non-windows operating systems&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107873&quot;&gt;Emit JSON output for the building of bootstrap itself&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107858&quot;&gt;Added sanity check to to catch empty &lt;code&gt;host&lt;&#x2F;code&gt; parameter in &lt;code&gt;.&#x2F;x.py test --host=&#x27;&#x27;&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107848&quot;&gt;Split &lt;code&gt;x setup&lt;&#x2F;code&gt; sub-actions to CLI arguments&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107842&quot;&gt;Patch &lt;code&gt;build&#x2F;rustfmt&#x2F;lib&#x2F;*.so&lt;&#x2F;code&gt; for NixOS&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107841&quot;&gt;Handled snap curl issue inside Rust&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107834&quot;&gt;create symlink for legacy rustfmt path&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107830&quot;&gt;Remove missing_tools config&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107827&quot;&gt;Add zsh and bash completions for &lt;code&gt;x&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107819&quot;&gt;Set &lt;code&gt;rust-analyzer.check.invocationLocation&lt;&#x2F;code&gt; to &lt;code&gt;root&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107812&quot;&gt;no python in shell scripts&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107808&quot;&gt;bootstrap.py: fix build-failure message&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107790&quot;&gt; x.py fails all downloads that use a tempdir with snap curl #107722&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107757&quot;&gt;Allow automatically creating vscode &lt;code&gt;settings.json&lt;&#x2F;code&gt; with &lt;code&gt;x setup&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107743&quot;&gt;Release 1.67.1&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107723&quot;&gt;Apply BOLT optimizations without rebuilding LLVM&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107704&quot;&gt;Run &lt;code&gt;expand-yaml-anchors&lt;&#x2F;code&gt; in &lt;code&gt;x test tidy&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107689&quot;&gt;Enable frame pointers on all targets except x86.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107657&quot;&gt;Add only modified subcommand for compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107656&quot;&gt;Bump rust-installer&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107651&quot;&gt;[WIP] Build &lt;code&gt;rustc&lt;&#x2F;code&gt; with a single CGU on x64 Linux&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107639&quot;&gt;Build only X86 architecture for all temporary LLVM builds in Linux x64 &lt;code&gt;dist&lt;&#x2F;code&gt; builder&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107628&quot;&gt;Make &lt;code&gt;x clippy&lt;&#x2F;code&gt; download and use beta clippy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107626&quot;&gt;Fix &lt;code&gt;x fix&lt;&#x2F;code&gt; on the standard library itself&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107618&quot;&gt;Add a linker argument back to boostrap.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107573&quot;&gt;Update the minimum external LLVM to 14&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107560&quot;&gt;Add an option to tune compiler crates&#x27; CGUs to bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107521&quot;&gt;Don&#x27;t rebuild LLVM for BOLT optimization&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107483&quot;&gt;Removed bootstrap asserts&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107470&quot;&gt;Small bootstrap improvements&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107448&quot;&gt;When stamp doesn&#x27;t exist, should say Error, and print path to stamp file&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107417&quot;&gt;Bootstrap asserts &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107397&quot;&gt;Gracefully exit if --keep-stage flag is used on a clean source tree&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107393&quot;&gt;Add internal lint against &lt;code&gt;Ty == Ty&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107332&quot;&gt;Fix wording from &lt;code&gt;rustbuild&lt;&#x2F;code&gt; to &lt;code&gt;bootstrap&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107297&quot;&gt;Bump bootstrap compiler to 1.68&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107264&quot;&gt;Add option to include private items in library docs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107241&quot;&gt;Add &lt;code&gt;rust.lto=off&lt;&#x2F;code&gt; to bootstrap and set as compiler&#x2F;library default&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107239&quot;&gt;Bring tests back into rustc source tarball&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107236&quot;&gt;Add T-bootstrap label to tools&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107234&quot;&gt;Revisit fix_is_ci_llvm_available logic&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107224&quot;&gt;Upgrade to LLVM 16&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107200&quot;&gt;io: soften ‘at most one write attempt’ requirement in io::Write::write&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107164&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107127&quot;&gt;Enable sanitizers for s390x-linux&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107121&quot;&gt;Allow to disable auto and blanket trait impls retrieval in rustdoc if it is in &lt;code&gt;parallel_compiler&lt;&#x2F;code&gt; mode&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107116&quot;&gt;consolidate bootstrap docs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107086&quot;&gt;Print PID holding bootstrap build lock on Linux&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107080&quot;&gt;bootstrap: cleanup the list of extra check cfgs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107071&quot;&gt;[beta] backport rollup&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107059&quot;&gt;fixes the --set option in configure.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107015&quot;&gt;Re-enable building rust-analyzer on riscv64&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107009&quot;&gt;Implement jump threading MIR opt&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106934&quot;&gt;Add offset_of! macro (RFC 3308)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106886&quot;&gt;Make stage2 rustdoc and proc-macro-srv disableable in x.py install&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106885&quot;&gt;Customize ICE link to include some metadata&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106777&quot;&gt;PERF: split dwarf after #106709&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106770&quot;&gt;Experiment: variation on #106745&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106749&quot;&gt;Update cc to 1.0.77&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106733&quot;&gt;Revert &amp;quot;warn newer available version of the x tool&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106714&quot;&gt;remove unreachable error code &lt;code&gt;E0490&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106712&quot;&gt;make error emitted on &lt;code&gt;impl &amp;amp;Trait&lt;&#x2F;code&gt; nicer&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106707&quot;&gt;Remove duplicate sha-1 dependency&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106706&quot;&gt;fix(x): grammar&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106696&quot;&gt;Switch to &lt;code&gt;EarlyBinder&lt;&#x2F;code&gt; for &lt;code&gt;const_param_default&lt;&#x2F;code&gt; and &lt;code&gt;impl_trait_ref&lt;&#x2F;code&gt; queries&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106687&quot;&gt;[nightly] Fix CVE-2022-46176&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106686&quot;&gt;[beta] Fix CVE-2022-46176&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106685&quot;&gt;[stable] Prepare Rust 1.66.1 and fix CVE-2022-46176&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106681&quot;&gt;Link unstable features&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106646&quot;&gt;Fix aarch64-unknown-linux-gnu_ilp32 target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106631&quot;&gt;[CI only] Move tests rebased&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106621&quot;&gt;enable &lt;code&gt;rust_2018_idioms&lt;&#x2F;code&gt; lint group for doctests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106619&quot;&gt;Fix unset e_flags in ELF files generated for AVR targets&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106610&quot;&gt;migrate compiler, bootstrap and compiletest to windows-rs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106559&quot;&gt;Simple solution  to validate toml in issue #106104&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106520&quot;&gt;Update mdbook&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106483&quot;&gt;Doc test rustc ast lowering&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106476&quot;&gt;Add sanitizer support for modern iOS platforms&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106470&quot;&gt;tidy: Don&#x27;t include wasm32 in compiler dependency check&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106458&quot;&gt;Move src&#x2F;test to the root&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106457&quot;&gt;Adjust comments about pre-push.sh hook&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106429&quot;&gt;Add vendor to Fuchsia&#x27;s target triple&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106428&quot;&gt;Permit the MIR inliner to inline diverging functions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106415&quot;&gt;Handle non-existent upstream master branches in &lt;code&gt;x fmt&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106396&quot;&gt;Allow passing a specific date to &lt;code&gt;bump-stage0&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106394&quot;&gt;Make x.py clippy download and use beta clippy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106387&quot;&gt;Revert &amp;quot;bootstrap: Get rid of &lt;code&gt;tail_args&lt;&#x2F;code&gt; in &lt;code&gt;stream_cargo&lt;&#x2F;code&gt;&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106381&quot;&gt;Jsondoclint: Add &lt;code&gt;--verbose&lt;&#x2F;code&gt; and &lt;code&gt;--json-output&lt;&#x2F;code&gt; options&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;&#x2F;details&gt;
&lt;details style=&quot;overflow-y: scroll; max-height: 750px;&quot;&gt;
  &lt;summary&gt;714 pull requests were merged&lt;&#x2F;summary&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119441&quot;&gt;Simplify bootstrap &lt;code&gt;--check-cfg&lt;&#x2F;code&gt; arguments&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119413&quot;&gt;solaris support on bootstrap lock&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119378&quot;&gt;utilize the unused &lt;code&gt;llvm-tools&lt;&#x2F;code&gt; option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119373&quot;&gt;Remove usage of deprecated &lt;code&gt;missing-tools&lt;&#x2F;code&gt; bootstrap flag&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119303&quot;&gt;Update sysinfo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119294&quot;&gt;fix &lt;code&gt;.&#x2F;configure --set change-id&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119292&quot;&gt;bootstrap: use same make flags with rustdoc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119248&quot;&gt;remove dead inferred outlives testing code&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119232&quot;&gt;Fix doc typos&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119227&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119211&quot;&gt;Bump stage0 to 1.76 beta&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119182&quot;&gt;Update sysinfo version to 0.30.0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119124&quot;&gt;don&#x27;t build &lt;code&gt;rust-analyzer-proc-macro-srv&lt;&#x2F;code&gt; on def config &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119080&quot;&gt;Comment out &lt;code&gt;change-id&lt;&#x2F;code&gt; in &lt;code&gt;config.example.toml&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119077&quot;&gt;Separate MIR lints from validation&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119020&quot;&gt;remove &lt;code&gt;hex&lt;&#x2F;code&gt; dependency in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118946&quot;&gt;fix &lt;code&gt;x clean&lt;&#x2F;code&gt; for cross-compiled artifacts&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118943&quot;&gt;update &lt;code&gt;measureme&lt;&#x2F;code&gt; to 10.1.2 to deduplicate &lt;code&gt;parking_lot&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118937&quot;&gt;&lt;code&gt;-Ztrait-solver=next&lt;&#x2F;code&gt; to &lt;code&gt;-Znext-solver&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118936&quot;&gt;Update to LLVM 17.0.6&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118906&quot;&gt;Fix LLD thread flags in bootstrap on Windows&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118894&quot;&gt;Unbreak non-unix non-windows bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118842&quot;&gt;Make exhaustiveness usable outside of rustc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118817&quot;&gt;Subtree update of &lt;code&gt;rust-analyzer&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118810&quot;&gt;Revert using MCP510 in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118789&quot;&gt;fix --dry-run when the change-id warning is printed&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118782&quot;&gt;use &lt;code&gt;&amp;amp;&lt;&#x2F;code&gt; instead of start-process in x.ps1&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118756&quot;&gt;use bold magenta instead of bold white for highlighting&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118747&quot;&gt;Remove extra check cfg handled by libc directly&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118737&quot;&gt;Extend tidy alphabetical checking to &lt;code&gt;tests&#x2F;&lt;&#x2F;code&gt;.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118703&quot;&gt;Remove unused bootstrap config option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118650&quot;&gt;add comment about keeping flags in sync between bootstrap.py and bootstrap.rs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118647&quot;&gt;dump bootstrap shims&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118642&quot;&gt;bootstrap(builder.rs): Don&#x27;t explicitly warn against &lt;code&gt;semicolon_in_expressions_from_macros&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118606&quot;&gt;Fix &lt;code&gt;x&lt;&#x2F;code&gt; not to quit after &lt;code&gt;x&lt;&#x2F;code&gt; prints &lt;code&gt;settings.json&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118566&quot;&gt;use c literals in compiler and library&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118546&quot;&gt;update hashbrown&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118539&quot;&gt;move packed-struct tests into packed&#x2F; folder&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118528&quot;&gt;replace &lt;code&gt;once_cell::sync::OnceCell&lt;&#x2F;code&gt; with std &lt;code&gt;OnceLock&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118500&quot;&gt;Move some methods from &lt;code&gt;tcx.hir()&lt;&#x2F;code&gt; to &lt;code&gt;tcx&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118417&quot;&gt;Add unstable &lt;code&gt;-Zdefault-hidden-visibility&lt;&#x2F;code&gt; cmdline flag for &lt;code&gt;rustc&lt;&#x2F;code&gt;.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118375&quot;&gt;Add -Zunpretty=stable-mir output test&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118365&quot;&gt;Subtree update of &lt;code&gt;rust-analyzer&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118352&quot;&gt;bootstrap: Memoize the LLVM rebuild hash to avoid very slow &lt;code&gt;x check&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118324&quot;&gt;compile-time evaluation: detect writes through immutable pointers&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118323&quot;&gt;give dev-friendly error message for incorrect config profiles&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118322&quot;&gt;skip {tidy,compiletest,rustdoc-gui} based tests for &lt;code&gt;DocTests::Only&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118301&quot;&gt;docs: publish nightly doc for &lt;code&gt;rustfix&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118275&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118253&quot;&gt;Replace &lt;code&gt;option.map(cond) == Some(true)&lt;&#x2F;code&gt; with &lt;code&gt;option.is_some_and(cond)&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118235&quot;&gt;Fix build on Solaris after #117815.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118220&quot;&gt;general improvements&#x2F;fixes on bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118187&quot;&gt;Recompile LLVM when it changes in the git sources&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118132&quot;&gt;utilize stdlib debug assertion status in compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118083&quot;&gt;Remove i686-apple-darwin cross-testing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118071&quot;&gt;Remove &lt;code&gt;feature&lt;&#x2F;code&gt; from the list of well known check-cfg name&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118069&quot;&gt;allow bypassing the build directory lock&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118059&quot;&gt;Explicitly unset $CARGO for compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118042&quot;&gt;[beta] backport &amp;amp; bootstrap bump&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118036&quot;&gt;Add thinlto support to codegen, assembly and coverage tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118029&quot;&gt;Expand Miri&#x27;s BorTag GC to a Provenance GC&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118013&quot;&gt;Enable Rust to use the EHCont security feature of Windows&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117982&quot;&gt;bootstrap: only show PGO warnings when verbose&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117966&quot;&gt;add safe compilation options&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117947&quot;&gt;Update the minimum external LLVM to 16.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117914&quot;&gt;On borrow return type, suggest borrowing from arg or owned return type&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117888&quot;&gt;doc: add release notes to standalone doc bundle&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117875&quot;&gt;Bootstrap bump&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117873&quot;&gt;Add emulated TLS support&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117872&quot;&gt;Cranelift isn&#x27;t available on non-nightly channels&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117868&quot;&gt;Set &lt;code&gt;CFG_OMIT_GIT_HASH=1&lt;&#x2F;code&gt; during builds when &lt;code&gt;omit-git-hash&lt;&#x2F;code&gt; is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117850&quot;&gt;bootstrap: simplify setting unstable-options for tools&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117842&quot;&gt;[beta] 1.75.0 promotion&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117815&quot;&gt;improve bootstrap change-tracking system&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117813&quot;&gt;deprecate &lt;code&gt;if-available&lt;&#x2F;code&gt; value of &lt;code&gt;download-ci-llvm&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117797&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117782&quot;&gt;Fix tidy tripping up on  untracked files with special characters in their name&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117771&quot;&gt;Build Fuchsia in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117765&quot;&gt;enable unstable feature on &lt;code&gt;x clean [PATH]&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117750&quot;&gt;bump few ICU4X leftover deps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117724&quot;&gt;Restore rustc shim error message&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117723&quot;&gt;speed up &lt;code&gt;x clean&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117708&quot;&gt;check config file before prompts on &lt;code&gt;x setup&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117701&quot;&gt;Subtree update of &lt;code&gt;rust-analyzer&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117700&quot;&gt;coverage: Rename the &lt;code&gt;run-coverage&lt;&#x2F;code&gt; test mode to &lt;code&gt;coverage-run&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117667&quot;&gt;Document clippy_config in nightly-rustc docs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117663&quot;&gt;bump some deps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117644&quot;&gt;[beta] backports&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117632&quot;&gt;Update ICU4X&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117595&quot;&gt;x clippy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117574&quot;&gt;improve compiler&amp;amp;tool documenting and re-enable cranelift on CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117566&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117540&quot;&gt;clone less&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117535&quot;&gt;Revert &amp;quot;Auto merge of #117328 - lqd:cranelift-rocket, r=Mark-Simulacrum&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117533&quot;&gt;Revert &amp;quot;bootstrap: do not purge docs on CI environment&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117524&quot;&gt;bootstrap&#x2F;setup: create hooks directory if non-existing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117509&quot;&gt;Remove support for alias &lt;code&gt;-Z symbol-mangling-version&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117484&quot;&gt;coverage: Unify &lt;code&gt;tests&#x2F;coverage-map&lt;&#x2F;code&gt; and &lt;code&gt;tests&#x2F;run-coverage&lt;&#x2F;code&gt; into &lt;code&gt;tests&#x2F;coverage&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117471&quot;&gt;bootstrap: do not purge docs on CI environment&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117435&quot;&gt;enable parallel rustc front end in nightly builds&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117407&quot;&gt;Use derivative for &lt;code&gt;Clone&lt;&#x2F;code&gt;&#x2F;&lt;code&gt;PartialOrd&lt;&#x2F;code&gt;&#x2F;&lt;code&gt;Ord&lt;&#x2F;code&gt;&#x2F;&lt;code&gt;Hash&lt;&#x2F;code&gt; in &lt;code&gt;rustc_type_ir&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117383&quot;&gt;improve and fix &lt;code&gt;x install&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117356&quot;&gt;Add support for mipsel-unknown-netbsd, 32-bit LE mips.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117338&quot;&gt;Remove asmjs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117328&quot;&gt;pass &lt;code&gt;CODEGEN_BACKENDS&lt;&#x2F;code&gt; to docker&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117322&quot;&gt;change default output mode of &lt;code&gt;BootstrapCommand&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117313&quot;&gt;Run part of &lt;code&gt;rustc_codegen_gcc&lt;&#x2F;code&gt;&#x27;s tests in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117287&quot;&gt;fix miri target information for Test step&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117263&quot;&gt;handle the case when the change-id isn&#x27;t found&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117229&quot;&gt;Thir unsafeck fixes&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117197&quot;&gt;Avoid unnecessary builds&#x2F;rebuilds of &lt;code&gt;rust-demangler&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117163&quot;&gt;compiletest: Display compilation errors in mir-opt tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117149&quot;&gt;tidy: add unit tests for alphabetical checks&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117122&quot;&gt;Allow configuring the parent GitHub repository&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117105&quot;&gt;remove change-id assertion in bootstrap test&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117072&quot;&gt;Use &lt;code&gt;unwinding&lt;&#x2F;code&gt; crate for unwinding on Xous platform&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117069&quot;&gt;x.ps1: remove the check for Python from Windows Store&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117068&quot;&gt;Clean up &lt;code&gt;compiler&#x2F;rustc*&#x2F;Cargo.toml&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117050&quot;&gt;[&lt;code&gt;RFC 3086&lt;&#x2F;code&gt;] Attempt to try to resolve blocking concerns  &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117043&quot;&gt;add bootstrap flag &lt;code&gt;--skip-stage0-validation&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117040&quot;&gt;coverage: Add UI tests for values accepted by &lt;code&gt;-Cinstrument-coverage&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117032&quot;&gt;Enable cg_clif tests for riscv64gc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117005&quot;&gt;[beta] backports and stage0 bump&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116998&quot;&gt;Improve android-ndk property interface&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116983&quot;&gt;Prepare the &lt;code&gt;bootstrap&lt;&#x2F;code&gt; tool for the new check-cfg syntax&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116939&quot;&gt;bootstrap: bump fd-lock, clap and windows&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116921&quot;&gt;fix(bootstrap) info message show correct path now&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116881&quot;&gt;Add a new &lt;code&gt;download-ci-llvm = if-unchanged&lt;&#x2F;code&gt; option and enable it by default for &lt;code&gt;profile = codegen&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116810&quot;&gt;Add FileCheck annotations to mir-opt tests.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116767&quot;&gt;Normalize alloc-id in tests.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116732&quot;&gt;Make x capable of resolving symlinks&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116644&quot;&gt;remove outdated bootstrap FIXME&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116643&quot;&gt;x.py zsh completion support&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116635&quot;&gt;optimize file read in &lt;code&gt;Config::verify&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116603&quot;&gt;Reorganize &lt;code&gt;bootstrap&#x2F;Cargo.toml&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116581&quot;&gt;Centralize command running in boostrap (part one)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116577&quot;&gt;add &lt;code&gt;SAFETY&lt;&#x2F;code&gt; block on the usage of unsafe &lt;code&gt;getuid&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116556&quot;&gt;Sync rustc_codegen_cranelift&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116550&quot;&gt;Cleanup &lt;code&gt;rustc_features&lt;&#x2F;code&gt; some more&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116532&quot;&gt;Add RUSTFLAGS_BOOTSTRAP to RUSTFLAGS for bootstrap compilation&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116514&quot;&gt;linker: Remove &lt;code&gt;-Zgcc-ld&lt;&#x2F;code&gt; option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116508&quot;&gt;Miri subtree update&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116477&quot;&gt;Use tidy to enforce alphabetical dependency ordering&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116449&quot;&gt;Pass flags to &lt;code&gt;rustdoc&lt;&#x2F;code&gt; shim without env. vars&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116448&quot;&gt;Pass rustc shim flags using environment variable&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116430&quot;&gt;vendoring in tarball sources&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116407&quot;&gt;Bump bootstrap compiler to just-released beta&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116365&quot;&gt;bootstrap: make copying linker binaries conditional&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116362&quot;&gt;[beta] promote release&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116352&quot;&gt;Optimize &lt;code&gt;librustc_driver.so&lt;&#x2F;code&gt; with BOLT &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116349&quot;&gt;ensure the parent path&#x27;s existence on &lt;code&gt;x install&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116312&quot;&gt;Initiate the inner usage of &lt;code&gt;cfg_match&lt;&#x2F;code&gt; (Compiler)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116292&quot;&gt;warn if source is not either a git clone or a dist tarball&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116278&quot;&gt;Generalize LLD usage in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116276&quot;&gt;bootstrap: copy self-contained linking components to &lt;code&gt;stage0-sysroot&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116263&quot;&gt;More fixes for running the test suite on a bare metal target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116244&quot;&gt;Apply structured suggestion that allows test to work since 1.64&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116223&quot;&gt;Fix misuses of a vs an&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116196&quot;&gt;reorganize&#x2F;refactor bootstrap codebase&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116189&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116160&quot;&gt;quote argument to sh -n&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116133&quot;&gt;ref(bootstrap.py): add &lt;code&gt;eprint&lt;&#x2F;code&gt; function&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116127&quot;&gt;add sanity checks for user write access on &lt;code&gt;x install&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116108&quot;&gt;Pass &lt;code&gt;-jN&lt;&#x2F;code&gt; from Make to &lt;code&gt;BOOTSTRAP_ARGS&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116067&quot;&gt;Open the FileEncoder file for reading and writing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116029&quot;&gt;Update crates for better MIPS R6 support&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116017&quot;&gt;Don&#x27;t pass &lt;code&gt;-stdlib=libc++&lt;&#x2F;code&gt; when building C files on macOS&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116009&quot;&gt;Fix &lt;code&gt;ui-fulldeps --stage=1&lt;&#x2F;code&gt; with &lt;code&gt;-Zignore-directory-in-diagnostics-source-blocks&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115975&quot;&gt;dependencies: reduce the amount of crates pulling in atty&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115957&quot;&gt;fix mismatched symbols&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115948&quot;&gt;rustdoc: show crate name beside smaller logo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115943&quot;&gt;compiletest: Don&#x27;t swallow some error messages.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115934&quot;&gt;Split out the stable part of smir into its own crate to prevent accidental usage of forever unstable things&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115898&quot;&gt;bootstrap major change detection implementation&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115872&quot;&gt;Remap Cargo dependencies to &#x2F;rust&#x2F;deps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115869&quot;&gt;Avoid blessing cargo deps&#x27;s source code in ui tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115863&quot;&gt;Add check_unused_messages in tidy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115836&quot;&gt;update rust_analyzer_settings.json&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115829&quot;&gt;rustdoc: merge theme css into rustdoc.css&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115811&quot;&gt;Make AIX known by bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115706&quot;&gt;Make compiletest output truncation less disruptive&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115695&quot;&gt;compiletest: load supported sanitizers from target spec&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115694&quot;&gt;Add &lt;code&gt;std::hash::{DefaultHasher, RandomState}&lt;&#x2F;code&gt; exports (needs FCP)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115644&quot;&gt;Enable ASAN&#x2F;LSAN&#x2F;TSAN for *-apple-ios-macabi&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115598&quot;&gt;Fix log formatting in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115558&quot;&gt;issue has since been fixed&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115544&quot;&gt;support &lt;code&gt;{disable,enable}-patch-binaries-for-nix&lt;&#x2F;code&gt; in configure.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115530&quot;&gt;update &lt;code&gt;build.extended&lt;&#x2F;code&gt; comments in &lt;code&gt;config.example.toml&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115526&quot;&gt;Add arm64e-apple-ios &amp;amp; arm64e-apple-darwin targets&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115514&quot;&gt;optimize and cleanup bootstrap source&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115494&quot;&gt;get rid of duplicate primitive_docs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115471&quot;&gt;also skip musl checks when BOOTSTRAP_SKIP_TARGET_SANITY is set&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115448&quot;&gt;optimize bootstrap dep tree&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115440&quot;&gt;bootstrap&#x2F;format: remove unnecessary paths.push&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115409&quot;&gt;bootstrap: use git merge-base for LLVM CI download logic&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115323&quot;&gt;avoid stdout redirection on &lt;code&gt;curl&lt;&#x2F;code&gt; executions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115278&quot;&gt;tell people what to do when removing an error code&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115274&quot;&gt;Run tidy license checker on more workspaces&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115261&quot;&gt;replace outdated github username &#x27;ozkanonur&#x27;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115230&quot;&gt;added support for GNU&#x2F;Hurd&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115195&quot;&gt;[beta] backport and stage0 bump&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115174&quot;&gt;tests: add test for #67992&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115154&quot;&gt;Move some ui tests to subdirectories&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115128&quot;&gt;tests: re-enable pretty-std-collections on macOS&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115117&quot;&gt;Detect and report nix shell&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115111&quot;&gt;compile rust-anaylzer with &lt;code&gt;x check&lt;&#x2F;code&gt; if it&#x27;s enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115109&quot;&gt;Skip ExpandYamlAnchors when the config is missing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115103&quot;&gt;Disable bootstrap rustc version check&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115094&quot;&gt;Update bootstrap compiler to 1.73.0 beta&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115090&quot;&gt;Always use &lt;code&gt;os-release&lt;&#x2F;code&gt; rather than &lt;code&gt;&#x2F;lib&lt;&#x2F;code&gt; to detect &lt;code&gt;NixOS&lt;&#x2F;code&gt; (bootstrap)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115088&quot;&gt;Fix Step Skipping Caused by Using the &lt;code&gt;--exclude&lt;&#x2F;code&gt; Option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115086&quot;&gt;bootstrap&#x2F;miri: respect config_locked_deps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115045&quot;&gt;when terminating during unwinding, show the reason why&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115011&quot;&gt;Warn on elided lifetimes in associated constants (&lt;code&gt;ELIDED_LIFETIMES_IN_ASSOCIATED_CONSTANT&lt;&#x2F;code&gt;)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114875&quot;&gt;coverage: Anonymize line numbers in &lt;code&gt;run-coverage&lt;&#x2F;code&gt; test snapshots&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114843&quot;&gt;coverage: Explicitly test the coverage maps produced by codegen&#x2F;LLVM&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114748&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114615&quot;&gt;interpret: remove incomplete protection against invalid where clauses&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114613&quot;&gt;Prevent constant rebuilds of &lt;code&gt;rustc-main&lt;&#x2F;code&gt; (and thus everything else)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114535&quot;&gt;bump schannel, miow to drop windows-sys 0.42&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114498&quot;&gt;Print tidy command with bless tidy check failure&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114482&quot;&gt;Fix ui-fulldeps missing the &lt;code&gt;internal_features&lt;&#x2F;code&gt; lint on stage 0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114480&quot;&gt;copy the correct version of LLVM into the stage0 sysroot&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114440&quot;&gt;bootstrap: config: fix version comparison bug&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114434&quot;&gt;Improve spans for indexing expressions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114429&quot;&gt;compiletest: Handle non-utf8 paths (fix FIXME)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114415&quot;&gt;Skip checking of &lt;code&gt;rustc_codegen_gcc&lt;&#x2F;code&gt; with vendoring enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114347&quot;&gt;x.py print more detailed format files and untracked files count&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114345&quot;&gt;Revert #113588 to fix bootstrap timings&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114321&quot;&gt;get auto traits for parallel rustc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114305&quot;&gt;Strip unexpected debuginfo from &lt;code&gt;libLLVM.so&lt;&#x2F;code&gt; and &lt;code&gt;librustc_driver.so&lt;&#x2F;code&gt; when not requesting any debuginfo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114297&quot;&gt;Update x64 Linux host compiler to LLVM 17&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114284&quot;&gt;Prepare Rust 1.71.1&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114278&quot;&gt;better error handling for &lt;code&gt;rust.codegen-backends&lt;&#x2F;code&gt; on deserialization&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114253&quot;&gt;Compute variances for lazy type aliases&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114228&quot;&gt;Check lazy type aliases for well-formedness&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114227&quot;&gt;Add tidy check for stray rustfix files&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114193&quot;&gt;Update lexer emoji diagnostics to Unicode 15.0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114148&quot;&gt;Update the minimum external LLVM to 15&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114143&quot;&gt;Rename tests&#x2F;ui&#x2F;issues&#x2F;issue-100605.rs to ..&#x2F;type&#x2F;option-ref-advice.rs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114141&quot;&gt;Change LLVM BOLT flags&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114133&quot;&gt;Revert &amp;quot;add tidy check that forbids issue ui test filenames&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114126&quot;&gt;clean stage-specific artifacts using &lt;code&gt;x clean --stage&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114104&quot;&gt;Lots of tiny incremental simplifications of &lt;code&gt;EmitterWriter&lt;&#x2F;code&gt; internals&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114102&quot;&gt;Dont pass &lt;code&gt;-Zwrite-long-types-to-disk=no&lt;&#x2F;code&gt; for &lt;code&gt;ui-fulldeps --stage=1&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114090&quot;&gt;compiletest: remove ci-specific remap-path-prefix&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114069&quot;&gt;Allow using external builds of the compiler-rt profile lib&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114066&quot;&gt;bootstrap: inline format!() args (0)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114058&quot;&gt;Add help for crate arg when crate name is invalid&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114054&quot;&gt;Split some functions with many arguments into builder pattern functions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114048&quot;&gt;Update to LLVM 17&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114032&quot;&gt;typos&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114027&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114001&quot;&gt;fix(bootstrap): rename exclude flag to skip 🐛&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113996&quot;&gt;Define CMAKE_SYSTEM_NAME on a cross build targeting DragonFly.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113965&quot;&gt;Fix test panics for submodule of book is not updated&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113960&quot;&gt;Sync rustc_codegen_cranelift&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113948&quot;&gt;Fix rustc-args passing issue in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113940&quot;&gt;rust-installer: Use env(1) in the shebang.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113938&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113906&quot;&gt;etc: add &lt;code&gt;RUSTC_BOOTSTRAP&lt;&#x2F;code&gt; to rust-analyzer config&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113893&quot;&gt;new unstable option: -Zwrite-long-types-to-disk&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113843&quot;&gt;Replace in-tree &lt;code&gt;rustc_apfloat&lt;&#x2F;code&gt; with the new version of the crate&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113807&quot;&gt;Tests crash from inappropriate use of common linkage&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113800&quot;&gt;Avoid another gha group nesting&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113731&quot;&gt;Remove unused &lt;code&gt;bootstrap::util::CiEnv&lt;&#x2F;code&gt; enum&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113730&quot;&gt;Report errors in jobserver inherited through environment variables&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113725&quot;&gt;Move MinGW linker dist option to proper section&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113710&quot;&gt;Fix rpath for libdir is specified&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113706&quot;&gt;Fix compiletest windows path finding with spaces&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113686&quot;&gt;Update Clippy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113683&quot;&gt;remove outdated &lt;code&gt;FIXME&lt;&#x2F;code&gt;s in bootstrap internals&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113661&quot;&gt;Double check that hidden types match the expected hidden type&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113658&quot;&gt;add a csky-unknown-linux-gnuabiv2 target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113644&quot;&gt;misc bootstrap cleanups&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113643&quot;&gt;bootstrap: Clean up try_run&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113640&quot;&gt;Make &lt;code&gt;nodejs&lt;&#x2F;code&gt; control the default for RustdocJs tests instead of a hard-off switch&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113637&quot;&gt;Bump bootstrap to 1.72 beta&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113616&quot;&gt;Fix bootstrap.py uname error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113603&quot;&gt;Test simd-wide-sum for codegen error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113598&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113592&quot;&gt;Move BOLT from &lt;code&gt;bootstrap&lt;&#x2F;code&gt; to &lt;code&gt;opt-dist&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113591&quot;&gt;refactor(rustc_middle): Substs -&amp;gt; GenericArg&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113588&quot;&gt;bootstrap: use git merge-base for LLVM CI download logic&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113583&quot;&gt;add tidy check that forbids issue-XXXX test filenames&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113579&quot;&gt;Revert &amp;quot;fix: :bug: etc&#x2F;bash_complettion -&amp;gt; src&#x2F;etc&#x2F;... to avoid copy …&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113551&quot;&gt;bootstrap: Don&#x27;t print &amp;quot;Skipping&amp;quot; twice&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113524&quot;&gt;Remove the library&#x2F;term exception in tidy&#x27;s pal checker code&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113522&quot;&gt;Implement generic const items&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113514&quot;&gt;Add even more GHA log groups&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113492&quot;&gt;Add CL and CMD into to pdb debug info&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113480&quot;&gt;add aarch64-unknown-teeos target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113476&quot;&gt;Reimplement C-str literals&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113450&quot;&gt;Fail the build if clippy tests don&#x27;t pass&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113432&quot;&gt;reduce deps for windows-msvc targets for backtrace&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113411&quot;&gt;Add &lt;code&gt;x86_64-unikraft-linux-musl&lt;&#x2F;code&gt; target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113373&quot;&gt;various download-rustc fixes&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113371&quot;&gt;Fix submodule handling when the current branch is named after a tag&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113356&quot;&gt;Add support for NetBSD&#x2F;riscv64 aka. riscv64gc-unknown-netbsd.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113353&quot;&gt;Implement selection for &lt;code&gt;Unsize&lt;&#x2F;code&gt; for better coercion behavior&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113341&quot;&gt;Copy stage0 &lt;code&gt;rustc&lt;&#x2F;code&gt; binaries to &lt;code&gt;stage0-sysroot&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113334&quot;&gt;Revert the lexing of &lt;code&gt;c&amp;quot;…&amp;quot;&lt;&#x2F;code&gt; string literals&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113306&quot;&gt;Update debuginfo test runner to provide more useful output&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113303&quot;&gt;Remove chalk support from the compiler&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113298&quot;&gt;Unite bless environment variables under &lt;code&gt;RUST_BLESS&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113276&quot;&gt;Update rustix&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113275&quot;&gt;link to PERMITTED_DEPENDENCIES in tidy error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113273&quot;&gt;Use String or Int to set the opt level&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113269&quot;&gt;Update compiler builtins&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113260&quot;&gt;Update Clippy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113246&quot;&gt;fix compiletest crash&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113244&quot;&gt;Make Rust Analyzer tests faster by compiling less code&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113234&quot;&gt;Don&#x27;t pass --test-args to &lt;code&gt;python -m unitest&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113226&quot;&gt;Fix try builds on the msvc builder&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113214&quot;&gt;Don&#x27;t fail early if &lt;code&gt;try_run&lt;&#x2F;code&gt; returns an error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113200&quot;&gt;Fix loading target specs in compiletest not working with custom targets&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113189&quot;&gt;compiletest: Only trim the end of process output&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113185&quot;&gt;Set &lt;code&gt;channel = nightly&lt;&#x2F;code&gt; in dist profile&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113167&quot;&gt;rustdoc: Add lint &lt;code&gt;redundant_explicit_links&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113099&quot;&gt;fix(resolve): update the ambiguity glob binding as warning recursively&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113068&quot;&gt;bootstrap: rename &#x27;user&#x27; profile to &#x27;dist&#x27;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113061&quot;&gt;Add x86_64-unknown-linux-ohos target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113048&quot;&gt;Fix build on Solaris where fd-lock cannot be used.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113046&quot;&gt;cargo update&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113034&quot;&gt;Switch some more Steps to &lt;code&gt;builder.msg&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113010&quot;&gt;rust-installer &amp;amp; rls: remove exclusion from rustfmt &amp;amp; tidy &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113008&quot;&gt;Move some docs from the README to the dev-guide&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113003&quot;&gt;Fix old python deprecation check in x.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113002&quot;&gt;bootstrap: Backup &lt;code&gt;settings.json&lt;&#x2F;code&gt; to the correct filename&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112982&quot;&gt;bootstrap: update defaults for &lt;code&gt;compiler&lt;&#x2F;code&gt; and &lt;code&gt;library&lt;&#x2F;code&gt; aliases&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112962&quot;&gt;Fix rustdoc gui tester&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112931&quot;&gt;Enable zlib in LLVM on aarch64-apple-darwin&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112922&quot;&gt;WASI threads, implementation of wasm32-wasi-preview1-threads target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112918&quot;&gt;display PID of process holding lock&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112916&quot;&gt;Add more context to &lt;code&gt;quit_if_file_exists&lt;&#x2F;code&gt; in &lt;code&gt;configure.py&lt;&#x2F;code&gt; &amp;amp; delete config.toml in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112887&quot;&gt;&lt;code&gt;hir&lt;&#x2F;code&gt;: Add &lt;code&gt;Become&lt;&#x2F;code&gt; expression kind (explicit tail calls experiment)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112886&quot;&gt;Revert &#x27;Rename profile=user to profile=dist&#x27;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112884&quot;&gt;rust-installer: migrate to clap 4.2, change to 2021 edition and fix few clippy lints&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112859&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112791&quot;&gt;llvm ffi: Expose &lt;code&gt;CallInst-&amp;gt;setTailCallKind&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112775&quot;&gt;Move tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112756&quot;&gt;Use RustOptimize to set optimize&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112753&quot;&gt;Don&#x27;t try to auto-bless 32-bit &lt;code&gt;mir-opt&lt;&#x2F;code&gt; tests on ARM Mac hosts&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112722&quot;&gt;bootstrap: check for dry run when copying env vars for msvc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112701&quot;&gt;Run part of cg_clif&#x27;s tests in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112697&quot;&gt;Add simple markdown formatting to &lt;code&gt;rustc --explain&lt;&#x2F;code&gt; output&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112671&quot;&gt;Sync rustc_codegen_cranelift&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112668&quot;&gt;Test &lt;code&gt;x.ps1&lt;&#x2F;code&gt; in &lt;code&gt;msvc&lt;&#x2F;code&gt; CI job&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112663&quot;&gt;cleanup azure leftovers&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112645&quot;&gt;CI: merge &lt;code&gt;mingw&lt;&#x2F;code&gt; test CI jobs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112633&quot;&gt;CI: merge &lt;code&gt;msvc&lt;&#x2F;code&gt; test CI jobs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112601&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112562&quot;&gt;rustdoc-gui: allow running on Windows&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112541&quot;&gt;implement stdout streaming in &lt;code&gt;render_tests::Renderer&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112528&quot;&gt;bootstrap: Don&#x27;t override &lt;code&gt;debuginfo-level = 1&lt;&#x2F;code&gt; to mean &lt;code&gt;line-tables-only&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112499&quot;&gt;Fix python linting errors&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112487&quot;&gt;Update documentation for &lt;code&gt;tools&lt;&#x2F;code&gt; defaults&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112483&quot;&gt;Add deprecation warning to python versions &amp;lt;3.6 in x.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112482&quot;&gt;Add support for tidy linting via external tools for non-rust files&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112477&quot;&gt;Give more helpful progress messages in &lt;code&gt;Assemble&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112467&quot;&gt;Document rustc_driver by default&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112454&quot;&gt;Make compiletest aware of targets without dynamic linking&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112435&quot;&gt;Allow overwriting the sysroot compile flag via --rustc-args&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112418&quot;&gt;Add support for targets without unwinding in &lt;code&gt;mir-opt&lt;&#x2F;code&gt;, and improve &lt;code&gt;--bless&lt;&#x2F;code&gt; for it&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112382&quot;&gt;download-rustc: Fix &lt;code&gt;x test core&lt;&#x2F;code&gt; on MacOS&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112374&quot;&gt;add mips64r6 and mips32r6 as target_arch values&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112346&quot;&gt;Remove comments from mir-opt MIR dumps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112339&quot;&gt;Fix rust-analyzer proc macro server&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112309&quot;&gt;bootstrap: remove dependency &lt;code&gt;is-terminal&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112300&quot;&gt;Convert &lt;code&gt;run-make&#x2F;coverage-reports&lt;&#x2F;code&gt; tests to use a custom compiletest mode&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112299&quot;&gt;Don&#x27;t double-print status messages in GHA&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112297&quot;&gt;bootstrap: Disallow &lt;code&gt;--exclude test::std&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112295&quot;&gt;Fix the tests-listing-format-json test on Windows&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112291&quot;&gt;Disable RustAnalyzer check by default, run Rustfmt check before&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112281&quot;&gt;Test the cargo args generated by bootstrap.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112277&quot;&gt;Don&#x27;t require the output from libtest to be valid UTF-8&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112256&quot;&gt;Don&#x27;t compile rustc to self-test compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112247&quot;&gt;rust-lld: add rpath entry to the correct &lt;code&gt;lib&lt;&#x2F;code&gt; folder&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112246&quot;&gt;[beta] backports + stage0 bump&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112235&quot;&gt;Port PGO&#x2F;LTO&#x2F;BOLT optimized build pipeline to Rust&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112234&quot;&gt;refactor &lt;code&gt;tool_doc!&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112231&quot;&gt;Make sure the build.rustc version is either the same or 1 apart (revised)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112217&quot;&gt;Update dependencies with reported vulnerabilities&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112211&quot;&gt;pass &lt;code&gt;--lib&lt;&#x2F;code&gt; to &lt;code&gt;x doc&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112197&quot;&gt;Erase regions even if normalization fails in writeback (in new solver)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112176&quot;&gt;Print the full arguments passed to &lt;code&gt;.&#x2F;configure&lt;&#x2F;code&gt; in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112152&quot;&gt;Fix the progress message for &lt;code&gt;x doc rustc&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112122&quot;&gt;Add &lt;code&gt;-Ztrait-solver=next-coherence&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112120&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112109&quot;&gt;Don&#x27;t print unsupported split-debuginfo modes with &lt;code&gt;-Zunstable-options&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112103&quot;&gt;Bootstrap update to 1.71 beta&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112089&quot;&gt;Add &lt;code&gt;--warnings warn&lt;&#x2F;code&gt; flag to &lt;code&gt;x.py&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112084&quot;&gt;enhancements on  build_helper utilization and rustdoc-gui-test&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112071&quot;&gt;Group rfcs tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112068&quot;&gt;Move tests from &lt;code&gt;ui&#x2F;discrim&lt;&#x2F;code&gt; dir&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112023&quot;&gt;Bump to 1.72.0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112012&quot;&gt;Avoid one &lt;code&gt;rustc&lt;&#x2F;code&gt; rebuild in the optimized build pipeline&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112000&quot;&gt;Add support for LLVM SafeStack&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111998&quot;&gt;Add other workspaces to &lt;code&gt;linkedProjects&lt;&#x2F;code&gt; in rust_analyzer_settings&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111989&quot;&gt;deps: bump crates&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111982&quot;&gt;Revert &amp;quot;Enable incremental independent of stage&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111979&quot;&gt;Respect CARGOFLAGS in bootstrap.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111977&quot;&gt;Make errors from &lt;code&gt;x doc&lt;&#x2F;code&gt; less verbose&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111976&quot;&gt;Generate docs for bootstrap itself&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111975&quot;&gt;Stop normalizing so many different prefixes&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111969&quot;&gt;bootstrap: Make &lt;code&gt;clean&lt;&#x2F;code&gt; respect &lt;code&gt;dry-run&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111955&quot;&gt;bootstrap: Various Step refactors&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111936&quot;&gt;Include test suite metadata in the build metrics&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111916&quot;&gt;make &lt;code&gt;noop_method_call&lt;&#x2F;code&gt; warn by default&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111881&quot;&gt;refactor and cleanup the leak check, add it to new solver&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111858&quot;&gt;Ensure Fluent messages are in alphabetical order&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111826&quot;&gt;Render test messages from bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111813&quot;&gt;MIR: opt-in normalization of &lt;code&gt;BasicBlock&lt;&#x2F;code&gt; and &lt;code&gt;Local&lt;&#x2F;code&gt; numbering&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111809&quot;&gt;Unset MIRI_BLESS for mir-opt-level 4 miri tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111802&quot;&gt;Make &lt;code&gt;x test --dry-run&lt;&#x2F;code&gt; less verbose&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111780&quot;&gt;Diagnostic namespace&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111772&quot;&gt;Fix linkage for large binaries on mips64 platforms&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111771&quot;&gt;add &lt;code&gt;--remote-time&lt;&#x2F;code&gt; flag to curl for bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111770&quot;&gt;Read beta version from the version file if building from a source tarball&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111685&quot;&gt;Fix typo in bootstrap command description&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111647&quot;&gt;use c literals in compiler and library&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111641&quot;&gt;Fix dependency tracking for debugger visualizers&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111606&quot;&gt;very minor cleanups&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111571&quot;&gt;Implement proposed API for &lt;code&gt;proc_macro_span&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111566&quot;&gt;Override config.toml options from command line&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111562&quot;&gt;Improve startup time of bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111561&quot;&gt;Include better context for &amp;quot;already exists&amp;quot; error in compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111558&quot;&gt;Move tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111538&quot;&gt;Make sure the build.rustc version is either the same or 1 apart&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111506&quot;&gt;update Miri&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111495&quot;&gt;Run tests on PGO&#x2F;LTO&#x2F;BOLT optimized dist artifacts&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111472&quot;&gt;Get current target config from&lt;code&gt; --print=cfg&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111454&quot;&gt;update Miri&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111413&quot;&gt;Bump object and thorin-dwp&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111393&quot;&gt;bump windows crate 0.46 -&amp;gt; 0.48&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111388&quot;&gt;Generate shell completions for bootstrap with Clap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111384&quot;&gt;Fix linking Mac Catalyst by including LC_BUILD_VERSION in object files&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111363&quot;&gt;Add a tidy check to find unexpected files in UI tests, and clean up the results&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111348&quot;&gt;new tool &lt;code&gt;rustdoc-gui-test&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111345&quot;&gt;Only depend on CFG_VERSION in rustc_interface&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111329&quot;&gt;Load only the crate header for &lt;code&gt;locator::crate_matches&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111326&quot;&gt;Add support for NetBSD&#x2F;aarch64-be (big-endian arm64).&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111323&quot;&gt;Give a more helpful error when running the rustc shim directly&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111290&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111251&quot;&gt;Issue 109502 follow up, remove unnecessary Vec::new() from compile_test()&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111242&quot;&gt;support set &lt;code&gt;rpath&lt;&#x2F;code&gt; option  for each target independently&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111223&quot;&gt;Use &lt;code&gt;free-args&lt;&#x2F;code&gt; consistently in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111201&quot;&gt;bootstrap: add .gitmodules to the sources&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111187&quot;&gt;bootstrap: add llvm-project&#x2F;runtimes to the sources&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111179&quot;&gt;Fix instrument-coverage tests by using Python to sort instantiation groups&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111160&quot;&gt;Update serde in workspace and non-synced dependencies&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111151&quot;&gt;check bootstrap scripts syntax&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111141&quot;&gt;Return error code from x.ps1&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111118&quot;&gt;Suggest struct when we get colon in fileds in enum&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111076&quot;&gt;diagnostics: exclude indirect private deps from trait impl suggest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111069&quot;&gt;remove pointless &lt;code&gt;FIXME&lt;&#x2F;code&gt; in &lt;code&gt;bootstrap::download&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111067&quot;&gt;Make x.py work again in most (all?) cases&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111021&quot;&gt;Move some tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110999&quot;&gt;Output some bootstrap messages on stderr&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110996&quot;&gt;bootstrap: Fix compile error: unused-mut&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110992&quot;&gt;Sync rustc_codegen_cranelift&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110979&quot;&gt;windows: kill rust-analyzer-proc-macro-srv before deleting stage0 directory&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110970&quot;&gt;tidy: remove ENTRY_LIMIT maximum checking and set it to 900&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110936&quot;&gt;Promote loongarch64-unknown-linux-gnu to Tier 2 with host tools&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110909&quot;&gt;Skip &lt;code&gt;rustc&lt;&#x2F;code&gt; version detection on macOS&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110906&quot;&gt;fix: :bug: etc&#x2F;bash_complettion -&amp;gt; src&#x2F;etc&#x2F;... to avoid copy error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110871&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110853&quot;&gt;compiletest: add bpf-linker assembly support&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110851&quot;&gt;compiletest: emit assembly-output header in error&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110779&quot;&gt;configure.py: add flag for riscv{64,32}gc musl-root&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110773&quot;&gt;Reduce MIR dump file count for MIR-opt tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110744&quot;&gt;bootstrap: update paths cargo-credential crate&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110701&quot;&gt;Fix &lt;code&gt;x test core&lt;&#x2F;code&gt; when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110699&quot;&gt;Apply simulate-remapped-rust-src-base even if remap-debuginfo is set in config.toml&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110694&quot;&gt;Implement builtin # syntax and use it for offset_of!(...)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110693&quot;&gt;Migrate bootstrap to Clap-based argument parsing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110664&quot;&gt;stop &lt;code&gt;x fmt&lt;&#x2F;code&gt; formatting untracked directories&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110644&quot;&gt;Update tests for libtest &lt;code&gt;--format json&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110643&quot;&gt;[master] Bump stage0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110637&quot;&gt;Group some sections of our logs in github actions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110584&quot;&gt;Allow overwriting the sysroot compile flag in compile tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110576&quot;&gt;bootstrap: Unify test argument handling&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110574&quot;&gt; fix out-of-date comment about rpath in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110541&quot;&gt;Fix various configure bugs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110521&quot;&gt;Fix &lt;code&gt;x test lint-docs linkchecker&lt;&#x2F;code&gt; when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110519&quot;&gt;ci: Add support for dist-loongarch64-linux&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110516&quot;&gt;bootstrap: Update linux-raw-sys to 0.3.2&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110515&quot;&gt;Don&#x27;t special-case download-rustc in &lt;code&gt;maybe_install_llvm&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110507&quot;&gt;boostrap: print output during building tools&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110490&quot;&gt;Bump &lt;code&gt;download-ci-llvm-stamp&lt;&#x2F;code&gt; for loong support&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110485&quot;&gt;Fix bootstrap locking&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110478&quot;&gt;Support &lt;code&gt;x test --stage 1 ui-fulldeps&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110454&quot;&gt;Require impl Trait in associated types to appear in method signatures&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110444&quot;&gt;Add compare-output-lines-by-subset flag to compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110442&quot;&gt;Avoid including dry run steps in the build metrics&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110429&quot;&gt;Spelling src bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110427&quot;&gt;Parallelize initial Rust download in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110414&quot;&gt;[beta] Prepare Rust 1.70.0&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110403&quot;&gt;bolt: remove deprecated option value for split-functions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110370&quot;&gt;Move test files&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110365&quot;&gt;ship tools with sysroot&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110356&quot;&gt;Fix &lt;code&gt;x test rust-installer&lt;&#x2F;code&gt; when &lt;code&gt;cargo&lt;&#x2F;code&gt; is set to a relative path&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110319&quot;&gt;[compiletest] Add more test ignore reasons, &lt;code&gt;needs-&lt;&#x2F;code&gt; validation, and improved error messages&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110265&quot;&gt;Automatically update the LLVM submodule for musl target (and other places)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110263&quot;&gt;Add &lt;code&gt;libLLVM.so&lt;&#x2F;code&gt; to the target libdir when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110244&quot;&gt;Remove some unneeded imports &#x2F; qualified paths&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110241&quot;&gt;tidy: Issue an error when UI test limits are too high&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110235&quot;&gt;Fix &lt;code&gt;--extend-css&lt;&#x2F;code&gt; option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110229&quot;&gt;Fix no_std tests that load libc from the sysroot when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110227&quot;&gt;bootstrap: drop some windows features&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110221&quot;&gt;Greatly decrease the size of &lt;code&gt;rustc_driver.so&lt;&#x2F;code&gt; when debuginfo is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110197&quot;&gt;Do not attempt to commute comparison and cast to codegen discriminants&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110188&quot;&gt;Remove orphaned remove_dir_all implementation from rust-installer&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110186&quot;&gt;Update chrono&#x2F;spdx-rs&#x2F;time&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110177&quot;&gt;fix running Miri tests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110155&quot;&gt;Fix typos in librustdoc, tools and config files&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110152&quot;&gt;Start using &lt;code&gt;windows sys&lt;&#x2F;code&gt; for Windows FFI bindings in std&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110123&quot;&gt;&#x27;.&#x2F;configure&#x27; now checks if &#x27;config.toml&#x27; exists before writing to that destination&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110122&quot;&gt;Fix x check --stage 1 when download-ci-llvm=false&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110121&quot;&gt;Fix &lt;code&gt;x check --stage 1&lt;&#x2F;code&gt; when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110118&quot;&gt;download-rustc: Give a better error message if artifacts can&#x27;t be dowloaded&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110115&quot;&gt;compiletest: Use remap-path-prefix only in CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110114&quot;&gt;compiletest: Give a better error message if &lt;code&gt;node&lt;&#x2F;code&gt; isn&#x27;t installed&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110113&quot;&gt;Fix &lt;code&gt;x test ui --target foo&lt;&#x2F;code&gt; when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110108&quot;&gt;Add renaming of ignore-git to changelog&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110075&quot;&gt;Fix a typo in &lt;code&gt;config.example.toml&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110074&quot;&gt;Make the &amp;quot;codegen&amp;quot; profile of &lt;code&gt;config.toml&lt;&#x2F;code&gt; download and build llvm from source.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110059&quot;&gt;ignore_git → omit_git_hash&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110018&quot;&gt;Pass host linker to compiletest.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110008&quot;&gt;bump few deps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110004&quot;&gt;add &lt;code&gt;dont_check_failure_status&lt;&#x2F;code&gt; option in the compiler test&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109981&quot;&gt;Set commit information environment variables when building tools&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109960&quot;&gt;Fix buffer overrun in bootstrap and (test-only) symlink_junction&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109945&quot;&gt;Remove the use of &lt;code&gt;-use-gnu-stack&lt;&#x2F;code&gt; when BOLTing LLVM&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109888&quot;&gt;Remove optimal xz settings from CI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109880&quot;&gt;Fix macOS and Windows installers when rust-docs is not available.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109875&quot;&gt;Move most ui-fulldeps tests to ui&#x2F;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109871&quot;&gt;Include invocation start times&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109848&quot;&gt;submodule detection for proper fix on #96188&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109833&quot;&gt;bootstrap: replace &lt;code&gt;atty&lt;&#x2F;code&gt; with &lt;code&gt;is-terminal&lt;&#x2F;code&gt;, dedupe deps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109811&quot;&gt;Replace any existing &lt;code&gt;build&#x2F;host&lt;&#x2F;code&gt; symlink&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109761&quot;&gt;Drop binutils on powerpc-unknown-freebsd&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109741&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109702&quot;&gt;configure --set support list as arguments&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109677&quot;&gt;Stabilize raw-dylib, link_ordinal, import_name_type and -Cdlltool&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109667&quot;&gt;Always set &lt;code&gt;RUSTC_BOOTSTRAP&lt;&#x2F;code&gt; with &lt;code&gt;x doc&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109642&quot;&gt;check for missing codegen backeng config&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109577&quot;&gt;[rust-installer] Allow long link names in tar files&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109526&quot;&gt;LIBPATH is used as dylib&#x27;s path environment variable on AIX&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109525&quot;&gt;Rpath is not supported on AIX&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109484&quot;&gt;Bugfix: avoid panic on invalid json output from libtest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109448&quot;&gt;Download beta compiler toolchain in bootstrap if it doesn&#x27;t yet exist&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109444&quot;&gt;Change tidy error message for TODOs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109421&quot;&gt;Add &lt;code&gt;force&lt;&#x2F;code&gt; option for &lt;code&gt;--extern&lt;&#x2F;code&gt; flag&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109418&quot;&gt;Rename &#x27;src&#x2F;bootstrap&#x2F;native.rs&#x27; to llvm.rs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109373&quot;&gt;Set LLVM &lt;code&gt;LLVM_UNREACHABLE_OPTIMIZE&lt;&#x2F;code&gt; to &lt;code&gt;OFF&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109335&quot;&gt;[stable] 1.68.1 release&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109326&quot;&gt;Revert &amp;quot;Auto merge of #107224 - nikic:llvm-16, r=cuviper&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109295&quot;&gt;refactor &lt;code&gt;fn bootstrap::builder::Builder::compiler_for&lt;&#x2F;code&gt; logic&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109267&quot;&gt;Add tests for configure.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109256&quot;&gt;Check for llvm-tools before install&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109170&quot;&gt;Set &lt;code&gt;CMAKE_SYSTEM_NAME&lt;&#x2F;code&gt; for Linux targets&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109162&quot;&gt;extend &lt;code&gt;detect_src_and_out&lt;&#x2F;code&gt; test&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109133&quot;&gt;Make cargo a workspace&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109124&quot;&gt;Add &lt;code&gt;dist.compression-profile&lt;&#x2F;code&gt; option to control compression speed&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109111&quot;&gt;Create dirs for build_triple&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109055&quot;&gt;create &lt;code&gt;config::tests::detect_src_and_out&lt;&#x2F;code&gt; test for bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109044&quot;&gt;Prevent stable &lt;code&gt;libtest&lt;&#x2F;code&gt; from supporting &lt;code&gt;-Zunstable-options&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109033&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109031&quot;&gt;Rename &lt;code&gt;config.toml.example&lt;&#x2F;code&gt; to &lt;code&gt;config.example.toml&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108991&quot;&gt;add &lt;code&gt;enable-warnings&lt;&#x2F;code&gt; flag for llvm, and disable it by default.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108984&quot;&gt;bootstrap: document tidy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108963&quot;&gt;only call git on git checkouts during bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108955&quot;&gt;Add &lt;code&gt;internal_features&lt;&#x2F;code&gt; lint&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108905&quot;&gt;Validate &lt;code&gt;ignore&lt;&#x2F;code&gt; and &lt;code&gt;only&lt;&#x2F;code&gt; compiletest directive, and add human-readable ignore reasons&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108898&quot;&gt;Set &lt;code&gt;LIBC_CHECK_CFG=1&lt;&#x2F;code&gt; when building Rust code in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108866&quot;&gt;Force to use the stage 2 compiler  when config.download_rustc is set&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108865&quot;&gt;Add a &lt;code&gt;sysroot&lt;&#x2F;code&gt; crate to represent the standard library crates&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108862&quot;&gt;Bump bootstrap compiler to 1.69 beta&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108802&quot;&gt;Update host compiler to LLVM 16&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108796&quot;&gt;move personality to sys&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108792&quot;&gt;Add OpenHarmony targets&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108778&quot;&gt;x fmt: Don&#x27;t print all modified files if there&#x27;s more than 10&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108776&quot;&gt;Make &lt;code&gt;x test tidy&lt;&#x2F;code&gt; less noisy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108773&quot;&gt;x fmt: Only check modified files locally&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108772&quot;&gt;Speed up tidy quite a lot&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108714&quot;&gt;On nightly, dump ICE backtraces to disk&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108670&quot;&gt;[beta] stage0 bump and backports&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108665&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108659&quot;&gt;Include executed tests in the build metrics (and use a custom test display impl)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108644&quot;&gt;Allow setting hashmap toml values in &lt;code&gt;.&#x2F;configure&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108638&quot;&gt;Use dynamic dispatch for queries&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108632&quot;&gt;Omit unchanged options from config.toml in &lt;code&gt;configure.py&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108625&quot;&gt;More config.toml.example cleanups&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108619&quot;&gt;Remove the option to disable &lt;code&gt;llvm-version-check&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108618&quot;&gt;Rename &lt;code&gt;src&#x2F;etc&#x2F;vscode_settings.json&lt;&#x2F;code&gt; to &lt;code&gt;rust_analyzer_settings.json&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108616&quot;&gt;Sync codegen defaults with compiler defaults and add a ping message so they stay in sync&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108613&quot;&gt;Remove &lt;code&gt;llvm.skip-rebuild&lt;&#x2F;code&gt; option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108607&quot;&gt;Don&#x27;t use fd-lock on Solaris in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108581&quot;&gt;Add a new config flag, dist.include-mingw-linker.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108564&quot;&gt;Fix &lt;code&gt;x clean&lt;&#x2F;code&gt; with specific paths&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108534&quot;&gt;Import rust-installer &amp;amp; adjust compression settings&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108485&quot;&gt;move pal cfgs in f32 and f64 to sys&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108463&quot;&gt;bootstrap: Update the output of the &lt;code&gt;check&lt;&#x2F;code&gt; descriptions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108404&quot;&gt;support &lt;code&gt;x fmt&lt;&#x2F;code&gt; for sub and outside of rust directories&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108394&quot;&gt;Make &lt;code&gt;x doc --open&lt;&#x2F;code&gt; work on every book&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108308&quot;&gt;Allow building serde and serde_derive in parallel&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108302&quot;&gt;Revert #107834&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108288&quot;&gt;fix &lt;code&gt;build --stage 2 compiler&#x2F;rustc&lt;&#x2F;code&gt; panic&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108264&quot;&gt;no-fail-fast support for tool testsuites&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108262&quot;&gt;Distribute libntdll.a with windows-gnu toolchains&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108229&quot;&gt;[107049] Recognise top level keys in config.toml.example&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108212&quot;&gt;Download rustfmt regardless of rustc being set in config.toml&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108188&quot;&gt;Change src&#x2F;etc&#x2F;vscode_settings.json to always treat .&#x2F;library as the sysroot source&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108171&quot;&gt;Improve building compiler artifacts output&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108161&quot;&gt;Add &lt;code&gt;ConstParamTy&lt;&#x2F;code&gt; trait&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108037&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108021&quot;&gt;make x look for x.py if shell script does not exist&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107956&quot;&gt;Copy &lt;code&gt;bin&#x2F;*&lt;&#x2F;code&gt; and &lt;code&gt;lib&#x2F;*.dylib&lt;&#x2F;code&gt; files to &lt;code&gt;stage0-sysroot&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107948&quot;&gt;Allow shortcuts to directories to be used for .&#x2F;x.py fmt&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107905&quot;&gt;Pass arguments to &lt;code&gt;x&lt;&#x2F;code&gt; subcommands with &lt;code&gt;--&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107879&quot;&gt;Update LLVM submodule&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107876&quot;&gt;create symlink only for non-windows operating systems&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107873&quot;&gt;Emit JSON output for the building of bootstrap itself&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107848&quot;&gt;Split &lt;code&gt;x setup&lt;&#x2F;code&gt; sub-actions to CLI arguments&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107842&quot;&gt;Patch &lt;code&gt;build&#x2F;rustfmt&#x2F;lib&#x2F;*.so&lt;&#x2F;code&gt; for NixOS&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107841&quot;&gt;Handled snap curl issue inside Rust&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107834&quot;&gt;create symlink for legacy rustfmt path&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107819&quot;&gt;Set &lt;code&gt;rust-analyzer.check.invocationLocation&lt;&#x2F;code&gt; to &lt;code&gt;root&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107808&quot;&gt;bootstrap.py: fix build-failure message&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107790&quot;&gt; x.py fails all downloads that use a tempdir with snap curl #107722&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107757&quot;&gt;Allow automatically creating vscode &lt;code&gt;settings.json&lt;&#x2F;code&gt; with &lt;code&gt;x setup&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107743&quot;&gt;Release 1.67.1&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107723&quot;&gt;Apply BOLT optimizations without rebuilding LLVM&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107704&quot;&gt;Run &lt;code&gt;expand-yaml-anchors&lt;&#x2F;code&gt; in &lt;code&gt;x test tidy&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107657&quot;&gt;Add only modified subcommand for compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107656&quot;&gt;Bump rust-installer&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107651&quot;&gt;[WIP] Build &lt;code&gt;rustc&lt;&#x2F;code&gt; with a single CGU on x64 Linux&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107626&quot;&gt;Fix &lt;code&gt;x fix&lt;&#x2F;code&gt; on the standard library itself&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107618&quot;&gt;Add a linker argument back to boostrap.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107573&quot;&gt;Update the minimum external LLVM to 14&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107470&quot;&gt;Small bootstrap improvements&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107448&quot;&gt;When stamp doesn&#x27;t exist, should say Error, and print path to stamp file&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107397&quot;&gt;Gracefully exit if --keep-stage flag is used on a clean source tree&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107332&quot;&gt;Fix wording from &lt;code&gt;rustbuild&lt;&#x2F;code&gt; to &lt;code&gt;bootstrap&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107297&quot;&gt;Bump bootstrap compiler to 1.68&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107264&quot;&gt;Add option to include private items in library docs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107241&quot;&gt;Add &lt;code&gt;rust.lto=off&lt;&#x2F;code&gt; to bootstrap and set as compiler&#x2F;library default&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107239&quot;&gt;Bring tests back into rustc source tarball&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107236&quot;&gt;Add T-bootstrap label to tools&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107234&quot;&gt;Revisit fix_is_ci_llvm_available logic&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107224&quot;&gt;Upgrade to LLVM 16&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107200&quot;&gt;io: soften ‘at most one write attempt’ requirement in io::Write::write&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107164&quot;&gt;[beta] backport&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107127&quot;&gt;Enable sanitizers for s390x-linux&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107116&quot;&gt;consolidate bootstrap docs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107086&quot;&gt;Print PID holding bootstrap build lock on Linux&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107080&quot;&gt;bootstrap: cleanup the list of extra check cfgs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107071&quot;&gt;[beta] backport rollup&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107015&quot;&gt;Re-enable building rust-analyzer on riscv64&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107009&quot;&gt;Implement jump threading MIR opt&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106934&quot;&gt;Add offset_of! macro (RFC 3308)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106886&quot;&gt;Make stage2 rustdoc and proc-macro-srv disableable in x.py install&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106749&quot;&gt;Update cc to 1.0.77&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106733&quot;&gt;Revert &amp;quot;warn newer available version of the x tool&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106714&quot;&gt;remove unreachable error code &lt;code&gt;E0490&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106712&quot;&gt;make error emitted on &lt;code&gt;impl &amp;amp;Trait&lt;&#x2F;code&gt; nicer&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106707&quot;&gt;Remove duplicate sha-1 dependency&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106696&quot;&gt;Switch to &lt;code&gt;EarlyBinder&lt;&#x2F;code&gt; for &lt;code&gt;const_param_default&lt;&#x2F;code&gt; and &lt;code&gt;impl_trait_ref&lt;&#x2F;code&gt; queries&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106687&quot;&gt;[nightly] Fix CVE-2022-46176&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106686&quot;&gt;[beta] Fix CVE-2022-46176&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106685&quot;&gt;[stable] Prepare Rust 1.66.1 and fix CVE-2022-46176&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106646&quot;&gt;Fix aarch64-unknown-linux-gnu_ilp32 target&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106621&quot;&gt;enable &lt;code&gt;rust_2018_idioms&lt;&#x2F;code&gt; lint group for doctests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106619&quot;&gt;Fix unset e_flags in ELF files generated for AVR targets&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106610&quot;&gt;migrate compiler, bootstrap and compiletest to windows-rs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106520&quot;&gt;Update mdbook&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106476&quot;&gt;Add sanitizer support for modern iOS platforms&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106470&quot;&gt;tidy: Don&#x27;t include wasm32 in compiler dependency check&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106458&quot;&gt;Move src&#x2F;test to the root&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106457&quot;&gt;Adjust comments about pre-push.sh hook&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106429&quot;&gt;Add vendor to Fuchsia&#x27;s target triple&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106428&quot;&gt;Permit the MIR inliner to inline diverging functions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106415&quot;&gt;Handle non-existent upstream master branches in &lt;code&gt;x fmt&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106396&quot;&gt;Allow passing a specific date to &lt;code&gt;bump-stage0&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106387&quot;&gt;Revert &amp;quot;bootstrap: Get rid of &lt;code&gt;tail_args&lt;&#x2F;code&gt; in &lt;code&gt;stream_cargo&lt;&#x2F;code&gt;&amp;quot;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106381&quot;&gt;Jsondoclint: Add &lt;code&gt;--verbose&lt;&#x2F;code&gt; and &lt;code&gt;--json-output&lt;&#x2F;code&gt; options&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106334&quot;&gt;Fix tidy unittest.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106330&quot;&gt;Update cargo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106274&quot;&gt;Add JSON output to -Zdump-mono-stats&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106249&quot;&gt;Create &amp;quot;suggested tests&amp;quot; tool in &lt;code&gt;rustbuild&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106106&quot;&gt;Pass &lt;code&gt;branch.{branch}.remote=origin&lt;&#x2F;code&gt; to &lt;code&gt;git submodule update&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;105861&quot;&gt;Add Minimal Std implementation for UEFI&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;105736&quot;&gt;Test that the compiler&#x2F;library builds with validate-mir&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;105716&quot;&gt;Ndk update redux&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;105609&quot;&gt;Only include metadata for non-dynamic libraries in rustc-dev&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;105354&quot;&gt;Add deployment-target --print flag for Apple targets&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;104754&quot;&gt;Use &lt;code&gt;ThinVec&lt;&#x2F;code&gt; more in the AST&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;104748&quot;&gt;Ensure &lt;code&gt;lld&lt;&#x2F;code&gt; is supported with &lt;code&gt;download-ci-llvm&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;104658&quot;&gt;Update &lt;code&gt;rand&lt;&#x2F;code&gt; in the stdlib tests, and remove the &lt;code&gt;getrandom&lt;&#x2F;code&gt; feature from it.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;104645&quot;&gt;Add log-backtrace option to show backtraces along with logging&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;104552&quot;&gt;warn newer available version of the x tool&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;104543&quot;&gt;Migrate &lt;code&gt;codegen_ssa&lt;&#x2F;code&gt; to diagnostics structs - [Part 3]&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;104527&quot;&gt;Add more license annotations&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;104455&quot;&gt;Don&#x27;t drain-on-drop in DrainFilter impls of various collections.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;104385&quot;&gt;Raise minimum supported Apple OS versions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;104101&quot;&gt;Add initial libstd support for Xous&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;101947&quot;&gt;Don&#x27;t normalize in AstConv&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;101841&quot;&gt;Remove save-analysis.&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;101680&quot;&gt;Fix implied outlives bounds logic for projections&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;97320&quot;&gt;Stabilize const_ptr_read&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;96971&quot;&gt;Initial support for loongarch64-unknown-linux-gnu&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;91793&quot;&gt;socket ancillary data implementation for FreeBSD (from 13 and above).&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;81746&quot;&gt;Distribute cg_clif as rustup component on the nightly channel&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;&#x2F;details&gt;
&lt;p&gt;&lt;em&gt;Please note that the rollups are not considered in the Pull Request statistics.&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;p&gt;&lt;strong&gt;Most Notable Pull Requests Merged This Year Related to Bootstrap&lt;&#x2F;strong&gt;:&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109124&quot;&gt;Add &lt;code&gt;dist.compression-profile&lt;&#x2F;code&gt; option to control compression speed&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110263&quot;&gt;Add &lt;code&gt;libLLVM.so&lt;&#x2F;code&gt; to the target libdir when download-rustc is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107241&quot;&gt;Add &lt;code&gt;rust.lto=off&lt;&#x2F;code&gt; to bootstrap and set as compiler&#x2F;library default&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117043&quot;&gt;add bootstrap flag --skip-stage0-validation&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117966&quot;&gt;add safe compilation options&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116127&quot;&gt;add sanity checks for user write access on &lt;code&gt;x install&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109267&quot;&gt;Add tests for configure.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115986&quot;&gt;allow LTO on proc-macro crates with &lt;code&gt;-Zdylib-lto&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109667&quot;&gt;Always set &lt;code&gt;RUSTC_BOOTSTRAP&lt;&#x2F;code&gt; with &lt;code&gt;x doc&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115090&quot;&gt;Always use &lt;code&gt;os-release&lt;&#x2F;code&gt; rather than &lt;code&gt;&#x2F;lib&lt;&#x2F;code&gt; to detect &lt;code&gt;NixOS&lt;&#x2F;code&gt; (bootstrap)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107723&quot;&gt;Apply BOLT optimizations without rebuilding LLVM&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112012&quot;&gt;Avoid one &lt;code&gt;rustc&lt;&#x2F;code&gt; rebuild in the optimized build pipeline&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117197&quot;&gt;Avoid unnecessary builds&#x2F;rebuilds of &lt;code&gt;rust-demangler&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115898&quot;&gt;bootstrap major change detection implementation&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107080&quot;&gt;bootstrap: cleanup the list of extra check cfgs&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112297&quot;&gt;bootstrap: Disallow &lt;code&gt;--exclude test::std&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112528&quot;&gt;bootstrap: Don&#x27;t override &lt;code&gt;debuginfo-level = 1&lt;&#x2F;code&gt; to mean &lt;code&gt;line-tables-only&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117850&quot;&gt;bootstrap: simplify setting unstable-options for tools&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110576&quot;&gt;bootstrap: Unify test argument handling&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108463&quot;&gt;bootstrap: Update the output of the &lt;code&gt;check&lt;&#x2F;code&gt; descriptions&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119292&quot;&gt;bootstrap: use same make flags with rustdoc&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111955&quot;&gt;bootstrap: Various Step refactors&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116581&quot;&gt;Centralize command running in boostrap (part one)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117708&quot;&gt;check config file before prompts on &lt;code&gt;x setup&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114126&quot;&gt;clean stage-specific artifacts using x clean --stage&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113341&quot;&gt;Copy stage0 &lt;code&gt;rustc&lt;&#x2F;code&gt; binaries to &lt;code&gt;stage0-sysroot&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114875&quot;&gt;coverage: Anonymize line numbers in &lt;code&gt;run-coverage&lt;&#x2F;code&gt; test snapshots&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114843&quot;&gt;coverage: Explicitly test the coverage maps produced by codegen&#x2F;LLVM&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117700&quot;&gt;coverage: Rename the run-coverage test mode to coverage-run&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117484&quot;&gt;coverage: Unify &lt;code&gt;tests&#x2F;coverage-map&lt;&#x2F;code&gt; and &lt;code&gt;tests&#x2F;run-coverage&lt;&#x2F;code&gt; into &lt;code&gt;tests&#x2F;coverage&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106734&quot;&gt;Deny having src&#x2F;test exisiting in tidy&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119124&quot;&gt;don&#x27;t build &lt;code&gt;rust-analyzer-proc-macro-srv&lt;&#x2F;code&gt; on def config&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112256&quot;&gt;Don&#x27;t compile rustc to self-test compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113234&quot;&gt;Don&#x27;t pass --test-args to python -m unitest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118647&quot;&gt;dump bootstrap shims&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117435&quot;&gt;enable parallel rustc front end in nightly builds&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;106621&quot;&gt;enable rust_2018_idioms lint group for doctests&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;104748&quot;&gt;Ensure &lt;code&gt;lld&lt;&#x2F;code&gt; is supported with &lt;code&gt;download-ci-llvm&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116278&quot;&gt;Generalize LLD usage in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111976&quot;&gt;Generate docs for bootstrap itself&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111388&quot;&gt;Generate shell completions for bootstrap with Clap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110221&quot;&gt;Greatly decrease the size of &lt;code&gt;rustc_driver.so&lt;&#x2F;code&gt; when debuginfo is enabled&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108534&quot;&gt;Import rust-installer &amp;amp; adjust compression settings&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116998&quot;&gt;Improve android-ndk property interface&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119165&quot;&gt;improve container runner script&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111562&quot;&gt;Improve startup time of bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108659&quot;&gt;Include executed tests in the build metrics (and use a custom test display impl)&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113640&quot;&gt;Make &lt;code&gt;nodejs&lt;&#x2F;code&gt; control the default for RustdocJs tests instead of a hard-off switch&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113244&quot;&gt;Make Rust Analyzer tests faster by compiling less code&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;105844&quot;&gt;Make the x tool use the x and x.ps1 scripts&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110693&quot;&gt;Migrate bootstrap to Clap-based argument parsing&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113592&quot;&gt;Move BOLT from &lt;code&gt;bootstrap&lt;&#x2F;code&gt; to &lt;code&gt;opt-dist&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111348&quot;&gt;new tool rustdoc-gui-test&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116352&quot;&gt;Optimize librustc_driver.so with BOLT&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110427&quot;&gt;Parallelize initial Rust download in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107169&quot;&gt;Pass &lt;code&gt;--locked&lt;&#x2F;code&gt; to the x test tidy call&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;107905&quot;&gt;Pass arguments to &lt;code&gt;x&lt;&#x2F;code&gt; subcommands with &lt;code&gt;--&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112235&quot;&gt;Port PGO&#x2F;LTO&#x2F;BOLT optimized build pipeline to Rust&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116983&quot;&gt;Prepare the &lt;code&gt;bootstrap&lt;&#x2F;code&gt; tool for the new check-cfg syntax&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118187&quot;&gt;Recompile LLVM when it changes in the git sources&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;115872&quot;&gt;Remap Cargo dependencies to &#x2F;rust&#x2F;deps&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108613&quot;&gt;Remove &lt;code&gt;llvm.skip-rebuild&lt;&#x2F;code&gt; option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119020&quot;&gt;remove hex dependency in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118703&quot;&gt;Remove unused bootstrap config option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119373&quot;&gt;Remove usage of deprecated &lt;code&gt;missing-tools&lt;&#x2F;code&gt; bootstrap flag&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;116196&quot;&gt;reorganize&#x2F;refactor bootstrap codebase&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;109811&quot;&gt;Replace any existing &lt;code&gt;build&#x2F;host&lt;&#x2F;code&gt; symlink&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111979&quot;&gt;Respect CARGOFLAGS in bootstrap.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111495&quot;&gt;Run tests on PGO&#x2F;LTO&#x2F;BOLT optimized dist artifacts&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;113185&quot;&gt;Set &lt;code&gt;channel = nightly&lt;&#x2F;code&gt; in dist profile&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108898&quot;&gt;Set LIBC_CHECK_CFG=1 when building Rust code in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110365&quot;&gt;ship tools with sysroot&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119441&quot;&gt;Simplify bootstrap &lt;code&gt;--check-cfg&lt;&#x2F;code&gt; arguments&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118322&quot;&gt;skip {tidy,compiletest,rustdoc-gui} based tests for &lt;code&gt;DocTests::Only&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119413&quot;&gt;solaris support on bootstrap lock&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;108772&quot;&gt;Speed up tidy quite a lot&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;117723&quot;&gt;speed up x clean&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111975&quot;&gt;Stop normalizing so many different prefixes&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114305&quot;&gt;Strip unexpected debuginfo from &lt;code&gt;libLLVM.so&lt;&#x2F;code&gt; and &lt;code&gt;librustc_driver.so&lt;&#x2F;code&gt; when not requesting any debuginfo&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110478&quot;&gt;Support &lt;code&gt;x test --stage 1 ui-fulldeps&lt;&#x2F;code&gt;&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;112281&quot;&gt;Test the cargo args generated by bootstrap.py&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110241&quot;&gt;tidy: Issue an error when UI test limits are too high&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;114048&quot;&gt;Update to LLVM 17&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;111223&quot;&gt;Use &lt;code&gt;free-args&lt;&#x2F;code&gt; consistently in bootstrap&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;118132&quot;&gt;utilize stdlib debug assertion status in compiletest&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;119378&quot;&gt;utilize the unused llvm-tools option&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;&lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;pull&#x2F;110979&quot;&gt;windows: kill rust-analyzer-proc-macro-srv before deleting stage0 directory&lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h2 id=&quot;primary-goals-for-2024&quot;&gt;Primary Goals for 2024&lt;&#x2F;h2&gt;
&lt;p&gt;Plans for Bootstrap Team in 2024 will be designed (but not limited) around the topics outlined below.&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;h3 id=&quot;refactor-standard-library-bootstrapping&quot;&gt;Refactor Standard Library Bootstrapping&lt;&#x2F;h3&gt;
&lt;p&gt;As part of &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;compiler-team&#x2F;issues&#x2F;619&quot;&gt;compiler-team&#x2F;issues&#x2F;619: Redesign bootstrap stages&lt;&#x2F;a&gt; proposal, we have a plan to utilize the beta standard library on stage0 instead of compiling it from the current source using the beta compiler. Standard library should only be built from current source in case where stage is not 0.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;&lt;h3 id=&quot;migration-of-python-scripts-to-rust&quot;&gt;Migration of Python Scripts to Rust&lt;&#x2F;h3&gt;
&lt;p&gt;Removing Python scripts from bootstrap and relying entirely on Rust. For additional context, please refer to &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;94829&quot;&gt;rust-lang&#x2F;rust&#x2F;issues&#x2F;94829&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;&lt;h3 id=&quot;custom-target-runners&quot;&gt;Custom Target Runners&lt;&#x2F;h3&gt;
&lt;p&gt;Support of &lt;a href=&quot;https:&#x2F;&#x2F;doc.rust-lang.org&#x2F;cargo&#x2F;reference&#x2F;config.html#targettriplerunner&quot;&gt;CARGO_TARGET_&lt;triple&gt;_RUNNER&lt;&#x2F;a&gt; from Cargo on bootstrap tests which should improve the experience of cross-platform tests. For additional context, please refer to &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;110537&quot;&gt;rust-lang&#x2F;rust&#x2F;issues&#x2F;110537&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;&lt;h3 id=&quot;support-for-building-and-testing-the-standard-library-with-panic-abort&quot;&gt;Support for Building and Testing the Standard Library with &lt;code&gt;panic=abort&lt;&#x2F;code&gt;&lt;&#x2F;h3&gt;
&lt;p&gt;Improving bootstrap capability on standard library with &lt;code&gt;panic=abort&lt;&#x2F;code&gt; by providing an interface that allows users to build or test the standard library with their preferred panic strategy. For additional context, please refer to &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;84766&quot;&gt;rust-lang&#x2F;rust&#x2F;issues&#x2F;84766&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;&lt;h3 id=&quot;feature-gating&quot;&gt;Feature Gating&lt;&#x2F;h3&gt;
&lt;p&gt;Developing a mechanism to manage all bootstrap features through a single interface from the build configuration. For additional context, please refer to &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;102600&quot;&gt;rust-lang&#x2F;rust&#x2F;issues&#x2F;102600&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;&lt;h3 id=&quot;configuration-layer&quot;&gt;Configuration Layer&lt;&#x2F;h3&gt;
&lt;p&gt;Currently, we don&#x27;t have an interface for enabling different configurations for each stage. Until now, we have been implementing temporary solutions and workarounds (such as adding stage-based environment variables) when there was a need to modify options on specific stages. We will be enhancing the configuration layer with the support of stage-based options. For additional context, please refer to &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;rust-lang&#x2F;rust&#x2F;issues&#x2F;112679&quot;&gt;rust-lang&#x2F;rust&#x2F;issues&#x2F;112679&lt;&#x2F;a&gt;.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;&lt;h3 id=&quot;increasing-test-coverage&quot;&gt;Increasing Test Coverage&lt;&#x2F;h3&gt;
&lt;p&gt;Expanding the test coverage for bootstrapping, reducing the team concerns on code-review and development.&lt;&#x2F;p&gt;
&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
</description>
      </item>
      <item>
          <title>An Experimental Package Manager For Operating Systems: LPM</title>
          <pubDate>Fri, 10 Nov 2023 00:00:00 +0000</pubDate>
          <author>contact@onurozkan.dev</author>
          <link>https://onurozkan.dev/blog-posts/an-experimental-system-package-manager-lpm/</link>
          <guid>https://onurozkan.dev/blog-posts/an-experimental-system-package-manager-lpm/</guid>
          <description>&lt;h1 align=&quot;center&quot;&gt;An Experimental Package Manager For Operating Systems: LPM&lt;&#x2F;h1&gt;
&lt;hr&gt;
&lt;p&gt;Today, I&#x27;m excited to introduce the project I&#x27;ve been working on lately called LPM (Lod Package Manager). Designed to be simple, fast, and adaptable which aims to change the way we manage software packages on UNIX like operating systems.&lt;&#x2F;p&gt;
&lt;p&gt;Contributions are absolutely welcome at &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;lodosgroup&#x2F;lpm&quot;&gt;github.com&#x2F;lodosgroup&#x2F;lpm&lt;&#x2F;a&gt;!&lt;&#x2F;p&gt;
&lt;h2 id=&quot;overview&quot;&gt;Overview&lt;&#x2F;h2&gt;
&lt;p&gt;Because package managers are among the most critical tools for operating systems, they shold be very carefully designed from bottom to top. I aimed to make LPM super simple for both OS users and package or distribution release maintainers, while also incorporating the advantages of current modern technologies and algorithms. For package compression, LPM uses LZ4; for building packages it only requires JSON and BASH experience. LPM&#x27;s dependency tree includes only LZ4 and SQLite3, which are dynamically linked at runtime to avoid increasing the binary size of LPM. These libraries were created under the &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;lodosgroup&quot;&gt;LodOS Group&lt;&#x2F;a&gt; (the group which LPM is also classified), indicating that they are carefully designed and minimized for specific use with LPM.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;Package install and delete demonstration in docker&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;p&gt;&lt;img
    align=&quot;center&quot;
    src=&quot;&#x2F;media&#x2F;an-experimental-package-manager-for-operating-systems-lpm&#x2F;lpm-demo.svg&quot;
    alt=&quot;lpm simple demonstration&quot;
&#x2F;&gt;&lt;&#x2F;p&gt;
&lt;p&gt;I haven&#x27;t released any stable version yet, therefore I push for as many beneficial improvements as possible, even if they offer small marginal benefits in terms of security, performance, or binary size. Following this extremist ideology, LPM appears much quicker than any existing package managers today, even in its current state (experimental, not highly optimized, etc).&lt;&#x2F;p&gt;
&lt;h2 id=&quot;dynamic-module-support&quot;&gt;Dynamic Module Support&lt;&#x2F;h2&gt;
&lt;p&gt;LPM supports dynamic modules that are only loaded when invoked, such as &lt;code&gt;lpm --module builder --build .&lt;&#x2F;code&gt;. This means you can write a module for LPM in any language that can build a dynamic&#x2F;shared library compatible with the C ABI. For example, LPM&#x27;s builder module is written in Go. Any implementation not directly related to core package management will be implemented as an optional LPM extension to avoid bloating LPM directly.&lt;&#x2F;p&gt;
&lt;p&gt;To understand how it&#x27;s done, you can find examples in various programming languages at &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;lodosgroup&#x2F;lpm-modules&#x2F;tree&#x2F;main&#x2F;.example-module&quot;&gt;github.com&#x2F;lodosgroup&#x2F;lpm-modules&#x2F;tree&#x2F;main&#x2F;.example-module&lt;&#x2F;a&gt;. With this approach, anything can be implemented&#x2F;supported on LPM without bloating the core package management layer. For instance, I can support installing RPM and DEB packages(for sure this is challenging, but it&#x27;s possible and supported from the design of LPM) by writing modules for them (e.g., &lt;code&gt;lpm --module dpkg install lzip.deb&lt;&#x2F;code&gt;).&lt;&#x2F;p&gt;
&lt;h2 id=&quot;no-custom-scripting-language&quot;&gt;No Custom Scripting Language&lt;&#x2F;h2&gt;
&lt;p&gt;If you have average experience with BASH and JSON, you already know how to release&#x2F;build packages with LPM. I don&#x27;t want to complicate things by requiring people to learn and use custom scripting language for maintaining system packages. Features in LPM will be presented on the CLI, and there is no need to learn or write code for installing&#x2F;maintaining system packages.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;written-in-rust&quot;&gt;Written in Rust&lt;&#x2F;h2&gt;
&lt;p&gt;Rust is a good choice for writing a system level project for a few key reasons. Rust&#x27;s focus on preventing common programming mistakes ensures that the package manager is reliable and less prone to errors that can cause system issues. The language&#x27;s emphasis on security, facilitated by its ownership system, helps create a more robust and secure package manager. Furthermore, Rust&#x27;s performance characteristics make it well-suited for tasks like managing software installations and updates, ensuring that the package manager operates efficiently even at a large scale. Additionally, we won&#x27;t need to rewrite it in Rust in the future (you did smile accept it).&lt;&#x2F;p&gt;
&lt;h2 id=&quot;it-s-just-fast-as&quot;&gt;It&#x27;s Just Fast as ****&lt;&#x2F;h2&gt;
&lt;p&gt;Even though xbps is a very fast package manager (likely the fastest one, assuming LPM is not ready for real usage and no one knows it yet), let&#x27;s compare the performance in simple operations.&lt;&#x2F;p&gt;
&lt;p&gt;For what is worth in this example LPM install one extra package called &lt;code&gt;gc&lt;&#x2F;code&gt;.&lt;&#x2F;p&gt;
&lt;p&gt;Host System:&lt;&#x2F;p&gt;
&lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;an-experimental-package-manager-for-operating-systems-lpm&#x2F;host-system.jpeg&quot; alt=&quot;lpm benchmark with remote package&quot; &#x2F;&gt;
&lt;p&gt;&lt;em&gt;LPM Results when installing from remote repository(network overhead is involved)&lt;&#x2F;em&gt;:&lt;&#x2F;p&gt;
&lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;an-experimental-package-manager-for-operating-systems-lpm&#x2F;lpm-remote.jpeg&quot; alt=&quot;lpm benchmark with remote package&quot; &#x2F;&gt;
&lt;p&gt;&lt;em&gt;XBPS Results when installing from remote repository(network overhead is involved)&lt;&#x2F;em&gt;:&lt;&#x2F;p&gt;
&lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;an-experimental-package-manager-for-operating-systems-lpm&#x2F;xbps-remote.jpeg&quot; alt=&quot;xbps benchmark with remote package&quot; &#x2F;&gt;
&lt;p&gt;&lt;em&gt;LPM when installing with cache(from FS where network overhead is not involved)&lt;&#x2F;em&gt;:&lt;&#x2F;p&gt;
&lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;an-experimental-package-manager-for-operating-systems-lpm&#x2F;lpm-cached.jpeg&quot; alt=&quot;lpm benchmark with cached package&quot; &#x2F;&gt;
&lt;p&gt;&lt;em&gt;XBPS when installing with cache(from FS where network overhead is not involved)&lt;&#x2F;em&gt;:&lt;&#x2F;p&gt;
&lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;an-experimental-package-manager-for-operating-systems-lpm&#x2F;xbps-cached.jpeg&quot; alt=&quot;xbps benchmark with cached package&quot; &#x2F;&gt;
&lt;p&gt;You may don&#x27;t care about the package manager performance for your OS, but CI runners do! Specially the paid ones..&lt;&#x2F;p&gt;
&lt;h2 id=&quot;architecture-agnostic-repository-in-progress&quot;&gt;Architecture Agnostic Repository [in progress]&lt;&#x2F;h2&gt;
&lt;p&gt;LPM and its builder will support both prebuilt and source packages simultaneously. Currently, we only have the &lt;code&gt;linux-amd64-default&lt;&#x2F;code&gt; repository. Once this feature is implemented, we will introduce another repository named &lt;code&gt;source&lt;&#x2F;code&gt;. This repository will contain packages as sources, giving you the option to install your package by compiling it. This approach allows you to compile programs for directly your system with specific optimization build flags&#x2F;args.&lt;&#x2F;p&gt;
&lt;p&gt;For example, if you are an ARM user and the package you are looking for isn&#x27;t in the ARM repository (which is a common occurrence with other package manager repositories), you can still install it with LPM, as long as the project codebase itself supports your CPU architecture. This means that both ARM and AMD64 users can use the same source repository and install the same package with the same command. This method of installation provides you with the ability to change build flags and arguments, giving you complete control over the compilation process.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;workspaces-isolation-and-efficient-disk-usage-upcoming&quot;&gt;Workspaces (Isolation and Efficient Disk Usage) [upcoming]&lt;&#x2F;h2&gt;
&lt;p&gt;With workspaces, you will be able to create a workspace, let&#x27;s say &amp;quot;development-space&amp;quot;, and install working tools&#x2F;programs there. When needed, everything contained in that space can be removed with a single LPM command. Most of the time, you don&#x27;t use the majority of your installed packages on your system, and they all consume disk space. With workspaces, when you don&#x27;t activate them, they will be kept in a compressed format. So, when you have multiple workspaces and they are not activated, they will be stored in a compressed format, taking up much less disk space than it would if you installed everything on the system directly(like you do right now). This feature is not yet implemented and is planned to be introduced with the beta release.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;snapshots-upcoming&quot;&gt;Snapshots [upcoming]&lt;&#x2F;h2&gt;
&lt;p&gt;LPM uses SQLite3 to store package, repository, and internal information. Similar to the lock files used by language package managers, LPM will provide you with a dump of your system&#x27;s status from the database. Wit that, you will be able to use this dump to restore all your packages and workspaces on another system with single LPM command. This feature is not yet implemented and is planned to be introduced with the beta release.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;rootless-mode-upcoming&quot;&gt;Rootless Mode [upcoming]&lt;&#x2F;h2&gt;
&lt;p&gt;Not everything absolutely needs to be installed with root permissions; this is a relatively basic&#x2F;simple yet highly beneficial task. This feature is not yet implemented and is planned to be introduced with the beta release (yeah this is copy-pasted three times, sorry for that).&lt;&#x2F;p&gt;
&lt;h2 id=&quot;q-why-did-i-do-something-like-this-when-i-could-have-a-good-life&quot;&gt;Q: Why did I do something like this when I could have a good life?&lt;&#x2F;h2&gt;
&lt;p&gt;I am crazy.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;q-what-s-coming-up-next&quot;&gt;Q: What&#x27;s coming up next?&lt;&#x2F;h2&gt;
&lt;p&gt;After the beta release, I plan to develop a proper pid0 (init process handler) that aligns with the same philosophy as LPM and is compatible with systemd unit configurations (only the core parts). Together with LPM, I hope to make a Linux Distribution called LodOS. I am definitely not going to keep these projects to myself until the end. I simply want to contribute something valuable to the community. It&#x27;s not personal my friend; it&#x27;s strictly free and open source!&lt;&#x2F;p&gt;
</description>
      </item>
      <item>
          <title>Announcement: Stepping Up as Co-Lead of Rust&#x27;s Bootstrap Team</title>
          <pubDate>Sat, 02 Sep 2023 00:00:00 +0000</pubDate>
          <author>contact@onurozkan.dev</author>
          <link>https://onurozkan.dev/blog-posts/announcement-stepping-up-co-lead-rust-bootstrap-team/</link>
          <guid>https://onurozkan.dev/blog-posts/announcement-stepping-up-co-lead-rust-bootstrap-team/</guid>
          <description>&lt;h1 align=&quot;center&quot;&gt;Announcement: Stepping Up as Co-Lead of Rust&#x27;s Bootstrap Team&lt;&#x2F;h1&gt;
&lt;hr&gt;
&lt;p&gt;I want to share some exciting news with the Open Source community. For the past year, I have been actively involved in contributing and maintaining the Rust Language, with a primary focus on the bootstrapping Rust compiler as a dedicated member of the Bootstrap Team.&lt;&#x2F;p&gt;
&lt;p&gt;Just recently, our team made the decision to introduce a Co-Leadership, and I am thrilled to announce that I have been selected to this role for the Bootstrap Team. This change means that I will be joining our existing lead in a shared leadership role.&lt;&#x2F;p&gt;
&lt;p&gt;During the first couple of weeks, my main priority will be to conduct a comprehensive review going through every aspect of compiler bootstrapping and having in-depth discussions with my team members to make informed decisions. Subsequently, I will use the insights gained from this review to create a roadmap and establish future development plans for the bootstrap team.&lt;&#x2F;p&gt;
&lt;p&gt;I am absolutely thrilled and honored to take on this role, and I am determined to do my best to advance this incredible project! Thank you for your trust and support.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;For the technical understanding of compiler bootstrapping, refer to the following sources:&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;&lt;&#x2F;p&gt;
&lt;ul&gt;
&lt;li&gt;What does &#x27;bootstrapping&#x27; mean in the context of compilers: &lt;a target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Bootstrapping_(compilers)&quot;&gt; https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Bootstrapping_(compilers) &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;Bootstrapping the Rust compiler: &lt;a target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;rustc-dev-guide.rust-lang.org&#x2F;building&#x2F;bootstrapping.html&quot;&gt; https:&#x2F;&#x2F;rustc-dev-guide.rust-lang.org&#x2F;building&#x2F;bootstrapping&#x2F;what-bootstrapping-does.html &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;How to build and run the Rust compiler: &lt;a target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;rustc-dev-guide.rust-lang.org&#x2F;building&#x2F;how-to-build-and-run.html&quot;&gt; https:&#x2F;&#x2F;rustc-dev-guide.rust-lang.org&#x2F;building&#x2F;how-to-build-and-run &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;li&gt;RustConf 2022 - Bootstrapping: The once and future compiler by Joshua Nelson: &lt;a target=&quot;_blank&quot; href=&quot;https:&#x2F;&#x2F;youtu.be&#x2F;oUIjG-y4zaA&quot;&gt; https:&#x2F;&#x2F;youtu.be&#x2F;oUIjG-y4zaA &lt;&#x2F;a&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
</description>
      </item>
      <item>
          <title>Watches Beyond Time: A Visual Tour of My Watch Collection</title>
          <pubDate>Tue, 15 Aug 2023 00:00:00 +0000</pubDate>
          <author>contact@onurozkan.dev</author>
          <link>https://onurozkan.dev/blog-posts/watches-beyond-time-visual-tour-my-watch-collection/</link>
          <guid>https://onurozkan.dev/blog-posts/watches-beyond-time-visual-tour-my-watch-collection/</guid>
          <description>&lt;h1 align=&quot;center&quot;&gt;Watches Beyond Time: A Visual Tour of My Watch Collection&lt;&#x2F;h1&gt;
&lt;hr&gt;
&lt;h2 style=&quot;color: #6495ED;&quot;&gt;What is it all about?&lt;&#x2F;h2&gt;
&lt;p&gt;Since ~7 years, I&#x27;ve found myself falling in love with something special: wristwatches. Right now I have 6 watches in my collection, and I enjoy wearing each one of them. Three of them are perfect for everyday wear and the other three are different – they&#x27;re vintage watches, which means they were made a long time ago.&lt;&#x2F;p&gt;
&lt;p&gt;Some people might not understand why buying more when you already have 1 or 2 watches. They might think it&#x27;s just waste of money. Sometimes, I wish I could see it that way too. I totally agree with Kevin O&#x27;Leary when he says, &amp;quot;Watch collecting is a horrible disease, it&#x27;s a virus. Once you are cursed with it, your life is miserable.&amp;quot;. Once you dive into the world of watches, they become more than just time tellers. It&#x27;s about the amazing work that goes into making them. It&#x27;s about the tiny pieces inside that all work together to keep time ticking. And for vintage watches, wearing them is like feeling a connection to the past. I think about all the people who might have worn them before me. Who was the first person to wear this watch? And when I look at the gears and parts inside, it&#x27;s incredible to think they&#x27;ve been working for so many years. Some of the vintage watches haven&#x27;t been serviced, yet they still work. It&#x27;s like wearing a piece of history on my wrist. It makes me wonder about the stories these watches could tell if they could talk. For me it&#x27;s hard to put into words, but watches hold something special that goes beyond just telling time. Specially the vintage ones, they hold a piece of history that can carry with you every day.&lt;&#x2F;p&gt;
&lt;hr&gt;
&lt;h2 align=&quot;center&quot; style=&quot;color: #6495ED;&quot;&gt;Collection Items&lt;&#x2F;h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;h3 id=&quot;tissot-prx-powermatic-80&quot;&gt;Tissot PRX Powermatic 80&lt;&#x2F;h3&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Year of production:&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt; 2021&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Reference number:&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt; T1374072103100&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Movement&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;: Automatic&lt;&#x2F;p&gt;
&lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;11.png&quot;&#x2F;&gt;
  &lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;12.png&quot;&#x2F;&gt;
  &lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;14.png&quot;&#x2F;&gt;
  &lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;16.png&quot;&#x2F;&gt;
  &lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;15.png&quot;&#x2F;&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;&lt;h3 id=&quot;seiko-5-millitary-automatic&quot;&gt;Seiko 5 Millitary Automatic&lt;&#x2F;h3&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Year of production:&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt; 2021&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Reference number:&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt; SNK809K2&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Movement&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;: Automatic&lt;&#x2F;p&gt;
&lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;3.png&quot;&#x2F;&gt;
  &lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;2.png&quot;&#x2F;&gt;
  &lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;1.png&quot;&#x2F;&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;&lt;h3 id=&quot;omega-x-swatch-mission-to-mercury&quot;&gt;Omega x Swatch: Mission to Mercury&lt;&#x2F;h3&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Year of production:&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt; 2022&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Reference number:&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt; SO33A100&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Movement&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;: Quartz&lt;&#x2F;p&gt;
&lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;6.png&quot;&#x2F;&gt;
  &lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;4.png&quot;&#x2F;&gt;
  &lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;5.png&quot;&#x2F;&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;&lt;h3 id=&quot;zenith-port-royal-gold-day-date&quot;&gt;Zenith Port Royal Gold Day Date&lt;&#x2F;h3&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Year of production:&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt; 1970s&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Reference number:&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt; 20-0120-346&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Movement&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;: Automatic&lt;&#x2F;p&gt;
&lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;25.png&quot;&#x2F;&gt;
  &lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;24.png&quot;&#x2F;&gt;
  &lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;22.png&quot;&#x2F;&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;&lt;h3 id=&quot;omega-automatic-gold-day-date&quot;&gt;Omega Automatic Gold Day Date&lt;&#x2F;h3&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Year of production:&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt; 1972&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Reference number:&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt; 166.0117&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Movement&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;: Automatic&lt;&#x2F;p&gt;
&lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;9.png&quot;&#x2F;&gt;
  &lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;8.png&quot;&#x2F;&gt;
  &lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;10.png&quot;&#x2F;&gt;
&lt;&#x2F;li&gt;
&lt;li&gt;&lt;h3 id=&quot;zenith-surf-sub-sea&quot;&gt;Zenith Surf Sub Sea&lt;&#x2F;h3&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Year of production:&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt; 1976&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Reference number:&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt; 01-1431-380&lt;&#x2F;p&gt;
&lt;p&gt;&lt;em&gt;&lt;strong&gt;Movement&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;: Automatic&lt;&#x2F;p&gt;
&lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;18.png&quot;&#x2F;&gt;
  &lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;17.png&quot;&#x2F;&gt;
  &lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;19.png&quot;&#x2F;&gt;
  &lt;img src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;watches-beyond-time-visual-tour-my-watch-collection&#x2F;20.png&quot;&#x2F;&gt;&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
</description>
      </item>
      <item>
          <title>Problems of the Modern Web: Unraveling the Chaos</title>
          <pubDate>Sun, 30 Jul 2023 00:00:00 +0000</pubDate>
          <author>contact@onurozkan.dev</author>
          <link>https://onurozkan.dev/blog-posts/problems-of-the-modern-web-unraveling-the-chaos/</link>
          <guid>https://onurozkan.dev/blog-posts/problems-of-the-modern-web-unraveling-the-chaos/</guid>
          <description>&lt;h1 align=&quot;center&quot;&gt;Problems of the Modern Web: Unraveling the Chaos&lt;&#x2F;h1&gt;
&lt;h2 align=&quot;center&quot;&gt;Introduction&lt;&#x2F;h2&gt;
&lt;p&gt;The World Wide Web, the place we use every day on the internet is changing, but not for the better. It was once seen as a fantastic way to connect with others and learn new things. But for quite some time now, it&#x27;s turning into something not so great. The modern web has numerous problems we can to talk about. However, we will focus on the critical ones to keep it brief and enjoyable. The topic will be addressed in two phases, beginning with the primary reasons that lead to the problems we will highlight.&lt;&#x2F;p&gt;
&lt;h2 align=&quot;center&quot; style=&quot;color: blue;&quot;&gt;Reasons&lt;&#x2F;h2&gt;
&lt;p&gt;&lt;strong&gt;Release Rushing&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Release rushing on projects can lead to significant problems. By prioritizing speed over quality and preparation, companies may miss the critical steps like testing, user feedback and iterative improvements. Which results in many of the problems we will talk about.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;strong&gt;Low-Budget Teams&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Many companies try to save money by starting their projects with limited budgets, but this often leads to difficulties in forming a skilled technical team. It may seem cost-effective initially, but it ultimately impacts every aspects of the project. Unfortunately, many company&#x2F;project leaders realize the consequences only when their projects make headlines for the bad reasons for them.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;strong&gt;Many of No-Code Platforms&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;p&gt;In recent times, no-code platforms have made it very easy for anyone to start any kind of project including e-commerce without technical expertise. It&#x27;s great because more people can join the digital market quickly. However, this comfort comes with challenges in some areas, especially concerning the security of user data.&lt;&#x2F;p&gt;
&lt;p&gt;These platforms hide the technical stuff, so the platform users might not understand the security risks. Also, many of these tools create products that don&#x27;t work efficiently. They use more hardware power than necessary and still results in poor performance.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;strong&gt;Unrealistic Design Decisions&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;p&gt;For building maintainable and well-structured web projects, developers often adopt various design patterns, architectures and frameworks without thoroughly understanding their suitability for their specific use cases.
While some patterns and best practices work well for specific scenarios, it&#x27;s essential to carefully evaluate their applicability to individual projects.&lt;&#x2F;p&gt;
&lt;p&gt;However, blindly following the latest trends or the notion that &amp;quot;x pattern is must for the maintainibility&amp;quot; often causes projects being end up with unnecessary complexity, lack of performance, excessive resource usage and the bloated codebases which makes maintanince even harder for the project team.&lt;&#x2F;p&gt;
&lt;h2 align=&quot;center&quot; style=&quot;color: red;&quot;&gt;Problems&lt;&#x2F;h2&gt;
&lt;p&gt;&lt;strong&gt;The Bloat Web&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;p&gt;The ease of accessing simple information, such as &amp;quot;breaking news&amp;quot; on the web has been hindered by the pervasive problem of bloat and slowdowns. Despite their straightforward nature many websites suffer from excessive resource loading, intrusive pop-ups and unoptimized media content. Third-party dependencies and the lack of mobile optimization further contribute to the sluggish user experience. These issues including latency and server load, affect even lightweight sites, frustrating users and disrupting their cooking process.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;strong&gt;Lack of Technical Modernization&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Usually, companies focus on updating only the visible parts of a web project like the user interface, while neglecting to implement modern solutions for the technical aspects. Despite hardware technology improving every year, we rarely see its results in web performance. It&#x27;s crucial to modernize not only what users see but also the underlying technical components of the project, leveraging the advancements in hardware technology. In fact, as hardware technology improves, projects often get worse using more hardware power for the same functionality. When you try to discuss this with the manager of such projects, the common response you will get is &amp;quot;BECAUSE HARDWARE IS CHEAP!!&amp;quot;.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;strong&gt;Network Overload&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;p&gt;The web&#x27;s efficiency has become increasingly questionable as even the simple websites and online services demand more from the network than necessary. This issue of excessive network usage often referred to as &amp;quot;web bloat&amp;quot; arises from the tendency of websites to download an unnecessary abundance of files and data during page initializations. As a result, users experience frustratingly slow load times and heightened strain on their network bandwidth.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;strong&gt;Ad Invasion&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;p&gt;The internet is flooded with ads and it&#x27;s becoming harder to distinguish between what&#x27;s genuine content and what&#x27;s an advertisement on websites. Many websites are incorporating a massive number of ads, making it challenging for users to know what&#x27;s real information and what&#x27;s a paid promotion. We encounter pop-ups, sponsored content, native ads and other promotions making it difficult to access the content we want without disruptions. This overwhelming presence of ads negatively impacts the user experience.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;strong&gt;UI&#x2F;UX Complexity Crisis&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Web design has evolved, but it&#x27;s becoming a problem. Many websites are now too complicated, making it hard for users to find what they need. There is too much stuff on the screen and important things are hidden. The way you are supposed to use the site is not clear and often it can be confusing. This usually impacts the initial load as taking longer time which annoys the users.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;strong&gt;Service Cost: Trading Away YOUR PRIVACY&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Numerous websites collect significant amounts of personal information without seeking permission, leading to privacy concerns. They obscure the extent of data collection and share it with third parties leaving users feeling powerless to protect their information. The only viable option to avoid this is to completely refrain from using these websites.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;strong&gt;Dependency Hell&lt;&#x2F;strong&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Modern web projects face a significant challenge with an excessive reliance on numerous external dependencies known as &amp;quot;dependency overload&#x2F;hell&amp;quot;. Accumulating thousands of dependencies leads to management complexities, update difficulties, security risks, compatibility challenges and performance impacts. Even for a simple task like checking if a number is odd or even, thousands of web projects are relying on external dependencies such as &#x27;is-even&#x27; and &#x27;is-odd&#x27;.&lt;&#x2F;p&gt;
&lt;hr &#x2F;&gt;
&lt;br&gt;
&lt;p&gt;You didn&#x27;t expect it to end so soon, did you? Yes, but if we were to discuss all the problems of the web, we would never reach its conclusion. So, to keep it brief, I decided to focus on the most critical issues that I believe are worth highlighting. If you want to experience the extraordinary adventure of these problems visually, you can watch the very fun, documentary-style(!) videos below.&lt;&#x2F;p&gt;
&lt;p&gt;&lt;strong&gt;A Demonstration of Modern Web Bloat&lt;&#x2F;strong&gt;: &lt;a href=&quot;https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=cvDyQUpaFf4&quot;&gt;https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=cvDyQUpaFf4&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;p&gt;&lt;strong&gt;Using the Internet for the 1st time&lt;&#x2F;strong&gt;: &lt;a href=&quot;https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=pq7NLMwynYg&quot;&gt;https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=pq7NLMwynYg&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;br&gt;
</description>
      </item>
      <item>
          <title>Reasons that I Left Gnome and KDE</title>
          <pubDate>Sat, 01 May 2021 08:09:29 +0000</pubDate>
          <author>contact@onurozkan.dev</author>
          <link>https://onurozkan.dev/blog-posts/reasons-that-i-left-gnome-and-kde/</link>
          <guid>https://onurozkan.dev/blog-posts/reasons-that-i-left-gnome-and-kde/</guid>
          <description>&lt;h1 id=&quot;reasons-that-i-left-gnome-and-kde&quot;&gt;Reasons that I Left Gnome and KDE&lt;&#x2F;h1&gt;
&lt;h2 id=&quot;introduction&quot;&gt;Introduction&lt;&#x2F;h2&gt;
&lt;p&gt;I stopped using Gnome and KDE in Linux environments for about 2 months. In this topic, I will talk about the reasons that led me to this path and my experience of use.&lt;&#x2F;p&gt;
&lt;p&gt;The name of the software that I replaced Gnome and KDE is dwm. It is a suckless util and stands for Dynamic Window Manager.&lt;&#x2F;p&gt;
&lt;p align=&quot;center&quot;&gt;
    &lt;img width=&quot;600&quot; src=&quot;https:&#x2F;&#x2F;onurozkan.dev&#x2F;media&#x2F;reasons-that-i-left-gnome-and-kde-banner.jpg&quot;&#x2F;&gt; 
&lt;&#x2F;p&gt;
&lt;h2 id=&quot;dwm&quot;&gt;Dwm&lt;&#x2F;h2&gt;
&lt;p&gt;It is a tool developed based on the Suckless philosophy. It has been developed abstractly from all functionalities, with no features and runs on the X Window System. Super lightweight window manager that does not have a high-level abstraction and believes the config is directly the source-code itself.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;what-is-suckless-philosophy&quot;&gt;What is Suckless philosophy ?&lt;&#x2F;h2&gt;
&lt;p&gt;Keeping things simple, minimal and usable with a philosophy that develops tools with a focus on simplicity, clarity and frugality. Unfortunately, the software trend for complex, error-prone, and slow software seems to be common in today&#x27;s software industry. Suckless tools aim to prove the opposite.&lt;&#x2F;p&gt;
&lt;p&gt;Suckless tools focus on advanced and experienced computer users. Unlike the usual proprietary software world or many mainstream open-source projects that focus more on average and non-technical end users, experienced users often feel overlooked. This is especially true for user interfaces such as graphical media on desktop computers, mobile devices, and so-called Web applications. Believing that the experienced user market is constantly growing with each user looking for solutions that are more suitable for their own working style&lt;&#x2F;p&gt;
&lt;p&gt;Designing simple and elegant software is much more difficult than allowing instant or over-ambitious features to hide the code over time. However, it has to pay this price to ensure reliability and ease of maintenance. In addition, minimalism results in reasonable and achievable goals. Suckless tools strive to maintain minimalism and clarity to guide development towards completion.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;reasons-that-i-switched-to-dwm&quot;&gt;Reasons that I switched to Dwm&lt;&#x2F;h2&gt;
&lt;ul&gt;
&lt;li&gt;Dwm is super lightweight, it&#x27;s written in pure C and there is no bloat feature&#x2F;functionality inside of it. Basically, you have to put your needs into the source code.&lt;&#x2F;li&gt;
&lt;li&gt;There is no limitation on configuring Dwm, config is the source file itself, so basically you are being the maintainer of your own window manager.&lt;&#x2F;li&gt;
&lt;li&gt;Your battery gets longer life using Dwm.&lt;&#x2F;li&gt;
&lt;li&gt;Use style of the Dwm fits me perfectly. I mostly prefer to focus on the keyboard and do everything with macros just like in vim.&lt;&#x2F;li&gt;
&lt;li&gt;In Dwm, window management is so much useful and powerful than Gnome or KDE.&lt;&#x2F;li&gt;
&lt;li&gt;No breaking changes, no broken patches from remote repositories. It will work the same way forever unless the X Window System goes some breaking changes which are less than %0,1 probability. So it&#x27;s a constant environment that is rock stable and tailored to my needs, nothing more.&lt;&#x2F;li&gt;
&lt;li&gt;You can rather use it in tiled mode or dynamic mode. Not like i3.&lt;&#x2F;li&gt;
&lt;&#x2F;ul&gt;
&lt;h2 id=&quot;comparison-between-gnome-kde-and-dwm&quot;&gt;Comparison between Gnome, KDE and Dwm&lt;&#x2F;h2&gt;
&lt;table&gt;&lt;thead&gt;&lt;tr&gt;&lt;th&gt;Topic&lt;&#x2F;th&gt;&lt;th&gt;Gnome&lt;&#x2F;th&gt;&lt;th&gt;KDE&lt;&#x2F;th&gt;&lt;th&gt;Dwm&lt;&#x2F;th&gt;&lt;&#x2F;tr&gt;&lt;&#x2F;thead&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td&gt;&lt;em&gt;&lt;strong&gt;Resource Usage&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;&lt;&#x2F;td&gt;&lt;td&gt;Bad&lt;&#x2F;td&gt;&lt;td&gt;Average-Good&lt;&#x2F;td&gt;&lt;td&gt;Super Good&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;em&gt;&lt;strong&gt;Customizable&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;&lt;&#x2F;td&gt;&lt;td&gt;Bad&lt;&#x2F;td&gt;&lt;td&gt;Good&lt;&#x2F;td&gt;&lt;td&gt;There is no limit&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;em&gt;&lt;strong&gt;Window System&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;&lt;&#x2F;td&gt;&lt;td&gt;X &#x2F; Wayland&lt;&#x2F;td&gt;&lt;td&gt;X &#x2F; Wayland&lt;&#x2F;td&gt;&lt;td&gt;X  (Can be modified to work on any other)&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;em&gt;&lt;strong&gt;Accessibility&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;&lt;&#x2F;td&gt;&lt;td&gt;Super Easy&lt;&#x2F;td&gt;&lt;td&gt;Super Easy&lt;&#x2F;td&gt;&lt;td&gt;Hard&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;em&gt;&lt;strong&gt;User Base&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;&lt;&#x2F;td&gt;&lt;td&gt;Mostly end users&lt;&#x2F;td&gt;&lt;td&gt;End Users &#x2F; Programmers&lt;&#x2F;td&gt;&lt;td&gt;Mostly Programmers&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;tr&gt;&lt;td&gt;&lt;em&gt;&lt;strong&gt;Use Style&lt;&#x2F;strong&gt;&lt;&#x2F;em&gt;&lt;&#x2F;td&gt;&lt;td&gt;Classic keyboard&#x2F;mouse style&lt;&#x2F;td&gt;&lt;td&gt;Classic keyboard&#x2F;mouse style&lt;&#x2F;td&gt;&lt;td&gt;+%95 via macroing and scripting&lt;&#x2F;td&gt;&lt;&#x2F;tr&gt;
&lt;&#x2F;tbody&gt;&lt;&#x2F;table&gt;
&lt;h2 id=&quot;the-way-i-create-my-os-environment&quot;&gt;The Way I Create My Os Environment&lt;&#x2F;h2&gt;
&lt;p&gt;I use Fedora as an Operating System, but when I set up my system, I definitely install it with packages that I have specified from zero, not with straight logic. For example, I only install the X Window System, X Libraries and Network Manager during the installation phase. After the system is opened, I have a non-bloat, super lightweight, clean infrastructure to implement Dwm, Dmenu, St and Dwmblocks on top of it. After implementing those, in the next phase, I load the packages that I need in my daily life and work environment. I handle this step with a shell script that I specially prepared for myself, which includes the commands for installing and configuring the tools I need most. In the end, I get a clean, lightweight and resource friendly system that uses around 300-400MB ram on running my system rather than 1200-1500MB.&lt;&#x2F;p&gt;
&lt;h2 id=&quot;screenshots&quot;&gt;Screenshots&lt;&#x2F;h2&gt;
&lt;p&gt;&lt;img src=&quot;https:&#x2F;&#x2F;user-images.githubusercontent.com&#x2F;39852038&#x2F;134932350-95ae6ea6-5800-465a-8b7f-856360a117a1.png&quot; alt=&quot;2021-09-27_17-49_2&quot; &#x2F;&gt;
&lt;img src=&quot;https:&#x2F;&#x2F;user-images.githubusercontent.com&#x2F;39852038&#x2F;134932359-05ff26c9-0ff5-453b-a2e7-014e37c187d5.png&quot; alt=&quot;2021-09-27_17-49_1&quot; &#x2F;&gt;
&lt;img src=&quot;https:&#x2F;&#x2F;user-images.githubusercontent.com&#x2F;39852038&#x2F;134938647-70de064d-030f-449e-a767-9152391b460d.png&quot; alt=&quot;2021-09-27_18-27&quot; &#x2F;&gt;
&lt;img src=&quot;https:&#x2F;&#x2F;user-images.githubusercontent.com&#x2F;39852038&#x2F;134932367-7913970c-bf81-4bd2-a699-55c15ce9f7d3.png&quot; alt=&quot;2021-09-27_17-47&quot; &#x2F;&gt;
&lt;img src=&quot;https:&#x2F;&#x2F;user-images.githubusercontent.com&#x2F;39852038&#x2F;134935476-3db61008-9e6d-49c9-af75-e349ef1d9ff8.png&quot; alt=&quot;2021-09-27_18-07&quot; &#x2F;&gt;&lt;&#x2F;p&gt;
&lt;h2 id=&quot;links&quot;&gt;Links&lt;&#x2F;h2&gt;
&lt;p&gt;VM Source: &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;onur-ozkan&#x2F;dwm-enhanced&quot;&gt;dwm-enhanced&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Terminal Source: &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;onur-ozkan&#x2F;st-enhanced&quot;&gt;st-enhanced&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Menu Source: &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;onur-ozkan&#x2F;dmenu-enhanced&quot;&gt;dmenu-enhanced&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Statusbar Source: &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;onur-ozkan&#x2F;dwmblocks-enhanced&quot;&gt;dwmblocks-enhanced&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Dotfiles Source: &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;onur-ozkan&#x2F;dotfiles&quot;&gt;dotfiles&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Vim Theme Source: &lt;a href=&quot;https:&#x2F;&#x2F;github.com&#x2F;onur-ozkan&#x2F;nimda-vim&quot;&gt;nimda-vim&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
&lt;p&gt;Reddit post of my environment as a rice: &lt;a href=&quot;https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;unixporn&#x2F;comments&#x2F;pwknmi&#x2F;dwm_st_dmenu_dwmblocks_picom_blazing_fast&quot;&gt;[dwm + st + dmenu + dwmblocks + picom] Blazing fast resource friendly DE&lt;&#x2F;a&gt;&lt;&#x2F;p&gt;
</description>
      </item>
    </channel>
</rss>
