| ... | ... | @@ -33,7 +33,8 @@ pub const want_aeabi = switch (builtin.abi) { |
| 33 | 33 | }; |
| 34 | 34 | |
| 35 | 35 | /// These functions are provided by libc when targeting MSVC, but not MinGW. |
| 36 | | pub const want_windows_arm_abi = builtin.cpu.arch.isArm() and builtin.os.tag == .windows and (builtin.abi.isGnu() or !builtin.link_libc); |
| 36 | // Temporarily used for thumb-uefi until https://github.com/ziglang/zig/issues/21630 is addressed. |
| 37 | 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); |
| 37 | 38 | |
| 38 | 39 | pub const want_ppc_abi = builtin.cpu.arch.isPowerPC(); |
| 39 | 40 | |