Auto merge of #80087 - davidtwco:issue-80086-llvm-dwp-in-ci-llvm, r=M… · rust-lang/rust@b32e6e6 (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Commit b32e6e6
Auto merge of #80087 - davidtwco:issue-80086-llvm-dwp-in-ci-llvm, r=Mark-Simulacrum
bootstrap: include llvm-dwp in CI LLVMFixes #80086. This PR includes the `llvm-dwp` tool in the CI LLVM (which rustc developers can download instead of building LLVM locally) - `llvm-dwp` is required by Split DWARF which landed in PR #77117. r? `@Mark-Simulacrum`
File tree
1 file changed
lines changed
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -2553,6 +2553,7 @@ impl Step for RustDev { | ||
2553 | 2553 | install_bin("llvm-profdata"); |
2554 | 2554 | install_bin("llvm-bcanalyzer"); |
2555 | 2555 | install_bin("llvm-cov"); |
2556 | +install_bin("llvm-dwp"); | |
2556 | 2557 | builder.install(&builder.llvm_filecheck(target), &dst_bindir, 0o755); |
2557 | 2558 | |
2558 | 2559 | // Copy the include directory as well; needed mostly to build |