structstd.zig.LibCInstallation.FindNativeOptions[src]

Fields

allocator: Allocator
target: std.Target
verbose: bool = false

If enabled, will print human-friendly errors to stderr.

Source Code

Source code
pub const FindNativeOptions = struct {
    allocator: Allocator,
    target: std.Target,

    /// If enabled, will print human-friendly errors to stderr.
    verbose: bool = false,
}