zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit f925e1379aa53228610df9b7ffc3d87dbcce0dbb (tree)
parent 7c9035f63590021906de66c7490458a49afe9e0a
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Wed, 21 May 2025 02:55:17 +0200

std.zig.target: Remove thumb-freebsd-eabihf.

Leftover from 76d525f74a33e20dfa4c9e84b27ce8ad84529cac.

Diffstat:
Mlib/std/zig/target.zig | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/lib/std/zig/target.zig b/lib/std/zig/target.zig @@ -26,7 +26,6 @@ pub const available_libcs = [_]ArchOsAbi{ .{ .arch = .armeb, .os = .linux, .abi = .musleabihf, .os_ver = .{ .major = 2, .minor = 6, .patch = 0 } }, .{ .arch = .armeb, .os = .netbsd, .abi = .eabi, .os_ver = .{ .major = 1, .minor = 2, .patch = 0 } }, .{ .arch = .armeb, .os = .netbsd, .abi = .eabihf, .os_ver = .{ .major = 1, .minor = 2, .patch = 0 } }, - .{ .arch = .thumb, .os = .freebsd, .abi = .eabihf, .os_ver = .{ .major = 11, .minor = 0, .patch = 0 } }, .{ .arch = .thumb, .os = .linux, .abi = .musleabi, .os_ver = .{ .major = 2, .minor = 1, .patch = 0 } }, .{ .arch = .thumb, .os = .linux, .abi = .musleabihf, .os_ver = .{ .major = 2, .minor = 1, .patch = 0 } }, .{ .arch = .thumb, .os = .windows, .abi = .gnu },