Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

ResolvedTarget

A pair of target query and fully resolved target. This type is generally required by build system API that need to be given a target. The query is kept because the Zig toolchain needs to know which parts of the target are "native". This can apply to the CPU, the OS, or even the ABI.

Build.ResolvedTarget
pub const ResolvedTarget = struct

File

lib/std/Build.zig:2730

Code

pub const ResolvedTarget = struct {
    query: Target.Query,
    result: Target,
}