diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-09-05 02:02:55 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-09-05 02:02:55 +0000 |
commit | 71213dc2589554dc8f8061e9b04e80c55d098b6a (patch) | |
tree | 9e513edb4f70a4b9f59fc5daee81a85068bff27c /Makerules | |
parent | 03eeff83892d66bd06f85eab3172ab4679273f6e (diff) | |
download | glibc-71213dc2589554dc8f8061e9b04e80c55d098b6a.tar glibc-71213dc2589554dc8f8061e9b04e80c55d098b6a.tar.gz glibc-71213dc2589554dc8f8061e9b04e80c55d098b6a.tar.bz2 glibc-71213dc2589554dc8f8061e9b04e80c55d098b6a.zip |
* Makerules (shlib.lds): If have-hash-style, put .hash sectioncvs/fedora-glibc-20060905T0633
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>
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -487,7 +487,13 @@ $(common-objpfx)shlib.lds: $(common-objpfx)config.make $(..)Makerules -Wl,--verbose 2>&1 | \ sed > $@T \ -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).*$$/& \ PROVIDE(__start___libc_freeres_ptrs = .); \ *(__libc_freeres_ptrs) \ |