aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2024-06-18 10:56:34 +0200
committerFlorian Weimer <fweimer@redhat.com>2024-06-21 12:13:06 +0200
commit7f9f25f255ee2c00178779fbce502f4b94b848b9 (patch)
tree9040ea48381cec371de20287fd60a5c52c6759d3
parent198632a05f6c7b9ab67d3331d8caace9ceabb685 (diff)
downloadglibc-release/2.39/master.zip
glibc-release/2.39/master.tar.gz
glibc-release/2.39/master.tar.bz2
Linux: Include <dl-symbol-redir-ifunc.h> in dl-sysdep.crelease/2.39/master
The _dl_sysdep_parse_arguments function contains initalization of a large on-stack variable: dl_parse_auxv_t auxv_values = { 0, }; This uses a non-inline version of memset on powerpc64le-linux-gnu, so it must use the baseline memset. (cherry picked from commit f6ea5d1291cf3f264514d03872ebae84e0293b69)
-rw-r--r--sysdeps/unix/sysv/linux/dl-sysdep.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/dl-sysdep.c b/sysdeps/unix/sysv/linux/dl-sysdep.c
index e1b14e9..a8ec2d7 100644
--- a/sysdeps/unix/sysv/linux/dl-sysdep.c
+++ b/sysdeps/unix/sysv/linux/dl-sysdep.c
@@ -40,6 +40,7 @@
#include <sys/utsname.h>
#include <tls.h>
#include <unistd.h>
+#include <dl-symbol-redir-ifunc.h>
#include <dl-machine.h>
#include <dl-hwcap-check.h>