Function checkInDynamicSection [src]

Creates a new check checking specifically dynamic section parsed and dumped from the object file. This check is target-dependent and applicable to ELF only.

Prototype

pub fn checkInDynamicSection(check_object: *CheckObject) void

Parameters

check_object: *CheckObject

Source

pub fn checkInDynamicSection(check_object: *CheckObject) void { const label = switch (check_object.obj_format) { .elf => ElfDumper.dynamic_section_label, else => @panic("Unsupported target platform"), }; check_object.checkStart(.dynamic_section); check_object.checkExact(label); }