zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 600348283fa5ea9646f91997e0a32f4632ca30b8 (tree)
parent f8458a549ba7fbd29b3d045019313704f1305e89
Author: Jakub Konka <kubkon@jakubkonka.com>
Date:   Fri, 22 Jul 2022 21:19:33 +0200

macho: include __StaticInit input sections as GC roots

Diffstat:
Msrc/link/MachO/dead_strip.zig | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/link/MachO/dead_strip.zig b/src/link/MachO/dead_strip.zig @@ -92,6 +92,7 @@ fn collectRoots(roots: *std.AutoHashMap(*Atom, void), macho_file: *MachO) !void const source_sect = object.getSourceSection(source_sym.n_sect - 1); const is_gc_root = blk: { if (source_sect.isDontDeadStrip()) break :blk true; + if (mem.eql(u8, "__StaticInit", source_sect.sectName())) break :blk true; switch (source_sect.type_()) { macho.S_MOD_INIT_FUNC_POINTERS, macho.S_MOD_TERM_FUNC_POINTERS,