diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-03-15 05:20:35 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-03-15 05:20:35 +0000 |
commit | 9360906d42dd15e24f27a35b77f16df516f3c05d (patch) | |
tree | 732ba9c35fb5b094742e8423a12670a902d58081 /elf/Makefile | |
parent | 5c82e15e8646cd7d229bcd8287d01875e12df0b3 (diff) | |
download | glibc-9360906d42dd15e24f27a35b77f16df516f3c05d.zip glibc-9360906d42dd15e24f27a35b77f16df516f3c05d.tar.gz glibc-9360906d42dd15e24f27a35b77f16df516f3c05d.tar.bz2 |
Update.
* elf/rtld.c: Declare _environ as hidden.
* sysdeps/generic/dl-environ.c: Likewise.
* sysdeps/generic/dl-sysdep.c: Likewise.
* sysdeps/generic/ldsodefs.h: Declare _dl_debug_state_internal and
_dl_mcount_internal as hidden.
* elf/Makefile (rtld-routines): Add dl-sbrk and dl-brk.
* sysdeps/generic/dl-brk.c: New file.
* sysdeps/generic/dl-sbrk.c: New file.
* sysdeps/unix/sysv/linux/i386/dl-brk.c: New file.
* sysdeps/unix/sysv/linux/i386/dl-sbrk.c: New file.
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 dd4c787..43e6222 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -38,7 +38,7 @@ elide-routines.os = $(all-dl-routines) dl-support enbl-secure \ # ld.so uses those routines, plus some special stuff for being the program # interpreter and operating independent of libc. rtld-routines := rtld $(dl-routines) dl-sysdep dl-environ dl-minimal \ - dl-xstat64 dl-fxstat64 + dl-xstat64 dl-fxstat64 dl-sbrk dl-brk all-rtld-routines = $(rtld-routines) $(sysdep-rtld-routines) distribute := $(rtld-routines:=.c) dynamic-link.h do-rel.h dl-machine.h \ |