Skip to content

Commit

Permalink
Auto merge of #12688 - lf-:jade/efi-pdbs, r=arlosi
Browse files Browse the repository at this point in the history
fix: copy PDBs for EFI targets
  • Loading branch information
bors committed Sep 20, 2023
2 parents d1e246f + 9357504 commit 0134bb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cargo/core/compiler/build_context/target_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ impl TargetInfo {
// the names to match.
should_replace_hyphens: false,
})
} else if target_triple.ends_with("-msvc") {
} else if target_triple.ends_with("-msvc") || target_triple.ends_with("-uefi") {
ret.push(FileType {
suffix: ".pdb".to_string(),
prefix: prefix.clone(),
Expand Down

0 comments on commit 0134bb6

Please sign in to comment.