authorgravatar for me@gasinfinity.devGasInfinity <me@gasinfinity.dev> 2026-01-18 00:24:41+01:00
committergravatar for me@gasinfinity.devGasInfinity <me@gasinfinity.dev> 2026-01-18 00:26:42+01:00
logd6b3dd25a0d9d02d400b73d53f4d45185dda0bba
treee706f00be344a42f814e5f5a4f6480db24ba220b
parentf0649dd9782780f5b608af338b6d4add19ce2730
signaturebadge-check Signed by SSH key SHA256:p3IHbr0lyK2ekfDC1Zi7dOEV/9T6lGghNawhl5sBnM4

chore(libzigc): document libc target checks


1 files changed, 3 insertions(+), 0 deletions(-)

lib/c.zig+3
...@@ -13,6 +13,9 @@ pub const panic = if (builtin.is_test)...@@ -13,6 +13,9 @@ pub const panic = if (builtin.is_test)
13else13else
14 std.debug.no_panic;14 std.debug.no_panic;
1515
16// NOTE: `libzigc` aims to be a standalone libc and provide ABI compatibility with its bundled libc's.
17// Some of them like `mingw` are not fully statically linked so some symbols don't need to be exported.
18
16comptime {19comptime {
17 _ = @import("c/inttypes.zig");20 _ = @import("c/inttypes.zig");
18 _ = @import("c/ctype.zig");21 _ = @import("c/ctype.zig");