mirror of
https://github.com/ziglang/zig.git
synced 2024-11-13 23:52:57 +00:00
std.Target: Fix toCoffMachine() value for thumb.
This commit is contained in:
parent
9904a3ac9d
commit
15c920ff2a
@ -1076,7 +1076,7 @@ pub fn toElfMachine(target: Target) std.elf.EM {
|
||||
pub fn toCoffMachine(target: Target) std.coff.MachineType {
|
||||
return switch (target.cpu.arch) {
|
||||
.arm => .ARM,
|
||||
.thumb => .THUMB,
|
||||
.thumb => .ARMNT,
|
||||
.aarch64 => .ARM64,
|
||||
.loongarch32 => .LOONGARCH32,
|
||||
.loongarch64 => .LOONGARCH64,
|
||||
|
Loading…
Reference in New Issue
Block a user