We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57d3c58 commit 758868cCopy full SHA for 758868c
src/bootstrap/util.rs
@@ -44,7 +44,13 @@ pub use t;
44
/// Given an executable called `name`, return the filename for the
45
/// executable for a particular target.
46
pub fn exe(name: &str, target: TargetSelection) -> String {
47
- if target.contains("windows") { format!("{}.exe", name) } else { name.to_string() }
+ if target.contains("windows") {
48
+ format!("{}.exe", name)
49
+ } else if target.contains("uefi") {
50
+ format!("{}.efi", name)
51
+ } else {
52
+ name.to_string()
53
+ }
54
}
55
56
/// Returns `true` if the file name given looks like a dynamic library.
0 commit comments