Skip to content

Commit 4e5906a

Browse files
authored
Unrolled build for rust-lang#127913
Rollup merge of rust-lang#127913 - onur-ozkan:broken-defaults, r=Kobzol remove `debug-logging` default from tools profile `debug-logging` conflicts with `download-rustc` option, and doesn't really make sense to enable it for a profile that is used for tool development.
2 parents 5affbb1 + 5901c8c commit 4e5906a

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

src/bootstrap/defaults/config.tools.toml

-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
# These defaults are meant for contributors to tools which build on the
22
# compiler, but do not modify it directly.
33
[rust]
4-
# This enables `RUSTC_LOG=debug`, avoiding confusing situations
5-
# where adding `debug!()` appears to do nothing.
6-
# However, it makes running the compiler slightly slower.
7-
debug-logging = true
84
# This greatly increases the speed of rebuilds, especially when there are only minor changes. However, it makes the initial build slightly slower.
95
incremental = true
106
# Download rustc from CI instead of building it from source.

src/bootstrap/src/utils/change_tracker.rs

+5
Original file line numberDiff line numberDiff line change
@@ -200,4 +200,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
200200
severity: ChangeSeverity::Warning,
201201
summary: "`llvm.lld` is enabled by default for the dist profile. If set to false, `lld` will not be included in the dist build.",
202202
},
203+
ChangeInfo {
204+
change_id: 127913,
205+
severity: ChangeSeverity::Warning,
206+
summary: "`debug-logging` option has been removed from the default `tools` profile.",
207+
},
203208
];

src/ci/docker/host-x86_64/mingw-check/Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ RUN sh /scripts/sccache.sh
3737
COPY host-x86_64/mingw-check/reuse-requirements.txt /tmp/
3838
RUN pip3 install --no-deps --no-cache-dir --require-hashes -r /tmp/reuse-requirements.txt
3939

40+
COPY host-x86_64/mingw-check/check-default-config-profiles.sh /scripts/
4041
COPY host-x86_64/mingw-check/validate-toolstate.sh /scripts/
4142
COPY host-x86_64/mingw-check/validate-error-codes.sh /scripts/
4243

@@ -46,6 +47,7 @@ ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
4647
# We disable optimized compiler built-ins because that requires a C toolchain for the target.
4748
# We also skip the x86_64-unknown-linux-gnu target as it is well-tested by other jobs.
4849
ENV SCRIPT python3 ../x.py check --stage 0 --set build.optimized-compiler-builtins=false core alloc std --target=aarch64-unknown-linux-gnu,i686-pc-windows-msvc,i686-unknown-linux-gnu,x86_64-apple-darwin,x86_64-pc-windows-gnu,x86_64-pc-windows-msvc && \
50+
/scripts/check-default-config-profiles.sh && \
4951
python3 ../x.py check --target=i686-pc-windows-gnu --host=i686-pc-windows-gnu && \
5052
python3 ../x.py clippy bootstrap -Dwarnings && \
5153
python3 ../x.py clippy compiler library -Aclippy::all -Dclippy::correctness && \
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
# Runs bootstrap (in dry-run mode) with each default config profile to ensure they are not broken.
3+
4+
set -euo pipefail
5+
6+
config_dir="../src/bootstrap/defaults"
7+
8+
# Loop through each configuration file in the directory
9+
for config_file in "$config_dir"/*.toml;
10+
do
11+
python3 ../x.py check --config $config_file --dry-run
12+
done

0 commit comments

Comments
 (0)