Skip to documentation
SLOP

tiny.tldr.incrementalBuildIdNoteRange

Reference tiny.tldr incrementalBuildIdNoteRange

Defined in tiny.tldr.

No direct callersNo direct callstiny.tldrincrementalBuildIdNoteRange
Static calls · unresolved targets: 0 · external targets: 1.

Source

Source: lib/tldr/src/link.zig:73

zig
pub fn incrementalBuildIdNoteRange(    image: []const u8,    options: LinkOptions,) Error!?MetadataPatchRange {    return switch (options.target.object_format) {        .elf => {            const range = (try formats.elf.buildIdNoteRange(image)) orelse return null;            return .{ .offset = range.offset, .len = range.len };        },        .coff, .macho => null,        .wasm => error.UnsupportedFormat,    };}

Source: lib/tldr/src/root.zig:85

zig
pub const incrementalBuildIdNoteRange = linker.incrementalBuildIdNoteRange;

Audit

Definitions1
Public names1
Members0
Version26.7.0
Revisiondaab053ee433