authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2023-10-07 14:24:02+02:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2023-10-16 19:33:05+02:00
log06f3b385c409a576b7c962f22c154edb307dd90b
treec59040910d05c3a13f12b3fb7d7e11a4093ffc5c
parenta748ca3725e606b6c4be1b3101203ff1e4136924

elf: fix alignment of .eh_frame_hdr section


1 files changed, 1 insertions(+), 1 deletions(-)

src/link/Elf.zig+1-1
...@@ -3950,7 +3950,7 @@ fn initSections(self: *Elf) !void {...@@ -3950,7 +3950,7 @@ fn initSections(self: *Elf) !void {
3950 .name = ".eh_frame_hdr",3950 .name = ".eh_frame_hdr",
3951 .type = elf.SHT_PROGBITS,3951 .type = elf.SHT_PROGBITS,
3952 .flags = elf.SHF_ALLOC,3952 .flags = elf.SHF_ALLOC,
3953 .addralign = ptr_size,3953 .addralign = 4,
3954 });3954 });
3955 }3955 }
3956 }3956 }