summaryrefslogtreecommitdiff
path: root/libc/elf/dl-support.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/elf/dl-support.c')
-rw-r--r--libc/elf/dl-support.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/elf/dl-support.c b/libc/elf/dl-support.c
index 7f88a2cf7..dff9aa074 100644
--- a/libc/elf/dl-support.c
+++ b/libc/elf/dl-support.c
@@ -128,6 +128,7 @@ int _dl_debug_fd = STDERR_FILENO;
int _dl_correct_cache_id = _DL_CACHE_DEFAULT_ID;
+ElfW(auxv_t) *_dl_auxv;
ElfW(Phdr) *_dl_phdr;
size_t _dl_phnum;
uint64_t _dl_hwcap __attribute__ ((nocommon));
@@ -190,6 +191,7 @@ _dl_aux_init (ElfW(auxv_t) *av)
uid_t uid = 0;
gid_t gid = 0;
+ _dl_auxv = av;
for (; av->a_type != AT_NULL; ++av)
switch (av->a_type)
{