Skip to content

Commit e2648ce

Browse files
lf-pull[bot]
authored andcommitted
fix: copy PDBs for EFI targets
EFI also uses the PE format with .pdb files, and rustc generates them, but Cargo does not copy them out of target/*/deps. This is an oversight, so this PR fixes it. Related: rust-osdev/uefi-rs#289 Related: #5179
1 parent f6f6328 commit e2648ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cargo/core/compiler/build_context/target_info.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ impl TargetInfo {
465465
// the names to match.
466466
should_replace_hyphens: false,
467467
})
468-
} else if target_triple.ends_with("-msvc") {
468+
} else if target_triple.ends_with("-msvc") || target_triple.ends_with("-uefi") {
469469
ret.push(FileType {
470470
suffix: ".pdb".to_string(),
471471
prefix: prefix.clone(),

0 commit comments

Comments
 (0)