diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-07-24 22:17:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-07-24 22:17:17 +0000 |
commit | e28bacf5785e4c1b3f7c6fc219163dbec9b8addb (patch) | |
tree | 1a599f39a680d70f9a13ffbaba4897ac4175d668 /elf/Makefile | |
parent | fcf70d4114db9ff7923f5dfeb3fea6e2d623e5c2 (diff) | |
download | glibc-e28bacf5785e4c1b3f7c6fc219163dbec9b8addb.tar.gz glibc-e28bacf5785e4c1b3f7c6fc219163dbec9b8addb.tar.xz glibc-e28bacf5785e4c1b3f7c6fc219163dbec9b8addb.zip |
Update.
* elf/Makefile (dl-routines): Add preinit. * elf/Versions [ld.so] (GLIBC_2.2): Export _dl_preinit_next. * elf/link.h (struct link_map): Add new field l_preinitcount. * elf/dl-preinit.c: New file. * elf/dynamic-link.h: Initialize l_preinitcount. * sysdeps/i386/dl-machine.h (RTLD_START): Call pre-init functions.
Diffstat (limited to 'elf/Makefile')
-rw-r--r-- | elf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/Makefile b/elf/Makefile index 225b56fb69..5cecc2b3ac 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -28,7 +28,7 @@ routines = $(dl-routines) dl-open dl-close dl-symbol dl-support \ # profiled libraries. dl-routines = $(addprefix dl-,load cache lookup object reloc deps \ runtime error init fini debug misc \ - version profile) + version profile preinit) # But they are absent from the shared libc, because that code is in ld.so. elide-routines.os = $(dl-routines) dl-support enbl-secure |