mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
compiler-rt: Use Windows Arm ABI routines for UEFI for now.
Until #21630 is addressed. Closes #22893.
This commit is contained in:
parent
9ad57515b2
commit
ddff1fa4c6
1 changed files with 2 additions and 1 deletions
|
|
@ -33,7 +33,8 @@ pub const want_aeabi = switch (builtin.abi) {
|
|||
};
|
||||
|
||||
/// These functions are provided by libc when targeting MSVC, but not MinGW.
|
||||
pub const want_windows_arm_abi = builtin.cpu.arch.isArm() and builtin.os.tag == .windows and (builtin.abi.isGnu() or !builtin.link_libc);
|
||||
// Temporarily used for thumb-uefi until https://github.com/ziglang/zig/issues/21630 is addressed.
|
||||
pub const want_windows_arm_abi = builtin.cpu.arch.isArm() and (builtin.os.tag == .windows or builtin.os.tag == .uefi) and (builtin.abi.isGnu() or !builtin.link_libc);
|
||||
|
||||
pub const want_ppc_abi = builtin.cpu.arch.isPowerPC();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue