Corrected Cortex-M ABI (#149)

wch-ch32v003
Ardelean Călin 1 year ago committed by GitHub
parent d361a622ba
commit f286bc8e25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -793,7 +793,7 @@ pub const cpus = struct {
.cpu_arch = .thumb,
.cpu_model = .{ .explicit = &std.Target.arm.cpu.cortex_m0 },
.os_tag = .freestanding,
.abi = .none,
.abi = .eabi,
},
};
@ -804,7 +804,7 @@ pub const cpus = struct {
.cpu_arch = .thumb,
.cpu_model = .{ .explicit = &std.Target.arm.cpu.cortex_m0plus },
.os_tag = .freestanding,
.abi = .none,
.abi = .eabi,
},
};
@ -815,7 +815,7 @@ pub const cpus = struct {
.cpu_arch = .thumb,
.cpu_model = .{ .explicit = &std.Target.arm.cpu.cortex_m3 },
.os_tag = .freestanding,
.abi = .none,
.abi = .eabi,
},
};
@ -826,7 +826,7 @@ pub const cpus = struct {
.cpu_arch = .thumb,
.cpu_model = .{ .explicit = &std.Target.arm.cpu.cortex_m4 },
.os_tag = .freestanding,
.abi = .none,
.abi = .eabi,
},
};

Loading…
Cancel
Save