Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 10 pull requests #124208

Merged
merged 22 commits into from
Apr 21, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
b4a4645
static_mut_refs: use raw pointers to remove the remaining FIXME
RalfJung Apr 15, 2024
89117f8
Use fake libc in core test
ChrisDenton Apr 15, 2024
232eb59
lint-docs: Add redirects for renamed lints.
ehuss Apr 15, 2024
40cfc2d
coverage: Move branch coverage tests into a subdirectory
Zalathar Apr 17, 2024
25b9f84
coverage: Branch coverage tests for lazy boolean operators
Zalathar Apr 17, 2024
4734163
Add llvm-bitcode-linker to build manifest
kjetilkjeka Apr 17, 2024
fdf93bb
Improve std::fs::Metadata Debug representation
dtolnay Apr 18, 2024
61def01
llvm RustWrapper: explain OpBundlesIndirect argument type
RalfJung Apr 18, 2024
912c670
Move pretty-printer FixupContext to a module
dtolnay Apr 20, 2024
debdb72
Give a name to each distinct manipulation of pretty-printer FixupContext
dtolnay Apr 20, 2024
75d0fdd
mir-opt tests: rename unit-test -> test-mir-pass
RalfJung Apr 20, 2024
be564a8
Print note with closure signature on type mismatch
wutchzone Apr 2, 2024
e9e936c
Rollup merge of #123379 - wutchzone:119266, r=compiler-errors
jieyouxu Apr 20, 2024
ccd9880
Rollup merge of #123967 - RalfJung:static_mut_refs, r=Nilstrieb
jieyouxu Apr 20, 2024
a73aabf
Rollup merge of #123976 - ChrisDenton:no-libc-in-std-doc-tests, r=Mar…
jieyouxu Apr 20, 2024
871c3e3
Rollup merge of #123986 - ehuss:lint-renamed, r=Mark-Simulacrum
jieyouxu Apr 20, 2024
f13cd0c
Rollup merge of #124053 - Zalathar:lazy-boolean, r=Mark-Simulacrum
jieyouxu Apr 20, 2024
29ee276
Rollup merge of #124071 - kjetilkjeka:llvm_bitcode_linker_build_manif…
jieyouxu Apr 20, 2024
418a078
Rollup merge of #124103 - dtolnay:metadatadebug, r=Mark-Simulacrum
jieyouxu Apr 20, 2024
726361c
Rollup merge of #124132 - RalfJung:OpBundlesIndirect, r=Mark-Simulacrum
jieyouxu Apr 20, 2024
b3f9117
Rollup merge of #124191 - dtolnay:fixup, r=compiler-errors
jieyouxu Apr 20, 2024
c72cfdd
Rollup merge of #124196 - RalfJung:mir-opt-tests, r=Mark-Simulacrum
jieyouxu Apr 20, 2024
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
3 changes: 2 additions & 1 deletion src/tools/build-manifest/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,8 @@ impl Builder {
| PkgType::LlvmTools
| PkgType::RustAnalysis
| PkgType::JsonDocs
| PkgType::RustcCodegenCranelift => {
| PkgType::RustcCodegenCranelift
| PkgType::LlvmBitcodeLinker => {
extensions.push(host_component(pkg));
}
PkgType::RustcDev | PkgType::RustcDocs => {
Expand Down
3 changes: 3 additions & 0 deletions src/tools/build-manifest/src/versions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ pkg_type! {
Miri = "miri"; preview = true,
JsonDocs = "rust-docs-json"; preview = true,
RustcCodegenCranelift = "rustc-codegen-cranelift"; preview = true,
LlvmBitcodeLinker = "llvm-bitcode-linker"; preview = true,
}

impl PkgType {
Expand Down Expand Up @@ -94,6 +95,7 @@ impl PkgType {
PkgType::ReproducibleArtifacts => true,
PkgType::RustMingw => true,
PkgType::RustAnalysis => true,
PkgType::LlvmBitcodeLinker => true,
}
}

Expand Down Expand Up @@ -121,6 +123,7 @@ impl PkgType {
Rustfmt => HOSTS,
RustAnalysis => TARGETS,
LlvmTools => TARGETS,
LlvmBitcodeLinker => HOSTS,
}
}

Expand Down