aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2024-07-25 09:05:36 +0200
committerAlex Rønne Petersen <alex@alexrp.com>2024-07-25 18:55:08 +0200
commitc009264f5b298868ecc2498da208b85e3cb5b568 (patch)
treef9902db7189ddffc4d000e7fb48009f478ee550f /lib
parentf4f5b2bc41e09ed68caf3c839433e44bd9b33249 (diff)
downloadzig-c009264f5b298868ecc2498da208b85e3cb5b568.tar.gz
zig-c009264f5b298868ecc2498da208b85e3cb5b568.zip
std.elf: Add some newer dynamic tag types.
Diffstat (limited to 'lib')
-rw-r--r--lib/std/elf.zig5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/std/elf.zig b/lib/std/elf.zig
index f2206502cd..741dc2cede 100644
--- a/lib/std/elf.zig
+++ b/lib/std/elf.zig
@@ -84,7 +84,10 @@ pub const DT_ENCODING = 32;
pub const DT_PREINIT_ARRAY = 32;
pub const DT_PREINIT_ARRAYSZ = 33;
pub const DT_SYMTAB_SHNDX = 34;
-pub const DT_NUM = 35;
+pub const DT_RELRSZ = 35;
+pub const DT_RELR = 36;
+pub const DT_RELRENT = 37;
+pub const DT_NUM = 38;
pub const DT_LOOS = 0x6000000d;
pub const DT_HIOS = 0x6ffff000;
pub const DT_LOPROC = 0x70000000;