mirror of git://sourceware.org/git/glibc.git
* Makerules (shlib.lds): If have-hash-style, put .hash section
at the end of the RO segment. 2006-09-04 Ulrich Drepper <drepper@redhat.com> * elf/do-lookup.h (do_lookup_x): Initialize symidx in case the new style hash table format is used. 2006-09-04 Jakub Jelinek <jakub@redhat.com>
This commit is contained in:
parent
03eeff8389
commit
71213dc258
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2006-09-04 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* Makerules (shlib.lds): If have-hash-style, put .hash section
|
||||||
|
at the end of the RO segment.
|
||||||
|
|
||||||
|
2006-09-04 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* elf/do-lookup.h (do_lookup_x): Initialize symidx in case the new
|
||||||
|
style hash table format is used.
|
||||||
|
|
||||||
2006-09-04 Jakub Jelinek <jakub@redhat.com>
|
2006-09-04 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
* resolv/res_mkquery.c (res_nmkquery): Set hp->id to statp->id after
|
* resolv/res_mkquery.c (res_nmkquery): Set hp->id to statp->id after
|
||||||
|
|
|
@ -487,7 +487,13 @@ $(common-objpfx)shlib.lds: $(common-objpfx)config.make $(..)Makerules
|
||||||
-Wl,--verbose 2>&1 | \
|
-Wl,--verbose 2>&1 | \
|
||||||
sed > $@T \
|
sed > $@T \
|
||||||
-e '/^=========/,/^=========/!d;/^=========/d' \
|
-e '/^=========/,/^=========/!d;/^=========/d' \
|
||||||
-e 's/^.*\.hash[ ]*:.*$$/ .note.ABI-tag : { *(.note.ABI-tag) } &/' \
|
$(if $(filter yes,$(have-hash-style)), \
|
||||||
|
-e 's/^.*\.gnu\.hash[ ]*:.*$$/ .note.ABI-tag : { *(.note.ABI-tag) } &/' \
|
||||||
|
-e '/^[ ]*\.hash[ ]*:.*$$/{h;d;}' \
|
||||||
|
-e '/DATA_SEGMENT_ALIGN/{H;g}' \
|
||||||
|
, \
|
||||||
|
-e 's/^.*\.hash[ ]*:.*$$/ .note.ABI-tag : { *(.note.ABI-tag) } &/' \
|
||||||
|
) \
|
||||||
-e 's/^.*\*(\.dynbss).*$$/& \
|
-e 's/^.*\*(\.dynbss).*$$/& \
|
||||||
PROVIDE(__start___libc_freeres_ptrs = .); \
|
PROVIDE(__start___libc_freeres_ptrs = .); \
|
||||||
*(__libc_freeres_ptrs) \
|
*(__libc_freeres_ptrs) \
|
||||||
|
|
|
@ -195,6 +195,8 @@ do_lookup_x (const char *undef_name, uint_fast32_t new_hash,
|
||||||
while ((*hasharr++ & 1u) == 0);
|
while ((*hasharr++ & 1u) == 0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/* No symbol found. */
|
||||||
|
symidx = SHN_UNDEF;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue