From c3b9f49ac2c9915294003b7407a32175ef93cbe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Sun, 30 Nov 2025 22:40:01 +0100 Subject: [PATCH] std.zig.target: remove two unused consts --- lib/std/zig/target.zig | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/std/zig/target.zig b/lib/std/zig/target.zig index 498f89d257..4d5a9d2962 100644 --- a/lib/std/zig/target.zig +++ b/lib/std/zig/target.zig @@ -112,12 +112,6 @@ pub const available_libcs = [_]ArchOsAbi{ .{ .arch = .x86_64, .os = .windows, .abi = .gnu }, }; -/// The version of Zig's bundled FreeBSD libc used when linking libc statically. -pub const freebsd_libc_version: std.SemanticVersion = .{ .major = 14, .minor = 0, .patch = 0 }; - -/// The version of Zig's bundled NetBSD libc used when linking libc statically. -pub const netbsd_libc_version: std.SemanticVersion = .{ .major = 10, .minor = 1, .patch = 0 }; - pub fn canBuildLibC(target: *const std.Target) bool { for (available_libcs) |libc| { if (target.cpu.arch == libc.arch and target.os.tag == libc.os and target.abi == libc.abi) {