pub fn addSection(oc: *ObjCopy, section_name: []const u8, options: AddSectionOptions) void
pub fn addSection(oc: *ObjCopy, section_name: []const u8, options: AddSectionOptions) void { const graph = oc.step.owner.graph; const arena = graph.arena; const wc = &graph.wip_configuration; oc.add_sections.append(arena, .{ .section_name = wc.addString(section_name) catch @panic("OOM"), .file_path = options.file_path, }) catch @panic("OOM"); options.file_path.addStepDependencies(&oc.step); }