tiny.tldr.incrementalBuildIdNoteRange
Defined in tiny.tldr.
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
| Definitions | 1 |
|---|---|
| Public names | 1 |
| Members | 0 |
| Version | 26.7.0 |
| Revision | daab053ee433 |