Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
f62b2f3
[BPF] add target feature allows-misaligned-mem-access
clairechingching Feb 23, 2026
976c53f
Remove `ATTRIBUTE_ORDER`
JonathanBrouwer Feb 24, 2026
e108da9
`std`: include `dlmalloc` for all non-wasi Wasm targets
Twey Mar 11, 2026
e2923eb
`std`: don't depend on `dlmalloc` when `cfg(unix)`
Twey Mar 11, 2026
e15897f
Parenthesize or-patterns in prefix pattern positions in pretty printer
aytey Mar 19, 2026
1a1a0d2
Update Clippy test expectations for or-pattern parenthesization
aytey Mar 19, 2026
f9752e2
bootstrap: Pass `--features=rustc` to rustc_transmute
jyn514 Mar 19, 2026
3ad92c9
On E0277 tweak help when single type impls traits
estebank Mar 21, 2026
5841fa8
Inline and remove `QueryVTable::is_loadable_from_disk_fn`.
nnethercote Mar 22, 2026
5491c35
check earlier for misused crate-level attributes
scrabsha Feb 27, 2026
1c6a8fe
check earlier for attributes that are placed in `where` predicate
scrabsha Mar 4, 2026
29e9273
drop derive helpers during ast lowering
scrabsha Feb 27, 2026
d52943a
Remove assertion in `load_from_disk_or_invoke_provider_green`.
nnethercote Mar 22, 2026
be8dee1
interpret/validity: remove unreachable error kind
RalfJung Mar 22, 2026
8befc9d
refactor RangeFromIter overflow-checks impl
pitaj Mar 21, 2026
fa3e85a
diagnostics: avoid ICE in confusable_method_name for associated funct…
Unique-Usman Mar 22, 2026
cde59f0
Remove another assertion in `load_from_disk_or_invoke_provider_green`.
nnethercote Mar 22, 2026
6f08437
improve inline assembly error messages
folkertdev Mar 22, 2026
327216d
Refactor `load_from_disk_or_invoke_provider_green`.
nnethercote Mar 22, 2026
8dcb257
Document consteval behavior of ub_checks & overflow_checks.
theemathas Mar 23, 2026
338deef
Remove outdated consteval docs for is_val_statically_known.
theemathas Mar 23, 2026
d044b6b
Rollup merge of #153686 - Twey:patch-1, r=Mark-Simulacrum
JonathanBrouwer Mar 23, 2026
527ed70
Rollup merge of #154105 - ferrocene:jyn/test-transmute, r=Mark-Simula…
JonathanBrouwer Mar 23, 2026
c2ec981
Rollup merge of #153041 - JonathanBrouwer:attribute_order, r=jdonszel…
JonathanBrouwer Mar 23, 2026
261c7c9
Rollup merge of #153069 - blueshift-gg:BPF_unaligned, r=chenyukang
JonathanBrouwer Mar 23, 2026
7aed5fd
Rollup merge of #154085 - aytey:fix-at-or-pattern-parens, r=chenyukang
JonathanBrouwer Mar 23, 2026
d107539
Rollup merge of #154191 - pitaj:fix-154124, r=tgross35
JonathanBrouwer Mar 23, 2026
0bd67fe
Rollup merge of #154207 - nnethercote:refactor-query-loading, r=Zalathar
JonathanBrouwer Mar 23, 2026
c24dfa5
Rollup merge of #153540 - scrabsha:sasha/drop-derive-helpers, r=jdons…
JonathanBrouwer Mar 23, 2026
6ed0667
Rollup merge of #154140 - theemathas:checks_always_on_in_const, r=Ral…
JonathanBrouwer Mar 23, 2026
c6b6f90
Rollup merge of #154161 - estebank:e0277-ty-impls, r=Kivooeo
JonathanBrouwer Mar 23, 2026
43654df
Rollup merge of #154218 - RalfJung:validity-init-scalar, r=nnethercote
JonathanBrouwer Mar 23, 2026
c570b97
Rollup merge of #154225 - Unique-Usman:ua/rustc_confusable, r=Kivooeo
JonathanBrouwer Mar 23, 2026
ef6f1a6
Rollup merge of #154228 - folkertdev:mention-invalid-template-modifie…
JonathanBrouwer Mar 23, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bootstrap: Pass --features=rustc to rustc_transmute
This matters for `x test rustc_transmute`, where the feature won't
automatically be enabled and as a result spew a bunch of warnings.
  • Loading branch information
jyn514 committed Mar 19, 2026
commit f9752e2074ae6cf1c1ad8bb5694fdecd7aedee1c
6 changes: 6 additions & 0 deletions src/bootstrap/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,12 @@ impl Build {
features.push("check_only");
}

if crates.iter().any(|c| c == "rustc_transmute") {
// for `x test rustc_transmute`, this feature isn't enabled automatically by a
// dependent crate.
features.push("rustc");
}

// If debug logging is on, then we want the default for tracing:
// https://github.com/tokio-rs/tracing/blob/3dd5c03d907afdf2c39444a29931833335171554/tracing/src/level_filters.rs#L26
// which is everything (including debug/trace/etc.)
Expand Down
Loading