authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-07-25 09:05:36+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-07-25 18:55:08+02:00
logc009264f5b298868ecc2498da208b85e3cb5b568
treef9902db7189ddffc4d000e7fb48009f478ee550f
parentf4f5b2bc41e09ed68caf3c839433e44bd9b33249
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.elf: Add some newer dynamic tag types.


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

lib/std/elf.zig+4-1
...@@ -84,7 +84,10 @@ pub const DT_ENCODING = 32;...@@ -84,7 +84,10 @@ pub const DT_ENCODING = 32;
84pub const DT_PREINIT_ARRAY = 32;84pub const DT_PREINIT_ARRAY = 32;
85pub const DT_PREINIT_ARRAYSZ = 33;85pub const DT_PREINIT_ARRAYSZ = 33;
86pub const DT_SYMTAB_SHNDX = 34;86pub const DT_SYMTAB_SHNDX = 34;
87pub const DT_NUM = 35;87pub const DT_RELRSZ = 35;
88pub const DT_RELR = 36;
89pub const DT_RELRENT = 37;
90pub const DT_NUM = 38;
88pub const DT_LOOS = 0x6000000d;91pub const DT_LOOS = 0x6000000d;
89pub const DT_HIOS = 0x6ffff000;92pub const DT_HIOS = 0x6ffff000;
90pub const DT_LOPROC = 0x70000000;93pub const DT_LOPROC = 0x70000000;