mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
std.zig.target: remove two unused consts
This commit is contained in:
parent
0ea6bd08d8
commit
c3b9f49ac2
1 changed files with 0 additions and 6 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue