Skip to content

Commit 1802dd0

Browse files
committed
Correct the LLVM target of aarch64-unknown-uefi
As noticed in [1], the LLVM target string for aarch64 UEFI is not correct. Fix it here. Link: #132975 (comment) [1]
1 parent 33c245b commit 1802dd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_target/src/spec/targets/aarch64_unknown_uefi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub(crate) fn target() -> Target {
1111
base.features = "+v8a".into();
1212

1313
Target {
14-
llvm_target: "aarch64-unknown-windows".into(),
14+
llvm_target: "aarch64-unknown-uefi".into(),
1515
metadata: crate::spec::TargetMetadata {
1616
description: Some("ARM64 UEFI".into()),
1717
tier: Some(2),

0 commit comments

Comments
 (0)