forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#85357 - Andy-Python-Programmer:aarch64_uefi_t…
…arget, r=petrochenkov Add `aarch64-unknown-uefi` target This pull request adds the `aarch64-unknown-uefi` target.
- Loading branch information
Showing
3 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// This defines the aarch64 target for UEFI systems as described in the UEFI specification. See the | ||
// uefi-base module for generic UEFI options. | ||
|
||
use super::uefi_msvc_base; | ||
use crate::spec::{LinkerFlavor, LldFlavor, Target}; | ||
|
||
pub fn target() -> Target { | ||
let mut base = uefi_msvc_base::opts(); | ||
|
||
base.max_atomic_width = Some(64); | ||
|
||
let pre_link_args_msvc = vec!["/machine:arm64".to_string()]; | ||
|
||
base.pre_link_args.get_mut(&LinkerFlavor::Msvc).unwrap().extend(pre_link_args_msvc.clone()); | ||
base.pre_link_args | ||
.get_mut(&LinkerFlavor::Lld(LldFlavor::Link)) | ||
.unwrap() | ||
.extend(pre_link_args_msvc); | ||
|
||
Target { | ||
llvm_target: "aarch64-unknown-windows".to_string(), | ||
pointer_width: 64, | ||
data_layout: "e-m:w-p:64:64-i32:32-i64:64-i128:128-n32:64-S128".to_string(), | ||
arch: "aarch64".to_string(), | ||
options: base, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters