Skip to content

Commit 9e68d89

Browse files
committed
Remove the "codegen" profile from bootstrap
This profile originally made sense when download-ci-llvm = if-unchanged didn't exist and we had the bad tradeoff of "never modify or always compile". Thankfully, these grim times are over and we have discovered clean water, so the only differentiator between the two profiles is the codegen profile having LLVM assertions. Adding them doesn't cause that much of a slowdown, <10% on UI tests from an unscientific benchmark. It also had LLVM warnings when compiling, which makes sense for every compiler contributor brave enough to compile LLVM. The way I removed is by just issueing a nice error message. Given that everyone with this profile should be a contributor and not someone like a distro who is more upset when things break, this should be fine. If it isn't, we can always fall back to just letting codegen mean compiler.
1 parent e29a153 commit 9e68d89

File tree

5 files changed

+17
-49
lines changed

5 files changed

+17
-49
lines changed

src/bootstrap/defaults/config.codegen.toml

-28
This file was deleted.

src/bootstrap/defaults/config.compiler.toml

+5
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,10 @@ lto = "off"
1919
frame-pointers = true
2020

2121
[llvm]
22+
# This enables debug-assertions in LLVM,
23+
# catching logic errors in codegen much earlier in the process.
24+
assertions = true
25+
# Enable warnings during the LLVM compilation (when LLVM is changed, causing a compilation)
26+
enable-warnings = true
2227
# Will download LLVM from CI if available on your platform.
2328
download-ci-llvm = "if-unchanged"

src/bootstrap/src/core/build_steps/setup.rs

+7-16
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ mod tests;
1919
#[derive(Clone, Copy, Debug, Eq, PartialEq, Hash)]
2020
pub enum Profile {
2121
Compiler,
22-
Codegen,
2322
Library,
2423
Tools,
2524
Dist,
@@ -48,15 +47,14 @@ impl Profile {
4847
pub fn all() -> impl Iterator<Item = Self> {
4948
use Profile::*;
5049
// N.B. these are ordered by how they are displayed, not alphabetically
51-
[Library, Compiler, Codegen, Tools, Dist, None].iter().copied()
50+
[Library, Compiler, Tools, Dist, None].iter().copied()
5251
}
5352

5453
pub fn purpose(&self) -> String {
5554
use Profile::*;
5655
match self {
5756
Library => "Contribute to the standard library",
5857
Compiler => "Contribute to the compiler itself",
59-
Codegen => "Contribute to the compiler, and also modify LLVM or codegen",
6058
Tools => "Contribute to tools which depend on the compiler, but do not modify it directly (e.g. rustdoc, clippy, miri)",
6159
Dist => "Install Rust from source",
6260
None => "Do not modify `config.toml`"
@@ -75,7 +73,6 @@ impl Profile {
7573
pub fn as_str(&self) -> &'static str {
7674
match self {
7775
Profile::Compiler => "compiler",
78-
Profile::Codegen => "codegen",
7976
Profile::Library => "library",
8077
Profile::Tools => "tools",
8178
Profile::Dist => "dist",
@@ -91,12 +88,15 @@ impl FromStr for Profile {
9188
match s {
9289
"lib" | "library" => Ok(Profile::Library),
9390
"compiler" => Ok(Profile::Compiler),
94-
"llvm" | "codegen" => Ok(Profile::Codegen),
9591
"maintainer" | "dist" | "user" => Ok(Profile::Dist),
9692
"tools" | "tool" | "rustdoc" | "clippy" | "miri" | "rustfmt" | "rls" => {
9793
Ok(Profile::Tools)
9894
}
9995
"none" => Ok(Profile::None),
96+
"llvm" | "codegen" => Err(format!(
97+
"the \"llvm\" and \"codegen\" profiles have been removed,\
98+
use \"compiler\" instead which has the same functionality"
99+
)),
100100
_ => Err(format!("unknown profile: '{s}'")),
101101
}
102102
}
@@ -170,22 +170,13 @@ impl Step for Profile {
170170
}
171171

172172
fn run(self, builder: &Builder<'_>) {
173-
// During ./x.py setup once you select the codegen profile.
174-
// The submodule will be downloaded. It does not work in the
175-
// tarball case since they don't include Git and submodules
176-
// are already included.
177-
if !builder.rust_info().is_from_tarball() {
178-
if self == Profile::Codegen {
179-
builder.update_submodule(&Path::new("src/llvm-project"));
180-
}
181-
}
182-
setup(&builder.build.config, self)
173+
setup(&builder.build.config, self);
183174
}
184175
}
185176

186177
pub fn setup(config: &Config, profile: Profile) {
187178
let suggestions: &[&str] = match profile {
188-
Profile::Codegen | Profile::Compiler | Profile::None => &["check", "build", "test"],
179+
Profile::Compiler | Profile::None => &["check", "build", "test"],
189180
Profile::Tools => &[
190181
"check",
191182
"build",

src/bootstrap/src/utils/change_tracker.rs

+5
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
124124
severity: ChangeSeverity::Info,
125125
summary: "A new `rust.frame-pointers` option has been introduced and made the default in the compiler and codegen profiles.",
126126
},
127+
ChangeInfo {
128+
change_id: 121278,
129+
severity: ChangeSeverity::Warning,
130+
summary: "The \"codegen\"/\"llvm\" profile has been removed and replaced with \"compiler\", use it instead for the same behavior.",
131+
},
127132
];

triagebot.toml

-5
Original file line numberDiff line numberDiff line change
@@ -627,11 +627,6 @@ This PR modifies `config.example.toml`.
627627
If appropriate, please update `CONFIG_CHANGE_HISTORY` in `src/bootstrap/src/utils/change_tracker.rs`.
628628
"""
629629

630-
[mentions."src/bootstrap/defaults/config.compiler.toml"]
631-
message = "This PR changes src/bootstrap/defaults/config.compiler.toml. If appropriate, please also update `config.codegen.toml` so the defaults are in sync."
632-
[mentions."src/bootstrap/defaults/config.codegen.toml"]
633-
message = "This PR changes src/bootstrap/defaults/config.codegen.toml. If appropriate, please also update `config.compiler.toml` so the defaults are in sync."
634-
635630
[mentions."src/bootstrap/src/core/build_steps/llvm.rs"]
636631
message = "This PR changes how LLVM is built. Consider updating src/bootstrap/download-ci-llvm-stamp."
637632

0 commit comments

Comments
 (0)