mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
39 lines
1.0 KiB
Zig
39 lines
1.0 KiB
Zig
//! This is Zig's multi-target implementation of libc.
|
|
//!
|
|
//! When `builtin.link_libc` is true, we need to export all the functions and
|
|
//! provide a libc API compatible with the target (e.g. musl, wasi-libc, ...).
|
|
|
|
const builtin = @import("builtin");
|
|
const std = @import("std");
|
|
|
|
// Avoid dragging in the runtime safety mechanisms into this .o file, unless
|
|
// we're trying to test zigc.
|
|
pub const panic = if (builtin.is_test)
|
|
std.debug.FullPanic(std.debug.defaultPanic)
|
|
else
|
|
std.debug.no_panic;
|
|
|
|
comptime {
|
|
_ = @import("c/inttypes.zig");
|
|
_ = @import("c/stdlib.zig");
|
|
_ = @import("c/math.zig");
|
|
|
|
if (builtin.target.isMuslLibC() or builtin.target.isWasiLibC()) {
|
|
// Files specific to musl and wasi-libc.
|
|
_ = @import("c/string.zig");
|
|
_ = @import("c/strings.zig");
|
|
}
|
|
|
|
if (builtin.target.isMuslLibC()) {
|
|
// Files specific to musl.
|
|
}
|
|
|
|
if (builtin.target.isWasiLibC()) {
|
|
// Files specific to wasi-libc.
|
|
}
|
|
|
|
if (builtin.target.isMinGW()) {
|
|
// Files specific to MinGW-w64.
|
|
}
|
|
}
|