diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-01-07 02:00:21 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-01-07 02:00:21 +0000 |
commit | e4a5f77de683578d85fe7621ebdaee76dd3df89c (patch) | |
tree | 9574d82850d01235549c30c0c68473371a741ef7 /sysdeps/powerpc/elf | |
parent | bf798a9534d3d0a374f456dcf2a1b93f15b2849c (diff) | |
download | glibc-e4a5f77de683578d85fe7621ebdaee76dd3df89c.tar glibc-e4a5f77de683578d85fe7621ebdaee76dd3df89c.tar.gz glibc-e4a5f77de683578d85fe7621ebdaee76dd3df89c.tar.bz2 glibc-e4a5f77de683578d85fe7621ebdaee76dd3df89c.zip |
Update.
2001-01-05 H.J. Lu <hjl@gnu.org>
* elf/dl-support.c (non_dynamic_init): Move the auxiliary
vector checking to ...
(_dl_aux_init): Here. New function. Defined only if
HAVE_AUX_VECTOR is defined.
* sysdeps/generic/libc-start.c (__libc_start_main): Call
_dl_aux_init for static binaries if HAVE_AUX_VECTOR is defined.
* sysdeps/powerpc/elf/libc-start.c (__libc_start_main): Call
_dl_aux_init.
* sysdeps/unix/sysv/linux/ldsodefs.h (DL_FIND_AUXV): Removed.
(HAVE_AUX_VECTOR): Defined.
(_dl_aux_init): Declared.
Diffstat (limited to 'sysdeps/powerpc/elf')
-rw-r--r-- | sysdeps/powerpc/elf/libc-start.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/powerpc/elf/libc-start.c b/sysdeps/powerpc/elf/libc-start.c index 6a80bc7ee4..a05bda2219 100644 --- a/sysdeps/powerpc/elf/libc-start.c +++ b/sysdeps/powerpc/elf/libc-start.c @@ -76,6 +76,7 @@ BP_SYM (__libc_start_main) (int argc, char *__unbounded *__unbounded ubp_av, while (*(char *__unbounded *__unbounded) auxvec != NULL) ++auxvec; ++auxvec; + _dl_aux_init ((ElfW(auxv_t) *) auxvec); rtld_fini = NULL; } |