diff options
author | Florian Weimer <fweimer@redhat.com> | 2024-06-18 10:56:34 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2024-06-18 10:56:34 +0200 |
commit | f6ea5d1291cf3f264514d03872ebae84e0293b69 (patch) | |
tree | 5d531fd26265915a01e2d978a12dbab5d9dd33c3 | |
parent | 176671f6042912200ea9733bb6cc8212e06bc85e (diff) | |
download | glibc-f6ea5d1291cf3f264514d03872ebae84e0293b69.zip glibc-f6ea5d1291cf3f264514d03872ebae84e0293b69.tar.gz glibc-f6ea5d1291cf3f264514d03872ebae84e0293b69.tar.bz2 |
Linux: Include <dl-symbol-redir-ifunc.h> in dl-sysdep.c
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.
-rw-r--r-- | sysdeps/unix/sysv/linux/dl-sysdep.c | 1 |
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> |