diff options
author | Roland McGrath <roland@gnu.org> | 1995-06-05 03:04:45 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-06-05 03:04:45 +0000 |
commit | ded291197c7da40793b072cd5487434b252376d7 (patch) | |
tree | 729a00f9f99d714757cb5ae295cf1f2b289fa746 /elf/dl-reloc.c | |
parent | a1a9d215963c548aef245cacd8efa944de69503b (diff) | |
download | glibc-ded291197c7da40793b072cd5487434b252376d7.zip glibc-ded291197c7da40793b072cd5487434b252376d7.tar.gz glibc-ded291197c7da40793b072cd5487434b252376d7.tar.bz2 |
Sun Jun 4 22:14:11 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* hurd/Makefile (sig): Added thread-self.
* hurd/hurd.h: Declare hurd_thread_self.
* hurd/thread-self.c: New file.
Thu Jun 1 12:17:52 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* elf/rtld.c: Initialize RTLD_MAP.l_type.
* elf/dl-reloc.c (_dl_relocate_object): Clear LAZY if relocating
the dynamic linker itself.
Diffstat (limited to 'elf/dl-reloc.c')
-rw-r--r-- | elf/dl-reloc.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/elf/dl-reloc.c b/elf/dl-reloc.c index ebc31d0..a3590ff 100644 --- a/elf/dl-reloc.c +++ b/elf/dl-reloc.c @@ -76,6 +76,14 @@ _dl_relocate_object (struct link_map *l, int lazy) else scope = _dl_loaded; + if (l->l_type == lt_interpreter) + /* We cannot be lazy when relocating the dynamic linker itself. It + was previously relocated eagerly (allowing us to be running now), + and needs always to be fully relocated so it can run without the + aid of run-time fixups (because it's the one to do them), so we + must always re-relocate its PLT eagerly. */ + lazy = 0; + ELF_DYNAMIC_RELOCATE (l, lazy, resolve); /* Restore list frobnication done above for DT_SYMBOLIC. */ |