| author | |
| committer | |
| log | c1862ce64299c147ad06b3f19ed7412bc23545f2 |
| tree | 1900327004fbf8927224ac4cb74af04cc44ed822 |
| parent | 51f62ea918248817ad50fe4c8123aa694b5fbc85 |
| signature |
FreeBSD 15 dropped this target. It also dropped x86-freebsd-none, but since that
target remains buildable and usable with the 32-bit compat layer, we keep it for
now.3 files changed, 0 insertions(+), 3 deletions(-)
lib/std/Target.zig-1| ... | ... | @@ -865,7 +865,6 @@ pub const Abi = enum { |
| 865 | 865 | }, |
| 866 | 866 | .freebsd => switch (arch) { |
| 867 | 867 | .arm, |
| 868 | .powerpc, | |
| 869 | 868 | => .eabihf, |
| 870 | 869 | else => .none, |
| 871 | 870 | }, |
lib/std/zig/target.zig-1| ... | ... | @@ -71,7 +71,6 @@ pub const available_libcs = [_]ArchOsAbi{ |
| 71 | 71 | .{ .arch = .mips64el, .os = .linux, .abi = .gnuabin32, .os_ver = .{ .major = 2, .minor = 6, .patch = 0 }, .glibc_triple = "mips64el-linux-gnu-n32" }, |
| 72 | 72 | .{ .arch = .mips64el, .os = .linux, .abi = .muslabi64, .os_ver = .{ .major = 2, .minor = 3, .patch = 48 } }, |
| 73 | 73 | .{ .arch = .mips64el, .os = .linux, .abi = .muslabin32, .os_ver = .{ .major = 2, .minor = 6, .patch = 0 } }, |
| 74 | .{ .arch = .powerpc, .os = .freebsd, .abi = .eabihf, .os_ver = .{ .major = 7, .minor = 1, .patch = 0 } }, | |
| 75 | 74 | .{ .arch = .powerpc, .os = .linux, .abi = .gnueabi, .os_ver = .{ .major = 1, .minor = 3, .patch = 45 }, .glibc_triple = "powerpc-linux-gnu-soft" }, |
| 76 | 75 | .{ .arch = .powerpc, .os = .linux, .abi = .gnueabihf, .os_ver = .{ .major = 1, .minor = 3, .patch = 45 }, .glibc_triple = "powerpc-linux-gnu" }, |
| 77 | 76 | .{ .arch = .powerpc, .os = .linux, .abi = .musleabi, .os_ver = .{ .major = 1, .minor = 3, .patch = 45 } }, |
tools/process_headers.zig-1| ... | ... | @@ -81,7 +81,6 @@ const musl_targets = [_]LibCTarget{ |
| 81 | 81 | const freebsd_targets = [_]LibCTarget{ |
| 82 | 82 | .{ .arch = .arm, .abi = .eabihf }, |
| 83 | 83 | .{ .arch = .aarch64, .abi = .none }, |
| 84 | .{ .arch = .powerpc, .abi = .eabihf }, | |
| 85 | 84 | .{ .arch = .powerpc64, .abi = .none }, |
| 86 | 85 | .{ .arch = .riscv64, .abi = .none }, |
| 87 | 86 | .{ .arch = .x86, .abi = .none }, |