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.

rpath_command

The rpath_command contains a path which at runtime should be added to the current run path used to find @rpath prefixed dylibs.

macho.rpath_command
pub const rpath_command = extern struct

File

lib/std/macho.zig:580

Code

pub const rpath_command = extern struct {
    /// LC_RPATH
    cmd: LC = .RPATH,

    /// includes string
    cmdsize: u32,

    /// path to add to run path
    path: u32,
}